This is an automated email from the ASF dual-hosted git repository.
guoweijie pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
from 356e2af4b27 [FLINK-36185][e2e] Disable PyFlink end-to-end case that
uses Kafka legacy source.
new 467791fea36 [hotfix][API] DataStream should also support
connectAndProcess with ProcessConfigurableStream
new 4d131705b19 [FLINK-35795][API] Introduce the framework of
ProcessFunction Attribute
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../flink/api/common/attribute/Attribute.java | 57 +++++
.../org/apache/flink/api/dag/Transformation.java | 11 +
.../api/attribute/NoOutputUntilEndOfInput.java | 15 +-
.../api/stream/KeyedPartitionStream.java | 13 +-
.../api/stream/NonKeyedPartitionStream.java | 10 +-
.../datastream/impl/attribute/AttributeParser.java | 31 ++-
.../impl/stream/BroadcastStreamImpl.java | 4 +
.../datastream/impl/stream/GlobalStreamImpl.java | 21 +-
.../impl/stream/KeyedPartitionStreamImpl.java | 65 +++---
.../impl/stream/NonKeyedPartitionStreamImpl.java | 47 ++--
...essConfigurableAndKeyedPartitionStreamImpl.java | 9 +-
...ConfigurableAndNonKeyedPartitionStreamImpl.java | 6 +-
...onfigurableAndTwoKeyedPartitionStreamsImpl.java | 58 +++++
...figurableAndTwoNonKeyedPartitionStreamImpl.java | 59 +++++
...treamingJobGraphGeneratorWithAttributeTest.java | 244 +++++++++++++++++++++
.../impl/stream/KeyedPartitionStreamImplTest.java | 14 +-
.../stream/NonKeyedPartitionStreamImplTest.java | 5 +-
.../flink/streaming/api/graph/StreamConfig.java | 18 ++
.../flink/streaming/api/graph/StreamGraph.java | 7 +
.../flink/streaming/api/graph/StreamNode.java | 11 +
.../api/graph/StreamingJobGraphGenerator.java | 35 +--
.../AbstractOneInputTransformationTranslator.java | 2 +-
.../AbstractTwoInputTransformationTranslator.java | 2 +-
.../MultiInputTransformationTranslator.java | 2 +-
.../OneInputTransformationTranslator.java | 3 +-
...obGraphGeneratorWithOperatorAttributesTest.java | 101 ++++++++-
26 files changed, 703 insertions(+), 147 deletions(-)
create mode 100644
flink-core/src/main/java/org/apache/flink/api/common/attribute/Attribute.java
copy
flink-runtime/src/test/java/org/apache/flink/test/junit5/InjectMiniCluster.java
=>
flink-datastream-api/src/main/java/org/apache/flink/datastream/api/attribute/NoOutputUntilEndOfInput.java
(74%)
copy
flink-datastream-api/src/main/java/org/apache/flink/datastream/api/function/ApplyPartitionFunction.java
=>
flink-datastream/src/main/java/org/apache/flink/datastream/impl/attribute/AttributeParser.java
(53%)
create mode 100644
flink-datastream/src/main/java/org/apache/flink/datastream/impl/stream/ProcessConfigurableAndTwoKeyedPartitionStreamsImpl.java
create mode 100644
flink-datastream/src/main/java/org/apache/flink/datastream/impl/stream/ProcessConfigurableAndTwoNonKeyedPartitionStreamImpl.java
create mode 100644
flink-datastream/src/test/java/org/apache/flink/datastream/impl/attribute/StreamingJobGraphGeneratorWithAttributeTest.java