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

Резултати

Пронајдени 2 слични објави

Пребарај: #cvm

当前筛选 #cvm清除筛选
DOFH - DevOps from hell

@dofh_ru · Post #3570 · 05.02.2025 г., 17:54

Here we go again! SEV-SNP is vulnerable, again. New AMD SEV-SNP vulnerability: https://github.com/google/security-research/security/advisories/GHSA-4xq7-4mgh-gp6w Exploit: https://github.com/google/security-research/tree/master/pocs/cpus/entrysign Reports about two recent vulnerabilities in SEV-SNP memory encryption and isolation mechanism, on CPU pipeline, cache and branch prediction level: https://www.amd.com/en/resources/product-security/bulletin/amd-sb-3019.html https://www.amd.com/en/resources/product-security/bulletin/amd-sb-3010.html AMD reported that previous approaches to Spectre class attacks will work to fix new vulnerabilities: https://www.amd.com/content/dam/amd/en/documents/epyc-technical-docs/tuning-guides/software-techniques-for-managing-speculation.pdf #cVM #TEE #SEV #SNP #SEV_SNP #AMD

#HaSab

@Hasab_2016 · Post #212 · 12.12.2025 г., 09:51

CVMA Student Wins Top Prize in Human Rights Essay Competition December 10, 2025 – Addis Ababa, Ethiopia In celebration of International Human Rights Day 2025, the Center for Human Rights, in collaboration with the UN Human Rights Office (OHCHR), has announced the winners of its essay competition titled “Our Everyday Essentials: Reclaiming Human Rights in the 21st Century.” We are proud to announce that Yared Ermiyas, a student from the College of Veterinary Medicine and Agriculture at Addis Ababa University, emerged as the first-place winner. His powerful essay, “Remove the Shadow,” eloquently argued that access to education must be a fundamental necessity for every child, not a matter of luck, highlighting the deep emotional and practical connection between education and a dignified life. Yared was awarded a mobile phone prize presented by H.E. Berhanu Adello, Chief Commissioner of the Ethiopian Human Rights Commission (EHRC). Commissioner Adello also extended an offer for Yared to begin an internship attachment at the National Bureau of the Human Rights Commission, providing a valuable opportunity for practical experience in the field. The awards ceremony featured a dynamic panel discussion where Yared and the other winners presented their essays and engaged with fellow students and audience members on critical issues related to freedom of expression and the right to education. The competition, which invited undergraduate students to reflect on the core human rights that shape our daily lives, successfully inspired thoughtful dialogue and showcased the intellectual talent within our university community. Congratulations to Yared Ermiyas and all the participants for raising your voices, sharing your vision, and helping to shape the future of human rights! Via Hailu Beyene CVMA Student President @campus_Voice_2016 #OurEverydayEssentials#HumanRightsDay2025#StudentVoice#AAU#CVM#Congratulations