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
Run "create stream ... as select ..." statement against the source stream and the target topic without specifying retention in both with clause and KSQL configuration.
Expected behavior
It will create a stream with no complain.
Actual behaviour
It will throw the similar message:
A Kafka topic with the name 'target_topic' already exists, with different partition/replica/retention configuration than required. KSQL expects 9 partitions (topic has 9), 3 replication factor (topic has 3), and 604800000 retention (topic has 2419200000)
Workarounds
Set the target topic retention in the with clause explicitly.
Split the statement into two separates ones: create stream + insert into.
The text was updated successfully, but these errors were encountered:
Describe the bug
When I run a CSAS query it doesn't validate properties against the target topic. You can see the retention validation switch here:
To Reproduce
Expected behavior
It will create a stream with no complain.
Actual behaviour
It will throw the similar message:
Workarounds
The text was updated successfully, but these errors were encountered: