Недавно делал быстрый прототип асинхронного приложения в котором требовалось вызывать много синхронного кода. Да, я знаю, что это не лучший дизайн, но нужно было быстрое решение на один процесс и без очередей. Поэтому я выполнял код в потоках.
Выглядело это примерно так:
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
🔖McHenry urges Senate to pass FIT21 crypto bill before election
The United States House’s widely positive vote on the crypto-regulating FIT21 bill should be “a wake-up call” to the Senate to quickly pass it, says Rep. Patrick McHenry 💬
#Cryptotrader
#Cryptotwitter
#Cryptoinvestment
#Cryptocurrencyexchange
USAcoin Proposal by Peter Schiff
Peter Schiff suggests that instead of building a strategic reserve in BTC, the U.S. could save money by launching a new cryptocurrency called USAcoin, which would have a capped supply of 21 million coins, utilizing updated blockchain technology for payment efficiency. He emphasizes the potential wealth this could generate and encourages HODL. 🔗Read more here🔗Join Crypto Twitter
#USAcoin#Cryptocurrency#BTC#Blockchain#PaymentSystems#Investment#WealthBuilding#HODL#Crypto#Finance#PeterSchiff#CryptoTwitter#DigitalCurrency
BTC Buying Surge Amid Drops
Despite a slight drop in Bitcoin prices, major players are buying in:
🔵 Marathon purchased BTC worth $1.53 billion.
🔵 BlackRock acquired $359 million in BTC.
🔵 Hut8 invested $100 million.
🔵 Michael Saylor likely preparing to buy another $3 billion.
🔥 States are also secretly accumulating Bitcoin.
#Bitcoin#Marathon#BlackRock#Hut8#MichaelSaylor#Crypto#Investment#Market#Trading#Assets#Finance#DigitalCurrency#Blockchain#CryptoTwitter#BTC#Bullish#Wealth#Economy#Currency
Bitcoin Mining Ban and Market Resilience
In 2021, China's ban on Bitcoin mining caused market panic, leading to a significant dip. However, this event has less relevance now. Bitcoin continues to show resilience despite fluctuations. Data from PumpFun reveals that only 0.4% of meme coin traders made over $10,000, while 60% ended with losses. Most users either broke even or earned little. For insights on meme coin trading, check this post.
#Bitcoin#Crypto#Trading#MemeCoins#MarketTrends#Mining#Investing#Blockchain#Finance#PumpFun#Statistics#MarketDip#Profit#Losses#Trader#Wealth#InvestmentStrategy#CryptoTwitter
FTX Announces Preliminary Fund Distribution Schedule
🔵 FTX reveals a preliminary payment distribution schedule for creditors.
🔵 Claims under $50k total $1.2 billion.
🔴 By January 20: Preliminary claims must be met.
🔴February 25 - March 4: Expected period for fund distribution begins.
🤔 Will this bring additional liquidity to the market?
Read more
#FTX#Crypto#Market#Liquidity#Payments#Claims#Finance#Investments#Bitcoin#News#Updates#Distribution#Schedule#CryptoTwitter#Investors#Creditors#Funds#Return#January#February#March