You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In 29581b3, we disabled autocommit for DB connections.
In Sink transactions are explicitly committed and it causes any trouble.
However, in Source, where transactions are read-only, it effectively creates very long running transactions, which is generally a bad idea. Also it causes different problems like #54.
Committing periodically (e.g. in poll()) is a good idea.
The text was updated successfully, but these errors were encountered:
In 29581b3, we disabled autocommit for DB connections.
In Sink transactions are explicitly committed and it causes any trouble.
However, in Source, where transactions are read-only, it effectively creates very long running transactions, which is generally a bad idea. Also it causes different problems like #54.
Committing periodically (e.g. in
poll()
) is a good idea.The text was updated successfully, but these errors were encountered: