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 слични објави

Пребарај: #temasek

当前筛选 #temasek清除筛选
Venture Village Wall 🦄

@venturevillagewall · Post #3952 · 22.01.2025 г., 16:00

Fraud Claims Hit Indonesian Unicorn EFishery, an Indonesian fish feeding startup, faces serious allegations of financial misconduct after raising $200 million backed by major investors like Temasek and Softbank. An internal investigation revealed inflated profits ($16M claimed vs. $35.4M actual loss) and exaggerated revenue ($752M claimed vs. $157M actual). Both founders have been removed from their positions following these revelations. For more details, read the article on Bloomberg. #Crypto#Startups#Investing#EFishery#Fraud#Finance#Bloomberg#Investors#Indonesia#Temasek#Softbank#MarketWatch

Venture Village Wall 🦄

@venturevillagewall · Post #4252 · 26.02.2025 г., 16:00

Indonesian Unicorn eFishery Faces Crisis eFishery, Indonesia's smart fish feeder unicorn, faces severe troubles after a board investigation revealed massive misrepresentation of business metrics. Initially claiming to have sold 400,000 units, true sales were only 6,300 with severe financial losses from 2018 to 2024. Recent data indicates $50 million left in accounts and substantial layoffs, shrinking from 2,600 to 200 employees. Investors like Temasek and Softbank now face losses, expecting only a fraction returned per dollar invested. Concerns arise regarding due diligence practices during funding rounds when financial issues were likely evident. Read more from Bloomberg here. #eFishery#Indonesia#Startup#Unicorn#Softbank#Temasek#Fintech#Investment#Business#Crisis#Economy#Funding#HealthTech#AgriTech#TechNews#FinancialFraud#DueDiligence#InvestorLoss#MarketTrends#Surveillance#TechIndustry