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 ce38210 commit 6500cbeCopy full SHA for 6500cbe
docs/sender.rst
@@ -399,12 +399,14 @@ buffers.
399
400
conf = 'http::addr=localhost:9000;'
401
with Sender.from_conf(conf) as sender:
402
- sender.flush(buf, transaction=True)
+ sender.flush(buf, transactional=True)
403
404
-The ``transaction`` parameter is optional and defaults to ``False``.
+The ``transactional`` parameter is optional and defaults to ``False``.
405
When set to ``True``, the buffer is guaranteed to be committed as a single
406
transaction, but must only contain rows for a single table.
407
408
+You should not mix using a transaction block with flushing an independent buffer transactionally.
409
+
410
Multiple Databases
411
------------------
412
0 commit comments