1. 22 4月, 2017 1 次提交
  2. 21 4月, 2017 16 次提交
  3. 20 4月, 2017 12 次提交
  4. 19 4月, 2017 7 次提交
    • G
      [hotfix] [gelly] Driver updates · 59cf7032
      Greg Hogan 提交于
      - refactor SimpleDriver to call internal plan method
      - add CLI parameters for RMatGraph, AdamicAdar, JaccardIndex
      - remove unused data from VertexDegrees
      - JaccardIndex now filters on > rather than >=
      - handle null in ValueArrayTypeInfo
      - add NonForwardingIdentityMapper to GraphUtils
      59cf7032
    • T
    • W
      [FLINK-5904] Make jobmanager.heap.mb and taskmanager.heap.mb work in YARN mode · 0da62e8d
      WangTaoTheTonic 提交于
      This closes #3414.
      0da62e8d
    • Z
      [FLINK-6307] [jdbc] Refactor JDBC tests · 9fb074c9
      zentol 提交于
      JDBCFullTest:
      - split testJdbcInOut into 2 methods to avoid manul test-lifecycle calls
      JDBCTestBase:
      - remove all qualified static accesses
      - remove static Connection field
      - remove (now) unused prepareTestDB method
      - create RowTypeInfo directly instead of first allocating a separate
      TypeInfo[]
      - rename testData to TEST_DATA in-line with naming conventions
      - rework test data to not rely on Object arrays
      
      JDBCInputFormatTest:
      - call InputFormat#closeInputFormat() in tearDown()
      - simplify method exception declarations
      - remove unreachable branch when format returns null (this should fail
      the test)
      - replace loops over splits with for-each loops
      - rework comparisons; no longer ignore nulls, no longer check class,
      compare directly against expected value
      
      JDBCOutputFormatTest:
      - directly create Row instead of first creating a tuple
      - simplify method exception declarations
      
      General:
      - do not catch exceptions if the catch block only calls Assert.fail()
      
      This closes #3723.
      9fb074c9
    • K
      [FLINK-6149] [table] Add additional flink logical relation nodes and separate... · 6a0ada81
      Kurt Young 提交于
      [FLINK-6149] [table] Add additional flink logical relation nodes and separate current optimization to logical and physical optimize
      
      This closes #3594.
      6a0ada81
    • T
      [FLINK-5991] [DataStream] Expose Union ListState for operator state · 2ef4900a
      Tzu-Li (Gordon) Tai 提交于
      This commit exposes the union list state scheme for managed operator state.
      The actual functionality was already previously added to the
      `DefaultOperatorStateBackend`, so this change simply exposes the feature
      through the `OperatorStateStore` interface.
      
      This commit also updates the documentation for managed operator state so
      that it covers the new union list state scheme. It strengthens the
      difference between keyed and non-keyed state data structures by
      emphasizing the semantic differences in the state access method Javadocs.
      
      This closes #3508.
      2ef4900a
    • T
      [FLINK-6324] [DataStream] Refine OperatorStateStore interface · a1aab642
      Tzu-Li (Gordon) Tai 提交于
      This commit refines the OperatorStateStore interface by,
      - deprecating Java serialization shortcuts
      - rename getOperatorState to getListState
      
      The Java serialization shortcuts are deprecated because they were
      previously introduced to provide a smoother migration path from older
      savepoints. However, its usage should definitely be discouraged.
      
      Renaming to getListState is a preparation of making the names of state
      access methods contain information about both its redistribution pattern
      on restore and the shape of its datastructure, since the combination of
      these two is orthogonal. This convention will also provide a better
      naming pattern for more state access methods in the future, for example
      getUnionListState. If the method name does not contain its
      redistribution pattern (e.g., getListState), then it simply implies the
      default repartitioning scheme (SPLIT_DISTRIBUTE).
      a1aab642
  5. 18 4月, 2017 4 次提交