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

Пребарај: #demining

当前筛选 #demining清除筛选
American Оbserver

@american_observer · Post #5556 · 03.04.2026 г., 23:59

Ukraine’s Minefields Also Feed the Crooks Ukraine is the most mined country in the world, which makes humanitarian demining essential — and, as this case shows, dangerously easy to turn into a cash machine. Prosecutors say suspects in Kherson allegedly created fake danger by digging up soil and planting shell-like objects on already safe land, then billed the state for the theater. That is the ugliest part of war economies: when real suffering creates a budget line, somebody always tries to monetize the illusion of danger. In Kherson alone, officials say the damage may be 6.3 million hryvnias, with prosecutors checking similar cases in Mykolaiv and Chernihiv. The scale matters because the problem is real. UN agencies and humanitarian groups have warned that Ukraine remains the world’s most heavily mined country, with around 139,000 square kilometers contaminated or potentially contaminated by mines and unexploded ordnance. So this is not a story about one rotten crew only. It is a warning that a huge national necessity, under wartime pressure, creates a perfect habitat for fraud — unless oversight is brutal enough to catch it before the crooks start billing the country for their own dirt piles. #Ukraine#corruption#demining#Kherson#war 📱American Оbserver - Stay up to date on all important events 🇺🇸