Skip to content

Commit

Permalink
[flink] create table validate options
Browse files Browse the repository at this point in the history
  • Loading branch information
chenzhuoyu committed Aug 6, 2024
1 parent 96f458c commit 8aac48e
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,14 @@ private void validateOptions(Map<String, String> options) {
.collect(Collectors.toSet());

Set<String> additionalValidOptions =
new HashSet<>(Arrays.asList("is_streaming", "connector", "log.system"));
new HashSet<>(
Arrays.asList(
"is_streaming",
"connector",
"log.system",
"kafka.bootstrap.servers",
"kafka.topic",
"kafka.transaction.timeout.ms"));

options.keySet()
.forEach(
Expand Down

0 comments on commit 8aac48e

Please sign in to comment.