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

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


    from 50be4e6  [FLINK-23375][connector/jdbc] Build JDBC test jar.
     new 08794a6  [FLINK-25192][checkpointing] Implement no-claim mode support
     new 591f315  [hotfix] Make PseudoRandomValueSelector return the selected 
value
     new 68f2bc3  [hotfix][hack] Make ChangelogStateBackend randomized tests 
work with forced full snapshots

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:
 .../shortcodes/generated/rest_v1_dispatcher.html   |   2 +-
 .../generated/savepoint_config_configuration.html  |   4 +-
 .../apache/flink/client/cli/CliFrontendParser.java |   6 +-
 .../flink/client/cli/CliFrontendRunTest.java       |  20 +++
 .../flink/streaming/tests/StubStateBackend.java    |   5 +
 .../src/test/resources/rest_api_v1.snapshot        |   4 +-
 .../runtime/checkpoint/CheckpointCoordinator.java  |  24 +++-
 .../runtime/checkpoint/CheckpointOptions.java      |  54 ++++---
 .../runtime/checkpoint/CheckpointProperties.java   |  45 +++++-
 .../flink/runtime/checkpoint/CheckpointType.java   |  42 +++++-
 .../runtime/checkpoint/CompletedCheckpoint.java    |   5 +-
 .../network/api/serialization/EventSerializer.java |   6 +
 .../apache/flink/runtime/jobgraph/RestoreMode.java |  12 +-
 .../runtime/jobgraph/SavepointConfigOptions.java   |   2 +-
 .../runtime/jobgraph/SavepointRestoreSettings.java |   2 +-
 .../flink/runtime/minicluster/MiniCluster.java     |  30 ++++
 .../apache/flink/runtime/state/StateBackend.java   |  16 +++
 .../runtime/state/filesystem/FsStateBackend.java   |   6 +
 .../runtime/state/hashmap/HashMapStateBackend.java |   6 +
 .../runtime/state/memory/MemoryStateBackend.java   |   6 +
 .../CheckpointCoordinatorTriggeringTest.java       | 159 +++++++++++++++++++++
 .../runtime/checkpoint/CheckpointOptionsTest.java  |  23 ++-
 .../runtime/checkpoint/CheckpointTypeTest.java     |   2 +
 .../checkpoint/CompletedCheckpointTest.java        |  13 +-
 .../runtime/checkpoint/PendingCheckpointTest.java  |  10 +-
 .../checkpoint/RestoredCheckpointStatsTest.java    |   2 +-
 .../api/serialization/EventSerializerTest.java     |  10 +-
 .../PipelinedSubpartitionWithReadViewTest.java     |   3 +
 .../consumer/ChannelStatePersisterTest.java        |   7 +-
 .../partition/consumer/LocalInputChannelTest.java  |   9 +-
 .../consumer/RecoveredInputChannelTest.java        |   6 +-
 .../partition/consumer/RemoteInputChannelTest.java |  24 +++-
 .../operators/testutils/DummyEnvironment.java      |   3 +-
 .../testutils/PseudoRandomValueSelector.java       |   9 +-
 .../state/EmbeddedRocksDBStateBackend.java         |   7 +
 .../streaming/state/RocksDBStateBackend.java       |   7 +
 .../snapshot/RocksIncrementalSnapshotStrategy.java |  23 ++-
 .../runtime/tasks/SourceOperatorStreamTask.java    |   6 +
 .../streaming/runtime/tasks/SourceStreamTask.java  |   6 +
 .../flink/streaming/runtime/tasks/StreamTask.java  |  20 +++
 .../checkpointing/AlternatingCheckpointsTest.java  | 102 +++++++++----
 .../checkpointing/CheckpointedInputGateTest.java   |   5 +-
 .../io/checkpointing/InputProcessorUtilTest.java   |   2 +
 .../io/checkpointing/UnalignedCheckpointsTest.java |   8 +-
 ...tStreamTaskChainedSourcesCheckpointingTest.java |   8 +-
 .../runtime/tasks/MultipleInputStreamTaskTest.java |   8 +-
 .../tasks/StreamTaskFinalCheckpointsTest.java      |   8 +-
 .../streaming/runtime/tasks/StreamTaskTest.java    |  47 ++++++
 .../tasks/SubtaskCheckpointCoordinatorTest.java    |   6 +-
 .../flink-sql-client/src/test/resources/sql/set.q  |  10 +-
 .../streaming/util/TestStreamEnvironment.java      |   7 +-
 .../flink/test/checkpointing/SavepointITCase.java  | 110 ++++++++++++++
 52 files changed, 837 insertions(+), 130 deletions(-)

Reply via email to