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
The document of subscription lacks instructions on using a risingwave-py for a simpler exactly-once implementation.
threading.Thread(
target=lambda: mv.on_change(
handler=simple_event_handler,
output_format=OutputFormat.DATAFRAME,
# If set to True, progress of the subscription will be saved and can be recovered on python application crashedpersist_progress=True,
max_batch_size=10)
).start()
With persist_progress=True,, we can support exactly-once delivery, without worrying data loss after failure recovery.
The text was updated successfully, but these errors were encountered:
The document of subscription lacks instructions on using a risingwave-py for a simpler exactly-once implementation.
With
persist_progress=True,
, we can support exactly-once delivery, without worrying data loss after failure recovery.The text was updated successfully, but these errors were encountered: