1. 29 2月, 2016 1 次提交
  2. 28 2月, 2016 1 次提交
  3. 26 2月, 2016 2 次提交
  4. 25 2月, 2016 1 次提交
    • U
      [docs] Move state and windows guide to separate pages · 004eb007
      Ufuk Celebi 提交于
      - Move "Windowing" to separate page
        - Make "Working with Time" sub page of "Windowing"
        - Fix link in "Working with Time" page
      - Move "Working with State" page to "Fault Tolerance"
        - Add Table of Contents to State Backends page
        - Hierarchical restart strategies sections
      - CEP => Event Processing (CEP)
      
      This closes #1705.
      004eb007
  5. 24 2月, 2016 1 次提交
  6. 23 2月, 2016 3 次提交
  7. 19 2月, 2016 2 次提交
  8. 17 2月, 2016 8 次提交
  9. 16 2月, 2016 2 次提交
  10. 15 2月, 2016 4 次提交
    • T
      [FLINK-2111] Make stoppable stream task and stoppable stream source operator type safe · f60f8fbc
      Till Rohrmann 提交于
      Update index.js and reset vendor.css and vendor.js to master version
      
      Update web-dashboard
      
      Remove duplicate flink-runtime-web dependency from flink-tests
      
      Remove not used ProgramStopException
      
      Change stopping behaviour to only work in job status RUNNING
      
      This closes #750.
      f60f8fbc
    • M
      [FLINK-2111] Add "stop" signal to cleanly shutdown streaming jobs · bdd4024e
      mjsax 提交于
      - added JobType to JobGraph and ExecutionGraph
      - added interface Stoppable, applied to SourceStreamTask
      - added STOP signal logic to JobManager, TaskManager, ExecutionGraph
      - extended Client to support stop
      - extended Cli frontend, JobManager frontend
      - updated documenation
      
      Fix JobManagerTest.testStopSignal and testStopSignalFail
      
      The StoppableInvokable could not be instantiated by Task because it was declared as a private
      class. Adds additional checks to verify that the stop signal behaves correctly.
      
      Auto-detect if job is stoppable
      
      A job is stoppable iff all sources are stoppable
      
      - Replace JobType by stoppable flag
      - Add StoppableFunction and StoppableInvokable to support the optional stop operation
      - added REST get/delete test (no extra YARN test -- think not required as get/delete is both tested)
      - bug fix: job got canceld instead of stopped in web interface
      - Add StoppingException
      - Allow to stop jobs when they are not in state RUNNING
      
      Second round of Till's comments
      bdd4024e
    • T
      [FLINK-3187] [restart] Introduce RestartStrategy to ExecutionGraph · 5eae47f5
      Till Rohrmann 提交于
      A RestartStrategy defines how the ExecutionGraph reacts in case of a restart. Different strategies
      are conceivable. For example, no restart, fixed delay restart, exponential backoff restart, scaling
      in/out restart, etc.
      
      Expose RestartStrategy to user API
      
      This removes the setNumberExecutionRetries and the setDelayBetweenRetries on the ExecutionEnvironment and
      the ExecutionConfig. Instead the more general RestartStrategy can be set. In order to maintain the
      separation between the runtime and api module, one sets a RestartStrategyConfiguration which is transformed
      into a RestartStrategy on the JobManager.
      
      Replace old execution-retries configuration parameters by restart-strategy.
      
      Add FixedDelayRestartStrategy test case
      
      Reintroduce old configuration values and API calls for the deprecated restart mechanism
      
      The old configuration values and API calls will be respected if no explicit
      RestartStrategy has been set. The values, if correct, are used to instantiate
      a FixedDelayRestartStrategy.
      
      Add deprecation comments to the JavaDocs
      
      Add logging statement for job recovery
      
      Fix JobManagerProcessFailureBatchRecoveryITCase by introducing a job recovery timeout
      
      Add proper annotations to RestartStrategies
      
      Let ExecutionGraphRestartTest extend TestLogger
      
      This closes #1470.
      5eae47f5
    • G
      [FLINK-3160] [web-dashboard] Aggregate operator statistics by TaskManager · 73bc35f1
      Greg Hogan 提交于
      Adds a new per-job tab displaying subtask statistics aggregated by TaskManager.
      
      This closes #1564.
      73bc35f1
  11. 10 2月, 2016 1 次提交
  12. 09 2月, 2016 1 次提交
  13. 08 2月, 2016 4 次提交
    • R
    • U
    • U
      d69fe309
    • A
      [FLINK-3336] Add Rescale Data Shipping for DataStream · 9f6a8b6d
      Aljoscha Krettek 提交于
      This is the Javadoc of DataStream.rescale() that describes the
      behaviour:
      
      Sets the partitioning of the {@link DataStream} so that the output elements
      are distributed evenly to a subset of instances of the next operation in a round-robin
      fashion.
      
      The subset of downstream operations to which the upstream operation sends
      elements depends on the degree of parallelism of both the upstream and downstream operation.
      For example, if the upstream operation has parallelism 2 and the downstream operation
      has parallelism 4, then one upstream operation would distribute elements to two
      downstream operations while the other upstream operation would distribute to the other
      two downstream operations. If, on the other hand, the downstream operation has parallelism
      2 while the upstream operation has parallelism 4 then two upstream operations will
      distribute to one downstream operation while the other two upstream operations will
      distribute to the other downstream operations.
      
      In cases where the different parallelisms are not multiples of each other one or several
      downstream operations will have a differing number of inputs from upstream operations.
      9f6a8b6d
  14. 05 2月, 2016 1 次提交
  15. 04 2月, 2016 1 次提交
  16. 02 2月, 2016 3 次提交
  17. 29 1月, 2016 1 次提交
  18. 27 1月, 2016 3 次提交