1. 17 8月, 2020 1 次提交
  2. 13 8月, 2020 7 次提交
  3. 11 8月, 2020 1 次提交
  4. 10 8月, 2020 1 次提交
  5. 08 8月, 2020 1 次提交
    • M
      [FLINK-17503][runtime] [logs] Refactored log output. · 5696cf28
      Matthias Pohl 提交于
      The log output was cleaned up:
       - Only the key of the option is logged out instead of the whole
         instance's toString() method.
       - A new utility method was introduce that adapts the log output in a
         way that an adapted extension is used for maximum values instead of
         logging the actual max value.
      
      This closes #13086.
      5696cf28
  6. 07 8月, 2020 2 次提交
  7. 05 8月, 2020 1 次提交
    • X
      [FLINK-18677][fix] Added handling of suspended or lost connections within the... · d954278b
      xcomp 提交于
      [FLINK-18677][fix] Added handling of suspended or lost connections within the ZooKeeperLeaderRetrievalService.
      
      The listener needs to be notified in case of a connection loss so that it is able to initiate necessary actions on its side.
      
      [FLINK-18677][runtime] [style] Replaced spaces by TABs to follow the Apache Flink code styles.
      
      [FLINK-18677][runtime] [fix] Synchronize notifyLeaderLoss through lock and removed redundant code.
      
      The redundant code was moved into notifyIfNewLeaderAddress(String, UUID) which is then used by notifyLeaderLoss() and within nodeChanged(). Additionally, the method call of notifyLeaderLoss() is guarded now by a lock to synchronize the state change (i.e. lastLeaderAddress and lastLeaderSessionID).
      
      [FLINK-18677][runtime] The exception was added to make it more explicit that the method is not expected to be called.
      
      [FLINK-18677][runtime] Decreased wait time the queue to be filled since we're not expecting any objects.
      
      The test does not expect any calls happening. Hence, no CompletableFuture instance will be queued. The longer wait time would just result in a longer running test.
      
      [FLINK-18677][runtime] Added infinite wait time to happy test.
      
      The previous implementation had a fixed timeout. Slower machines might need longer to process the test which might result in test failures. The new implementation removes the timeout so that the test wouldn't fail just because of a poor performance of the machine the test is running on.
      
      [FLINK-18677][runtime] Moved log messages out of synchronization blocks.
      
      This closes #13055.
      d954278b
  8. 04 8月, 2020 3 次提交
  9. 03 8月, 2020 1 次提交
    • T
      [FLINK-18772] Disable web submission for per-job/application mode deployments · eb0a56ba
      Till Rohrmann 提交于
      When running Flink in per-job/application mode, it will instantiate a MiniDispatcherRestEndpoint.
      This endpoint does not instantiate the web submission REST handlers. However, it still displayed
      the submit job link in the web ui. This commit changes the behaviour so that we no longer display
      this link when running Flink in per-job/application mode.
      
      This closes #13030.
      eb0a56ba
  10. 29 7月, 2020 2 次提交
  11. 28 7月, 2020 1 次提交
    • Z
      [FLINK-18595][network] Fix the deadlock issue by task thread and canceler... · e2686808
      Zhijiang 提交于
      [FLINK-18595][network] Fix the deadlock issue by task thread and canceler thread in RemoteInputChannel
      
      Assuming two remote channels as listeners in LocalBufferPool, the deadlock happens as follows
      1. While the Canceler thread calling ch1#releaseAllResources, it will occupy the bufferQueue lock and try to call ch2#notifyBufferAvailable.
      2. While task thread exiting to call CachedBufferStorage#close, it might release exclusive buffers for ch2. Then ch2 will occupy the bufferQueue
      lock and try to call ch1#notifyBufferAvailable.
      3. ch1 and ch2 will both occupy self bufferQueue lock and wait for other side's bufferQueue lock to cause deadlock.
      
      Regarding the solution, we can check the released state outside of bufferQueue lock in RemoteInputChannel#notifyBufferAvailable to return immediately.
      e2686808
  12. 22 7月, 2020 2 次提交
  13. 21 7月, 2020 1 次提交
  14. 14 7月, 2020 1 次提交
    • J
      [FLINK-18539][datastream] Fix... · 2a3b642b
      Jark Wu 提交于
      [FLINK-18539][datastream] Fix StreamExecutionEnvironment#addSource(SourceFunction, TypeInformation) doesn't use the user defined type information
      
      This closes #12878
      2a3b642b
  15. 09 7月, 2020 2 次提交
  16. 08 7月, 2020 1 次提交
  17. 07 7月, 2020 1 次提交
  18. 02 7月, 2020 1 次提交
  19. 30 6月, 2020 1 次提交
  20. 29 6月, 2020 1 次提交
  21. 27 6月, 2020 3 次提交
  22. 25 6月, 2020 1 次提交
  23. 24 6月, 2020 1 次提交
  24. 22 6月, 2020 1 次提交
  25. 20 6月, 2020 2 次提交