Skip to content

Commit

Permalink
Iceberg writer stage should include WRITER_MAXIMUM_POOL_SIZE in its p…
Browse files Browse the repository at this point in the history
…arameters (#170)
  • Loading branch information
liuml07 authored Apr 13, 2022
1 parent d8c82e1 commit 6f42639
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,12 @@ public static List<ParameterDefinition<?>> parameters() {
.description(WriterProperties.WRITER_FILE_FORMAT_DESCRIPTION)
.validator(Validators.alwaysPass())
.defaultValue(WriterProperties.WRITER_FILE_FORMAT_DEFAULT)
.build()
.build(),
new IntParameter().name(WriterProperties.WRITER_MAXIMUM_POOL_SIZE)
.description(WriterProperties.WRITER_MAXIMUM_POOL_SIZE_DESCRIPTION)
.validator(Validators.alwaysPass())
.defaultValue(WriterProperties.WRITER_MAXIMUM_POOL_SIZE_DEFAULT)
.build()
);
}

Expand Down

0 comments on commit 6f42639

Please sign in to comment.