We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If a multi-streams group has a stream with an empty sinkList(or has no SortFlink type sink), the following streams will be skipped. https://github.com/apache/inlong/blob/master/inlong-manager/manager-plugins/base/src/main/java/org/apache/inlong/manager/plugin/listener/StartupSortListener.java#L100~L105
for (InlongStreamInfo streamInfo : streamInfos) { List<StreamSink> sinkList = streamInfo.getSinkList(); List<String> sinkTypes = sinkList.stream().map(StreamSink::getSinkType).collect(Collectors.toList()); if (CollectionUtils.isEmpty(sinkList) || !SinkType.containSortFlinkSink(sinkTypes)) { return ListenerResult.success(); }
All streams should not be skipped.
No need to reproduce
No response
master
InLong Manager
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
What happened
If a multi-streams group has a stream with an empty sinkList(or has no SortFlink type sink), the following streams will be skipped.
https://github.com/apache/inlong/blob/master/inlong-manager/manager-plugins/base/src/main/java/org/apache/inlong/manager/plugin/listener/StartupSortListener.java#L100~L105
What you expected to happen
All streams should not be skipped.
How to reproduce
No need to reproduce
Environment
No response
InLong version
master
InLong Component
InLong Manager
Are you willing to submit PR?
Code of Conduct
The text was updated successfully, but these errors were encountered: