Недавно делал быстрый прототип асинхронного приложения в котором требовалось вызывать много синхронного кода. Да, я знаю, что это не лучший дизайн, но нужно было быстрое решение на один процесс и без очередей. Поэтому я выполнял код в потоках.
Выглядело это примерно так:
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
🤝#Electra is not just a DEX but your advantage in the market!
Electra will soon open access to a unique trading platform with the best tools for smarter, faster and more efficient trading.
⚡️The main advantages of the future platform:
✔️Artificial intelligence for predicting market trends and automating portfolios.
✔️Freedom and security: none🙅 KYC, up to 1000x leverage and multi-chain trading.
✔️Social features: real-time communication, participation in the Electra Trading League and obtaining unique Proof-of-Trade NFTs.
✔️Access to deep liquidity with CEX-level efficiency in a decentralized environment.
✔️CEX-like performance: Using the #Lumia L2 infrastructure, #Electra delivers lightning-fast trades with tight spreads.
✔️No profit limits: no open interest limits, no funding rate limits, and no arbitrary rules.
✔️Trade 24/7 on web platform, desktop or via Telegram Mini App with professional tools and analytics.
✔️Game-based learning with Bulls'n'Bears — a fun educational game in Telegram Mini App.
🤑 While we wait for the release of the DEX platform, we continue to participate in current activities:
✔️Farm points in Electra MiniApp
✔️Play Bulls'n'Bears
✔️Complete daily tasks
🚀Dive into the world of Electra
#Electra#TON#DEX#NoKYC#Web3