Click to copy
Administrator • Reviewed for ksqlDB 0.29
How to Set a Session Configuration in ksqlDB
Simply run a SET
statement with the new value for the configuration. The statement will be available for your session until you exit.
SET 'auto.offset.reset' = 'earliest';
Remember that you can also list current values for all properties for your session.
Note that if you need to set cluster-wide a configuration value to all the sessions, you need to set it when starting the ksqlDB cluster.
Was this article helpful?