We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c4f538 commit 527d7b1Copy full SHA for 527d7b1
src/dqliteclient/pool.py
@@ -73,6 +73,12 @@ def __init__(
73
cache, etc.) across databases or tenants.
74
node_store: Externally-owned NodeStore used to build a new
75
ClusterClient. Mutually exclusive with ``cluster``.
76
+ max_total_rows: Cumulative row cap across continuation
77
+ frames for a single query. Forwarded to every
78
+ :class:`DqliteConnection` the pool hands out, so every
79
+ connection inherits the same governor. ``None`` disables
80
+ the cap entirely (not recommended in production —
81
+ bounds memory against slow-drip attacks).
82
"""
83
if min_size < 0:
84
raise ValueError(f"min_size must be non-negative, got {min_size}")
0 commit comments