We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56b60ae commit 649f8c1Copy full SHA for 649f8c1
1 file changed
src/s2_sdk/_types.py
@@ -208,7 +208,11 @@ class Batching:
208
"""Maximum metered bytes per batch. Must be between 8 and 1 MiB. Default is 1 MiB."""
209
210
linger: timedelta = field(default_factory=lambda: timedelta(milliseconds=5))
211
- """Maximum time to wait for more records before flushing a partial batch. Default is 5 ms."""
+ """Maximum time to wait for more records before flushing a partial batch. Default is 5 ms.
212
+
213
+ Note:
214
+ If set to 0, batches are flushed only when ``max_records`` or ``max_bytes`` is reached.
215
+ """
216
217
218
@dataclass(slots=True)
0 commit comments