Transparent temporal coalescing and inline micro-batching for Python.
Project description
concresce 💧
Transparent temporal coalescing and inline micro-batching.
Standard solutions to N+1 database or network bottlenecks require spinning up external message queues, background workers, or complex task graphs. concresce solves this dynamically. You write the function as if it processes a single item, and the runtime transparently merges concurrent calls into a single batch in the background.
uv add concresce
The Difference
| Concept | Standard Async Loop | Message Queues (Celery/Kafka) | concresce |
|---|---|---|---|
| Network Footprint | N requests for N items. | 1 request for N items. | 1 request for N items. |
| Architectural Overhead | None. | High (Requires external broker). | None (Pure inline code). |
| Return Routing | Native variables. | Complex (Webhooks / Polling). | Native variables (Futures resolve). |
Usage
You need exactly two primitives: @batch to define the barrier constraint, and collect() to suspend the execution and pool data.
By default there is zero configuration: the batch window is dynamically defined by the event loop's microtask queue, and routing is handled natively by your return types. Optional tuning is available when you need it.
import asyncio
from concresce import batch, collect
@batch
async def fetch_user_score(user_id):
# 1. Execution pauses here.
# Concurrent calls inside the current event loop tick pool their `user_id`s.
batch_ids = await collect(user_id)
# 2. Only ONE execution path (the leader) resumes from this point.
# The others remain safely suspended via Exception-driven control flow.
print(f"Making 1 network call for {len(batch_ids)} users...")
bulk_results = await db.bulk_fetch_scores(batch_ids)
# 3. The leader returns the raw bulk list or dictionary.
# The decorator natively maps and distributes the results back to the followers.
return bulk_results
async def main():
# Fire off 5 requests simultaneously
results = await asyncio.gather(
fetch_user_score(1),
fetch_user_score(2),
fetch_user_score(3),
fetch_user_score(4),
fetch_user_score(5)
)
# Returns:[100, 250, 190, 300, 120]
print(results)
asyncio.run(main())
Core Mechanics
- Event Loop Batching (default): With zero configuration,
concresceyields exactly once (await asyncio.sleep(0)) to the event loop. Under heavy load, batches are massive. Under low load, batches execute instantly. The tuning emerges purely from the traffic itself. - Native Type Routing: The leader does not need to call a special scatter function. If your database returns a
listortuple, the system unzips it by index. If it returns out-of-order or missing data, just return a dictionary ({id: result}) andconcrescehandles exact key-based routing automatically. Any other return type — or a sequence whose length does not match the number of callers — raisesBatchRoutingErrorfor every caller instead of hanging. - Fault Propagation: If the leader crashes during the heavy processing phase, the exception is intercepted and safely replicated to all suspended followers. Nobody hangs, and the stack unwinds naturally.
Optional Tuning
The default single-tick window is enough for most workloads. When you need more control, three opt-ins are available; none of them change the default behavior.
Time window & max size
By default a batch spans a single event-loop tick. Wrap calls in window(seconds) to keep pooling across ticks for a fixed time. Within a window, add max_size(n) to close the batch early once it reaches n items — max_size only has an effect alongside a window, since the default single-tick batch already closes immediately:
from concresce import batch, collect, window, max_size
@batch
async def enrich(item):
return await bulk_lookup(await collect(item))
# Pool everything that arrives within 5 ms, or as soon as 100 items queue up.
with window(0.005), max_size(100):
results = await asyncio.gather(*(enrich(i) for i in stream))
Partitioned batches
By default all concurrent calls to a decorated function share one batch. Pass key=fn to partition them so only calls whose key(*args, **kwargs) matches are pooled together — useful for keeping distinct instances, models, shards, or tenants from contaminating each other:
class Model:
@batch(key=lambda self, prompt: id(self))
async def infer(self, prompt):
return await self.backend.infer_batch(await collect(prompt))
Stats
Every decorated function exposes a cumulative stats dict (batches, items, and the largest max batch seen):
@batch
async def fetch(item):
return await bulk_fetch(await collect(item))
await asyncio.gather(fetch(1), fetch(2), fetch(3))
print(fetch.stats) # {"batches": 1, "items": 3, "max": 3}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file concresce-3.0.0.tar.gz.
File metadata
- Download URL: concresce-3.0.0.tar.gz
- Upload date:
- Size: 6.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"CachyOS Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04535f75b5214b032cdfe29acdf1bbba40ba129cdc2655b83ea27fb1609d1b4e
|
|
| MD5 |
aa7da23198b7f69c9978b72316d68d81
|
|
| BLAKE2b-256 |
0bacd845f62b43a6af03f48581fe04d47289fb8dbcf9788dea337ebc25900093
|
File details
Details for the file concresce-3.0.0-py3-none-any.whl.
File metadata
- Download URL: concresce-3.0.0-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"CachyOS Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c0e342e5298790508ac0f522c9f2265921baaa4daf0218f0fa232b66d7c1789
|
|
| MD5 |
d6bde23e4f09bde7e1fde558f3508e05
|
|
| BLAKE2b-256 |
a05394cd4085bfbe69b51ad5c83e053e959b690a11edb09acac0eb845cc7c152
|