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

Пребарај: #speeddemon

当前筛选 #speeddemon清除筛选
Auto Life

@revheadcrypto · Post #464 · 08.09.2024 г., 16:39

🌟 Exciting News for Supercar Enthusiasts! 🚗💨 The British have officially kicked off production of the stunning Ginetta Akula! 🦈✨ First unveiled in 2019, this masterpiece is limited to just 20 units, starting at £275,000. 💰 Featuring a classic design, the Akula boasts a powerful 6.4L V8 engine with 600 hp, paired with a manual transmission and rear-wheel drive. 🔥 Despite its robust engine, it weighs only 1.2 tons, accelerating from 0 to 100 km/h in just 2.9 seconds! ⚡️🏁 With a top speed of 290 km/h, this beauty is ready to roar! Are you ready to experience the thrill? 😍 #GinettaAkula#Supercar#LimitedEdition#V8Power#CarEnthusiast#LuxuryCars#SpeedDemon#Auto

Auto Life

@revheadcrypto · Post #143 · 21.07.2024 г., 13:35

🚀 Introducing the ultimate beast on wheels - Xiaomi's SU7 Ultra! With a whopping 1548 horsepower from its three electric motors, this sedan accelerates from 0 to 100 km/h in just 1.97 seconds and hits 200 km/h in 5.96 seconds. It boasts a top speed exceeding 350 km/h! 🏎️ #Xiaomi#SU7Ultra#SpeedDemon#ElectricPower#NurburgringRecordBreaker🏁🔥

Auto Life

@revheadcrypto · Post #642 · 17.11.2024 г., 09:21

🚀Bugatti Mistral Sets New Speed Record for Roadsters!🚀 The stunning hypercar with an open top has achieved an incredible speed of 453.91 km/h on the ATP track in Papenburg, Germany! 🇩🇪🏁 Behind the wheel was none other than Andy Wallace, Bugatti's official driver and winner of the 24 Hours of Le Mans! 🏆 This remarkable feat surpasses Bugatti's previous record set in 2013 with the Veyron Grand Sport Vitesse, which reached 408.8 km/h. The title was briefly held by the Hennessey Venom GT Spyder at 427 km/h. The Mistral is powered by an astonishing 8.0-liter W16 engine with four turbochargers, delivering a mind-blowing 1600 hp! 🔥💨 #BugattiMistral#SpeedRecord#Hypercar#W16#AndyWallace#CarEnthusiast#LuxuryCars#AutomotiveExcellence#SpeedDemon#RecordBreaker#Auto