Недавно делал быстрый прототип асинхронного приложения в котором требовалось вызывать много синхронного кода. Да, я знаю, что это не лучший дизайн, но нужно было быстрое решение на один процесс и без очередей. Поэтому я выполнял код в потоках.
Выглядело это примерно так:
from fastapi.concurrency import run_in_threadpool
async def execute(data: DataRequest) -> DataResponse:
try:
result = await run_in_threadpool(sync_function, data)
return DataResponse(data=result)
except Exception as e:
return DataResponse(
error=str(e),
success=False,
)
В общем работает нормально. Для всех вызовов под капотом используется общий тредпул, всё работает предсказуемо.
Но потребовалось изменить количество запускаемых в пуле потоков (по умолчанию создается 40 воркеров).
Так как дело происходит с FastAPI, делается это через lifespan используя настройки anyio:
import anyio
@asynccontextmanager
async def lifespan(app: FastAPI):
limiter = anyio.to_thread.current_default_thread_limiter()
limiter.total_tokens = 100
yield
# если вдруг нужно вернуть обратно
limiter.total_tokens = 40
Зачем менять количество воркеров?
- уменьшить, если оперативки мало (один тред занимает ~8мб)
- увеличить чтобы выдержать нагрузку
Если есть предложения получше при тех же вводных - предлагайте😉
#async
Media Molecule 宣布将于9月1日起停止对《Dreams》的在线支持(live support)。玩家依然可以继续创作,分享,游玩游戏内容,但 Media Molecule 将不会再为游戏提供内容更新或举办相关活动。更多细则请查阅原文
https://docs.indreams.me/en-US/whats-happening/news/dreams-support-update
#Dreams
Rereading my Uncommon Dream Log ✨
It's worth writing & it's worth taking time to look up & interpret the meaning.
Been writing only the uncommon ones.
One each year since 2018.
✨ 31st Dec 2018 – Phoenix
✨ 2nd Sep 2019 – Four Lions
✨ 29 Sep 2020 – A pair of baby tortoises & a pair of goldfishes with arowana's colour
Anyone here have uncommon dream log? 🙋♀
#thoughts#justme#dreams
@qw_qwbot@quietworld🍃
Stopped by my friend's place today✨
She has a whole studio! 🎮
Streaming chair, cool lights, microphone — it almost made me want to try too. What do you think, would I make a good streamer? Or better leave it to the pros? 😄
#LunaEverly#Streamer#Friend#Idea#Dreams
🔄🇺🇿 #15 — 4 Kun ichida 3 ish taklifi: Hayotimdagi yangi bosqich
Oradan 4 kun o‘tgach, men topshirgan Birlashgan Arab Amirliklaridagi kompaniyalardan menga qo‘ng‘iroq bo’ldi. Ular intervyu o‘tkazishdi. Tez orada 3 ta ish taklifini oldim. Qanday ish deb qiziqayotgan bo‘lsangiz, offitsiant (waiter)— bu ishga kirish va ketish uchun eng oson yo‘llardan biri.
Bu jarayon menga sabr, qat’iyat va Allohga tavakkul qilishning ahamiyatini yana bir bor eslatdi. Harakat qilmasdan, faqat orzu qilish bilan hech narsaga erishib bo‘lmaydi. Har bir qadam, har bir qaror — bu yangi imkoniyatlarga yo‘l ochadi.
🔄🇬🇧 #15 — 3 Job Offers in 4 Days: A New Chapter Begins
Just three days later, I received a call from the companies I had applied to in the United Arab Emirates. They conducted an interview, and soon after, I received three job offers. Curious about the role? It's a waiter position — one of the easiest entry points into the job market there.
This experience reminded me of the importance of patience, determination, and placing trust in Allah. Simply dreaming without taking action leads nowhere. Every step, every decision opens doors to new opportunities.
#EverythingILived#TrustInAllah#Action#Dua#Dreams#Dubai#NewChapter