This is an automated email from the ASF dual-hosted git repository.

fanrui pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


    from 8b716346099 [FLINK-39302][table] Support `SHOW CREATE OR ALTER 
MATERIALIZED TABLE`
     new 17dfa5fb586 [hotfix] Rename isUnalignedDuringRecoveryEnabled to 
isCheckpointingDuringRecoveryEnabled
     new 23ebbb5d2bb [FLINK-38930][checkpoint] Filtering record before 
processing without spilling strategy
     new 1b933bd5a26 [FLINK-38930][checkpoint] Use heap buffer fallback to 
avoid deadlock during recovery

The 3 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/configuration/CheckpointingOptions.java  |   4 +-
 .../configuration/CheckpointingOptionsTest.java    |  14 +-
 .../channel/ChannelStateFilteringHandler.java      | 458 +++++++++++++++++++++
 .../channel/RecoveredChannelStateHandler.java      |  64 ++-
 .../channel/SequentialChannelStateReader.java      |  13 +-
 .../channel/SequentialChannelStateReaderImpl.java  |  27 +-
 .../partition/consumer/IndexedInputGate.java       |   6 +
 .../partition/consumer/RecoveredInputChannel.java  |  26 +-
 .../partition/consumer/SingleInputGate.java        |  12 +
 .../runtime/taskmanager/InputGateWithMetrics.java  |  10 +
 .../io/StreamMultipleInputProcessorFactory.java    |   8 +-
 .../runtime/io/StreamTaskNetworkInputFactory.java  |   9 +-
 .../runtime/io/StreamTwoInputProcessorFactory.java |  11 +-
 .../runtime/io/recovery/RecordFilterContext.java   | 227 ++++++++++
 .../VirtualChannelRecordFilterFactory.java         | 123 ++++++
 .../runtime/tasks/OneInputStreamTask.java          |   6 +-
 .../flink/streaming/runtime/tasks/StreamTask.java  |  88 +++-
 .../GateFilterHandlerBufferOwnershipTest.java      | 230 +++++++++++
 .../checkpoint/channel/GateFilterHandlerTest.java  | 213 ++++++++++
 .../InputChannelRecoveredStateHandlerTest.java     |   6 +-
 .../SequentialChannelStateReaderImplTest.java      |   3 +-
 .../runtime/state/ChannelPersistenceITCase.java    |   3 +-
 .../streaming/runtime/io/MockIndexedInputGate.java |   8 +
 .../flink/streaming/runtime/io/MockInputGate.java  |   8 +
 .../AlignedCheckpointsMassiveRandomTest.java       |   8 +
 .../io/recovery/RecordFilterContextTest.java       | 193 +++++++++
 .../VirtualChannelRecordFilterFactoryTest.java     |  90 ++++
 27 files changed, 1833 insertions(+), 35 deletions(-)
 create mode 100644 
flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/channel/ChannelStateFilteringHandler.java
 create mode 100644 
flink-runtime/src/main/java/org/apache/flink/streaming/runtime/io/recovery/RecordFilterContext.java
 create mode 100644 
flink-runtime/src/main/java/org/apache/flink/streaming/runtime/io/recovery/VirtualChannelRecordFilterFactory.java
 create mode 100644 
flink-runtime/src/test/java/org/apache/flink/runtime/checkpoint/channel/GateFilterHandlerBufferOwnershipTest.java
 create mode 100644 
flink-runtime/src/test/java/org/apache/flink/runtime/checkpoint/channel/GateFilterHandlerTest.java
 create mode 100644 
flink-runtime/src/test/java/org/apache/flink/streaming/runtime/io/recovery/RecordFilterContextTest.java
 create mode 100644 
flink-runtime/src/test/java/org/apache/flink/streaming/runtime/io/recovery/VirtualChannelRecordFilterFactoryTest.java

Reply via email to