Недавно делал быстрый прототип асинхронного приложения в котором требовалось вызывать много синхронного кода. Да, я знаю, что это не лучший дизайн, но нужно было быстрое решение на один процесс и без очередей. Поэтому я выполнял код в потоках.
Выглядело это примерно так:
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
🌎 Cleaner wrasse fish set up "cleaning stations" on coral reefs where larger fish line up to have parasites removed from their skin and gills. This mutual cooperation benefits both—the wrasse get food and the client fish stay healthy. Some cleaner wrasse perform hundreds of cleaning sessions each day. ✨
#symbiosis⚡#reefs⚡#ocean
👉subscribe Interesting Planet
🌍 Some coral reefs can recover from bleaching by hosting heat-resistant algae. These microscopic partners boost their survival, helping reefs withstand warmer ocean temperatures. ✨
#reefs⚡#biodiversity⚡#ocean⚡#geography⚡#nature⚡#earth
👉subscribe Amazing Geography🌍
🌎 Coral reefs are built on the partnership between coral polyps and microscopic algae called zooxanthellae. The algae live inside the coral and provide energy using photosynthesis, while corals give them shelter and nutrients. This symbiosis is vital—corals eject algae during stress, causing coral bleaching. ✨
#animals⚡#cooperation⚡#reefs
👉subscribe Interesting Planet
👉more Channels
🌍 Some mangrove forests grow right next to coral reefs, creating a double habitat where young fish shelter in tangled roots before moving to open reef waters—a rare team-up found in only a few tropical regions. ✨
#mangroves⚡#reefs⚡#biodiversity⚡#geography⚡#nature⚡#earth
👉subscribe Amazing Geography
👉more Channels
🌍 Coral reefs cover less than 1% of the ocean floor but support about 25% of all marine species. These vibrant ecosystems act as nurseries for countless fish and sea creatures. ✨
#coral⚡#reefs⚡#ocean⚡#biodiversity⚡#geography⚡#nature⚡#earth
👉subscribe Amazing Geography🌍
🌎 Coral reefs provide another remarkable natural record of Earth’s past. As corals grow, they form bands in their skeletons that reflect seasonal changes in water temperature, chemistry, and even extreme weather events. Some coral cores reveal ocean conditions dating back several centuries. ✨
#coral⚡#reefs⚡#paleoclimate⚡#oceanography
👉subscribe Interesting Planet
👉more Channels