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

Резултати

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

Пребарај: #idp

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

@addisstandardeng · Post #21894 · 31.03.2026 г., 11:35

#Op_ed: Lives on Hold: Humanitarian crisis deepens amid stalled peace in #Tigray More than three years after the Pretoria Peace Agreement, Tigray reflects a fragile peace shaped by stalled implementation and a deepening humanitarian crisis, writes Gebremichael Negash. He notes, “The human cost of delayed implementation is no longer abstract; it is being counted in deaths.” Although active conflict has largely subsided, well over five million people still need emergency assistance, with nearly 891,000 displaced across 146 #IDP camps. At the same time, restrictions on cash, fuel, and aid continue to worsen conditions. The path forward, Gebremichael argues, is clear: restore services, ensure humanitarian access, and enable safe returns. “What remains is a choice: act now… or allow delay to deepen a crisis already measured in lives lost.” https://addisstandard.com/?p=56200

Addis Standard

@addisstandardeng · Post #21979 · 08.04.2026 г., 11:13

#Op_ed: Peace on Paper, Suffering in Practice: #Tigray’s hidden post-war emergency While active fighting in Tigray has ceased since the 2022 #Pretoria peace agreement, the author argues that “a structural and systemic war—one waged not with bullets but through deliberate under-resourcing and institutional paralysis—continues to claim lives.” Civil servants remain unpaid, schools are closed or converted into #IDP camps and military bases, and the healthcare system is collapsing, leaving pregnant women and malnourished children vulnerable. Cash shortages and fuel restrictions fuel black markets and inflation, while farmers cannot transport crops. The author emphasizes that “true peace cannot be declared” until salaries, education, and healthcare are restored. https://addisstandard.com/?p=56397

❗️IELTS на бумаге отменён в Узбекистане С 11 июля 2025 года бумажный формат IELTS полностью прекращается. Причина — возможные утечки заданий и рост мошенничества. Теперь экзамен можно сдать только на компьютере. Что делать зарегистрированным участникам, как перенести или вернуть оплату — в нашей статье. https://yep.uz/ru/2025/07/ielts-uzbekistan-otmena-bumazhnogo-formata/ #IELTS#Узбекистан#АнглийскийЯзык#IDP#BritishCouncil#IELTSнаКомпьютере#Образование#IELTS2025#экзамены