-
Notifications
You must be signed in to change notification settings - Fork 949
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[flink] Support compact procedure #2013
Conversation
2ef94e0
to
c0848b1
Compare
@@ -212,6 +213,12 @@ default boolean caseSensitive() { | |||
return true; | |||
} | |||
|
|||
/** Return the warehouse path. */ | |||
String warehouse(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cast to AbstractCatalog
to get warehouse and options.
|
||
ReadableConfig conf = StreamExecutionEnvironmentUtils.getConfiguration(env); | ||
String name = conf.getOptional(PipelineOptions.NAME).orElse(jobName); | ||
if (conf.get(ExecutionOptions.RUNTIME_MODE) == RuntimeExecutionMode.STREAMING) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should use TABLE_DML_SYNC
in Flink.
c0848b1
to
ae416b9
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1
(cherry picked from commit f31cd18)
Purpose
Tests
CompactActionITCase
SortCompactActionITCase
API and Format
Documentation