TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #425 · 20 апр.

Недавно делал быстрый прототип асинхронного приложения в котором требовалось вызывать много синхронного кода. Да, я знаю, что это не лучший дизайн, но нужно было быстрое решение на один процесс и без очередей. Поэтому я выполнял код в потоках. Выглядело это примерно так: 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

Hashtags

Резултати

Пронајдени 1 слични објави

Пребарај: #entry

当前筛选 #entry清除筛选
Writers Cafe

@WritersCafe · Post #115 · 13.05.2018 г., 07:46

​​Mother's Day: A day to rejoice and cherish the motherhood. We must celebrate the bond mothers have towards their children, therefore we call it a surprise challenge for each one of you who love your mom! It is the day to celebrate their presence and blessings in our lives. Let's write anything like a poetry/prose/short story or whatever you want (within 10 sentences) to express the love for Mom. Note: The best three entries will be posted in @PensivePost with your names to credit. “And all my mother came into mine eyes. And gave me up to tears.” - by William Shakespeare, Henry V (1599) » please send: #entryand then your write-up to the bot using the button below » Do not forget to mention your personal identifier like (#ws for William Shakespeare if your name is William Shakespeare) » #mom for the challenge identifier » This challenge ends in next 8 hours and the results will be posted today itself at the closing of this challenge.