Недавно делал быстрый прототип асинхронного приложения в котором требовалось вызывать много синхронного кода. Да, я знаю, что это не лучший дизайн, но нужно было быстрое решение на один процесс и без очередей. Поэтому я выполнял код в потоках.
Выглядело это примерно так:
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
Symbiosis of Agents — Breathing with the Machine👞
July 2025 · Interactive Installation
A mirrored arena. Shifting fog. Silent robots.
☁️ Symbiosis of Agents is an immersive installation where the viewer’s breath alters the behavior of AI-driven machines. As you inhale, the atmosphere shifts —the system listens, reacts, and co-creates.
What to expect:
— Breath-sensitive robots
— Mirror walls + fog layers
— Responsive soundscape and light
— You are the algorithm
An artwork that dissolves the line between observer and observed🦋
#SymbiosisOfAgents#AIArt#ImmersiveArt#ArtAndTech#HumanMachine
#ЦифровойКонтекст
VRHAM! 2025: искусство, которое погружает 🌀
🌸 С 11 по 18 июня в Гамбурге проходит биеннале цифрового и иммерсивного искусства VRHAM! 2025
Это платформа, где художники исследуют реальность через технологии 🩰
— VR-инсталляции
— генеративное искусство
— проекты с использованием ИИ и робототехники
В числе участников — Sougwen Chung и Olivia McGilchrist, объединяющие перформанс, машинное обучение и новые медиа 🦋
VRHAM! показывает, как искусство может выйти за пределы экрана и превратиться в опыт, в который можно войти.
#VRHAM#ImmersiveArt#AIArt#DigitalArt#СовременноеИскусство#ArtAndTech
InvisAbility — Snow Globe Projections in Hobart📖
July 2025 · Hobart Town Hall · Tasmania
The Town Hall becomes a snow globe.
😇 As part of the InvisAbility project, this immersive installation uses light projections and interactive sound to tell stories of people with disabilities — in ways that are gentle, poetic, and public.
It’s not just art — it’s presence made visible through tech.
Created with community input and designed for everyone who’s ever felt unseen.
Public space becomes a space of care, sound, and shimmering empathy☁️
#InvisAbility#PublicArt#ImmersiveArt#Accessibility#ArtAndTech
Blooming Wonders — Digital Garden Comes Alive in Houston💐
July 2025 · ARTECHOUSE Houston
What if petals were pixels?✉️
Blooming Wonders is an immersive installation that transforms motion, light, and sound into a reactive digital garden. Created by ARTECHOUSE, this experience blurs the lines between code and nature.
Highlights:
— Light-petals that bloom to your movement
— Audio-reactive floral visuals
— Tech-poetry meets springtime wonder
🌹 The more you move, the more the garden grows.
A space where bodies and blossoms sync in digital rhythm.
#ArtAndTech#BloomingWonders#ARTECHOUSE#DigitalGarden#ImmersiveArt
Immersive Ocean — Digital Sea Comes to Life in Taipei🌊
July 2025 · Xpark Aquarium · Taiwan
What happens when marine life meets projection art?🕊
The new experience Xpark meets NAKED — Ocean of Light transforms the aquarium into a living digital seascape.
Featuring:
— 15+ laser projectors
— Interactive visuals + sound
— Real fish swimming through digital waves
⛪️ Ocean meets imagination in this poetic fusion of nature and tech.
#ImmersiveArt#OceanOfLight#Xpark#NAKEDInc#ArtAndTech
George the Poet — Immersive “Art of Expression”🦋
July 2025 · London · Frameless
What happens when fine art meets spoken word?📖
George the Poet’s new immersive experience reimagines classics like The Scream and The Great Wave — layering poetry, projection, and sound to bring new life and urgency to familiar images.
Created in collaboration with the Violence Reduction Unit, the show is designed to speak directly to young people — no elitism, no gatekeeping.
Art of Expression isn’t just an exhibition — it’s a call to feel, speak, and reframe culture through lived experience.
#ImmersiveArt#GeorgeThePoet#SpokenWord#YouthCulture#ArtAndTech