You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by zh...@apache.org on 2020/08/13 01:01:23 UTC

[flink] branch master updated (2d024ae -> 8593489)

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

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


    from 2d024ae  [FLINK-18809][table-planner-blink] Update distinct aggregates to the new type system
     add 2f12d9c  [FLINK-18355][tests] Remove SchedulerImpl in SlotPoolImplTest
     add da19ec2  [hotfix][tests] Merge SlotPoolInteractionsTest#TestingSlotPool with TestingSlotPoolImpl
     add 2cd6ff2  [hotfix][tests] Move testProviderAndOwnerSlotAllocationTimeout from SlotPoolInteractionsTest to SchedulerImplTest
     add 52b8496  [hotfix][tests] Add SchedulerImplTest#testAllocateSlot to test the basic slot allocation function of SchedulerImpl
     add 3636695  [FLINK-18355][tests] Remove SchedulerImpl in SlotPoolInteractionsTest
     add 8cf4dde  [FLINK-18355][tests] Remove redundant codes in SlotPoolImplTest#testAllocateWithFreeSlot
     add 8593489  [FLINK-18355][tests] Refactor tests of SlotPoolImpl with SlotPoolUtils and SlotPoolBuilder

No new revisions were added by this update.

Summary of changes:
 .../jobmaster/slotpool/SchedulerImplTest.java      | 160 ++++++++
 .../slotpool/SlotPoolBatchSlotRequestTest.java     |  68 +++-
 .../jobmaster/slotpool/SlotPoolBuilder.java        |  36 +-
 .../jobmaster/slotpool/SlotPoolImplTest.java       | 402 ++++++++-------------
 .../slotpool/SlotPoolInteractionsTest.java         | 229 ++----------
 .../SlotPoolPendingRequestFailureTest.java         |  39 +-
 .../slotpool/SlotPoolRequestCompletionTest.java    |  24 +-
 .../runtime/jobmaster/slotpool/SlotPoolUtils.java  |  36 ++
 .../jobmaster/slotpool/TestingSlotPoolImpl.java    |  59 +++
 9 files changed, 519 insertions(+), 534 deletions(-)
 create mode 100644 flink-runtime/src/test/java/org/apache/flink/runtime/jobmaster/slotpool/SchedulerImplTest.java