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 слични објави

Пребарај: #eap

当前筛选 #eap清除筛选
Addis Standard

@addisstandardeng · Post #21057 · 13.01.2026 г., 12:12

News: #Ethiopian Red Cross Society activated second drought early action trigger as crop losses exceed 50% in parts of #Oromia The Ethiopian Red Cross Society (#ERCS) activated the second trigger of its Drought Early Action Protocol (#EAP) for the Bega (October–December) season on 21 November 2025 with early action timeframe of three Months, citing severe crop losses, deteriorating pasture conditions, and below-average rainfall in parts of Oromia Region. Analysis of the Livelihoods, Early Assessment and Protection (#LEAP) index indicates that more than 50% crop yield reduction was recorded in October 2025 in drought-forecasted areas of Oromia, particularly in #East_Bale Zone’s Rayitu and Seweyna woredas. These areas are among the high-risk locations identified under the EAP framework, meeting the criteria for activating the second trigger. The OND season is critical for Ethiopia’s southern, eastern, and southeastern pastoralist and agro-pastoralist .... Read more: https://addisstandard.com/?p=54514