Недавно делал быстрый прототип асинхронного приложения в котором требовалось вызывать много синхронного кода. Да, я знаю, что это не лучший дизайн, но нужно было быстрое решение на один процесс и без очередей. Поэтому я выполнял код в потоках.
Выглядело это примерно так:
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
Indian floods leave dozens dead
At least 22 people were killed after heavy rains lashed the south Indian state of Kerala over the weekend, officials said.
#News#Reuters#India#Floods
Subscribe: http://smarturl.it/reuterssubscribe
Reuters brings you the latest business, finance and breaking news video from around the globe. Our reputation for accuracy and impartiality is unparalleled.
Get the latest news on: http://reuters.com/
Follow Reuters on Facebook: https://www.facebook.com/Reuters
Follow Reuters on Twitter: https://twitter.com/Reuters
Follow Reuters on Instagram: https://www.instagram.com/reuters/?hl=en
➖@reutersworldchannel➖
Good idea: trees instead of barriers
https://www.bbc.com/news/articles/cqxdxg7j3qgo
After that devastating day, a group of villagers came together with an idea - they would plant trees, thousands of them, to try to reduce the risk of flooding in the future.
Trees and woods play a "vital" role in reducing flooding by slowing down the flow of rainwater, absorbing rainwater and reducing erosion, according to the Woodland Trust.
#trees , #floods, #wales
https://ieji.de/@MinistryOfGoodIdeas/116283802113284702
Flood waters didn't stop this Thai BBQ restaurant
Instead of closing for floods, Titiporn Jutimanon's riverside eatery is making waves in Thailand, staying open for customers who are reveling the shin-deep dining experience.
#Thailand#floods#News#Reuters#TitipornJutimanon
Subscribe: http://smarturl.it/reuterssubscribe
Reuters brings you the latest business, finance and breaking news video from around the globe. Our reputation for accuracy and impartiality is unparalleled.
Get the latest news on: http://reuters.com/
Follow Reuters on Facebook: https://www.facebook.com/Reuters
Follow Reuters on Twitter: https://twitter.com/Reuters
Follow Reuters on Instagram: https://www.instagram.com/reuters/?hl=en
➖@reutersworldchannel➖
Emergency Hepatitis A Vaccination Launched in Flooded Areas of Dagestan
In response to increased infection risks following recent floods, Dagestan has begun urgent vaccination against Hepatitis A in affected regions. Authorities emphasize strict hygiene and urge residents to seek medical help at the first signs of illness. The regional Health Ministry stated, "Our main goal is to prevent disease spread and protect public health."
#Dagestan#HepatitisA#Vaccination#Floods#Healthcare
The main news of Russia and the world ishere.
#China#Flooding#Fujian#HeavyRain#Floods#climate#destruction#anomaly#climatecrisis
🇨🇳Наводнение в провинции Фуцзянь, Китай🌧️
🌊 23 апреля 2026 года сильные дожди продолжались в Фуцзяне и соседних регионах, вызывая локальные наводнения на улицах и в низменных районах. Видео показывают затопленные дороги и дренажные системы, работающие на полную мощность.
📅 По данным Министерства водных ресурсов Китая и государственного телеканала CCTV, наводнения ожидаются в апреле-мае 2026 года в Фуцзяне, Чжэцзяне и дельте реки Чжуцзян, причем уровень воды может превысить предупредительные пороги.
ℹ️ В настоящее время нет официальных сообщений о крупных жертвах или широкомасштабных разрушениях в Фуцзяне в последние дни, но местные метеорологические службы продолжают следить за ситуацией.
📎 Источник: Reuters
October 18, 2021: U.S missionaries, China economy, Robert Durst, India floods, California oil spill
October 18, 2021: U.S missionaries, China economy, Robert Durst, India floods, California oil spill
1. A U.S. Christian aid organization said a group of its missionaries had been kidnapped in Haiti, a further sign the Caribbean nation's gangs are growing increasingly brazen amid political and economic crises.
2. China’s economy hit its slowest pace of growth in a year in the third quarter, hurt by power shortages and wobbles in the property sector, highlighting the challenge facing policymakers as they seek to prop up a faltering recovery while reining in the real estate sector.
3. Leaders in the south Indian state of Kerala opened near-overflowing dams on Monday, after at least 22 people died when heavy rains lashed the state over the weekend.
4. Real estate heir Robert Durst, who was sentenced this week to life in prison for murdering a friend in 2000, has COVID and is on a ventilator, his lawyer told the Los Angeles Times.
5. The U.S. Coast Guard boarded a container ship in the Port of Long Beach that dragged its anchor close to a subsea pipeline found to be the source of an oil spill off Orange County, California, it said in a press release.
#Haiti
#US
#Missionaries
#China
#Economy
#RobertDurst
#India
#floods
#Kerala
#California
#OilSpill
#Caribbean
#News
#Reuters
#MorningNews
#Headlines
Subscribe: http://smarturl.it/reuterssubscribe
Reuters brings you the latest business, finance and breaking news video from around the globe. Our reputation for accuracy and impartiality is unparalleled.
Get the latest news on: http://reuters.com/
Follow Reuters on Facebook: https://www.facebook.com/Reuters
Follow Reuters on Twitter: https://twitter.com/Reuters
Follow Reuters on Instagram: https://www.instagram.com/reuters/?hl=en
➖@reutersworldchannel➖