1. 31 3月, 2017 2 次提交
  2. 30 3月, 2017 4 次提交
  3. 29 3月, 2017 8 次提交
  4. 28 3月, 2017 2 次提交
    • K
      comments · ad21a441
      kl0u 提交于
      ad21a441
    • K
      [FLINK-6197] [cep] Add support for iterative conditions. · 7fbdc100
      kl0u 提交于
      So far, the where clause only supported simple FilterFunction
      conditions. With this, we add support for conditions where an
      event is accepted not only based on its own properties, e.g.
      name, as it was before, but also based on some statistic
      computed over previously accepted events in the pattern, e.g.
      if the price is higher than the average of the prices of the
      previously accepted events.
      7fbdc100
  5. 27 3月, 2017 2 次提交
  6. 25 3月, 2017 10 次提交
  7. 24 3月, 2017 4 次提交
    • G
      [FLINK-5890] [gelly] GatherSumApply broken when object reuse enabled · 524b20f2
      Greg Hogan 提交于
      The initial fix for this ticket is not working on larger data sets.
      
      Reduce supports returning the left input, right input, a new object, or
      a locally reused object. The trouble with the initial fix was that the
      returned local object was reusing fields from the input tuples.
      
      The problem is with ReduceDriver#run managing two values (reuse1 and
      reuse2) and with a third, local value returned by
      GatherSumApplyIteration.SumUDF. After the first grouping value.f1 ==
      reuse1.f1. Following UDF calls may swap value.f1 and reuse2.f1, which
      causes reuse1.f1 == reuse2.f1. With an odd number of swaps the next
      grouping will reduce with reuse1 and reuse2 sharing a field and
      deserialization will overwrite stored values.
      
      The simple fix is to only use and return the provided inputs.
      
      This closes #3515
      524b20f2
    • U
      [FLINK-6182] Fix possible NPE in SourceStreamTask · 4b19e272
      Ufuk Celebi 提交于
      This closes #3606.
      4b19e272
    • T
      [hotfix] Remove validateRunsInMainThread from TaskExecutor to fix TaskExecutorTest · 11fe3dc8
      Till Rohrmann 提交于
      Currently, the TestingSerialRpcService does not play well together with the
      MainThreadValidatorUtil which assumes that rpc calls are dispatched to a mailbox
      from where they are picked up. In order to support the TestingSerialRpcService
      we will have to extend the MainThreadValidatorUtil to allow entering the main thread
      if the RpcEndpoint already runs in the context of the main thread.
      11fe3dc8
    • A
      [FLINK-6018] Add tests for KryoSerializer restore with registered types · 09164cf2
      Aljoscha Krettek 提交于
      This commit also renames isCompatibleWith() to canRestoreFrom() to make
      the method asymetric because in the case of KryoSerializer we
      can restore from state that was stored using no registed
      types/serializers while the other way around is not possible.
      
      This closes #3534.
      This closes #3603.
      09164cf2
  8. 23 3月, 2017 8 次提交