@borkena · Post #5673 · 01.01.2026 г., 15:18
Getachew Reda Interview Part II. Watch. https://borkena.com/2026/01/01/ethiopia-getachew-reda-interview-part-ii/#Ethiopia#TPLF#Tigray#Getachew#Eritrea
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
Пребарај: #getachew
@borkena · Post #5673 · 01.01.2026 г., 15:18
Getachew Reda Interview Part II. Watch. https://borkena.com/2026/01/01/ethiopia-getachew-reda-interview-part-ii/#Ethiopia#TPLF#Tigray#Getachew#Eritrea
@borkena · Post #5406 · 30.11.2025 г., 14:10
Mehdi and Getachew on Al Jazeera: Abiy as loser while TPLF Emerges as the Clear Winner. Read more. https://borkena.com/2025/11/29/ethiopia-mehdi-and-getachew-on-al-jazeera-abiy-as-loser-while-tplf-emerges-as-the-clear-winner/#Ethiopia#Mehdi#Getachew#politics#EthiopianPolitics
@addisstandardeng · Post #21084 · 15.01.2026 г., 14:58
News: #US Ambassador to #Ethiopia visits #Humera accompanied by Getachew Reda amid ongoing challenges in Western Tigray US Ambassador to Ethiopia Ervin Massinga on Thursday morning arrived in Humera town, #Western_Tigray, accompanied by #Getachew Reda, Advisor on Horn of Africa Affairs to Prime Minister Abiy Ahmed. According to Amhara regional media, the Ambassador was received by Ashete Demlew, an administrator installed by the #Amhara regional government. The visit is reported to include meetings with residents of Humera and inspections of health facilities in the town. Humera, located in Western Tigray, remains at the center of unresolved political, security, & humanitarian challenges in the aftermath of the two-year war in Tigray. In a message shared by the US Embassy in Addis Abeba on Thursday, Ambassador Massinga said he had witnessed firsthand the hardships facing residents of Humera. “The needs are urgent — damaged infrastructure, limited medical... Read more: https://addisstandard.com/?p=54578