HudiExtractNode READ_START_COMMIT 和 READ_STREAMING_SKIP_COMPACT 取值为什么是反的 #9275
Closed
18826074212
started this conversation in
General
Replies: 2 comments
-
thanks, maybe it's a bug issue, it's easy to fix and you could create a PR. |
Beta Was this translation helpful? Give feedback.
0 replies
-
fixed in #9535, so close it. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
HudiExtractNode 源码代码如下:
// read options
options.put(READ_START_COMMIT, String.valueOf(readStreamingSkipCompaction));
options.put(READ_STREAMING_SKIP_COMPACT, readStartCommit);
不应该是这样吗
options.put(READ_START_COMMIT, readStartCommit));
options.put(READ_STREAMING_SKIP_COMPACT, String.valueOf(readStreamingSkipCompaction));
Beta Was this translation helpful? Give feedback.
All reactions