1. 07 1月, 2016 1 次提交
  2. 27 12月, 2015 1 次提交
  3. 20 11月, 2015 1 次提交
    • R
      [FLINK-3032] Fix jackson-core dependency conflict with Hadoop 2.7.1. · d8ab8bcf
      Robert Metzger 提交于
      This commit is also changing how we build the "flink-shaded-hadoop" artifact.
      In the past, we were including all Hadoop dependencies into a fat jar, without relocating all of them.
      Maven was not able to see Hadoop's dependencies and classes ended up in the classpath multiple times.
      
      With this change, only shaded Hadoop dependencies are included into the jar. The shade plugin will also
      remove only the shaded dependencies from the pom file.
      d8ab8bcf
  4. 19 11月, 2015 1 次提交
  5. 13 11月, 2015 1 次提交
  6. 03 11月, 2015 2 次提交
  7. 02 11月, 2015 1 次提交
  8. 29 10月, 2015 1 次提交
  9. 28 10月, 2015 1 次提交
  10. 23 10月, 2015 1 次提交
  11. 21 10月, 2015 2 次提交
  12. 20 10月, 2015 2 次提交
    • T
      [FLINK-2354] [runtime] Replace old StateHandleProvider by StateStorageHelper... · a6890b28
      Till Rohrmann 提交于
      [FLINK-2354] [runtime] Replace old StateHandleProvider by StateStorageHelper in ZooKeeperStateHandleStore
      
      The old StateHandleProvider used in ZooKeeperStateHandleStore had to be replaced because the state backend implementation has changed. Since the new state backend could not be used anymore, a new StateStorageHelper interface has been created. The default implementation FileSystemStateStorageHelper stores the given state onto the specified file system and returns a FileSerializableStateHandle.
      
      Various fixes due to rebasing.
      a6890b28
    • U
      [FLINK-2793] [runtime-web] Redirect to leader in non-standalone mode · 77fc0cc4
      Ufuk Celebi 提交于
      Squashes:
      5a88d5e [tests] Add HttpTestClient for testing HTTP responses
      656d6d6 Split WebMonitor and LeaderRetrievalService start up
      a7e8da8 Move generated /web files to src/main/resources
      
      Add comment to webMonitorPort attribute and make line breaks more Scalaesque
      
      Don't block on leader retrieval and only resolve associated job manager once
      
      Make JobManagerRetriever independent of redirecting logic
      
      This closes #1202.
      77fc0cc4
  13. 18 10月, 2015 1 次提交
    • M
      [FLINK-2844] [web frontend] Remove old web interface · df448625
      Maximilian Michels 提交于
      - make new web one the default
      - adapt tests
      - make web directory a resource to be included in the fat jar
      - serve static files of web interface dynamic through the class loader
      - run on YARN
      - remove Jetty dependencies from poms
      df448625
  14. 09 10月, 2015 1 次提交
  15. 07 10月, 2015 1 次提交
  16. 06 10月, 2015 1 次提交
  17. 05 10月, 2015 1 次提交
    • R
      [hotfix] Execute YARN integration tests only upon request (by activating the... · 68c1afc2
      Robert Metzger 提交于
      [hotfix] Execute YARN integration tests only upon request (by activating the 'include-yarn-tests' profile)
      
      The default Hadoop version set in Flink (2.3.0) is causing the MiniYarnCluster to fail on some machines with some ip/hostname resolution issues.
      
      The YARN tests are all executed in travis profiles with Hadoop versions above 2.3.0
      
      This closes #1210
      68c1afc2
  18. 01 10月, 2015 1 次提交
  19. 30 9月, 2015 1 次提交
  20. 24 9月, 2015 3 次提交
  21. 22 9月, 2015 1 次提交
  22. 18 9月, 2015 1 次提交
    • A
      [hotfix] [build] Fix curator deps, Exclude Curator deps in Tests · e31a4d8a
      Aljoscha Krettek 提交于
      Tests would fail because of version conflicts because the tests include
      the original curator dependencies even though we shade them away in the
      final build result.
      
      This also fixes dependency management entries for curator dependencies.
      We shade it, therefore it cannot be in the dependency management
      section in the root pom.
      e31a4d8a
  23. 17 9月, 2015 1 次提交
  24. 11 9月, 2015 1 次提交
  25. 10 9月, 2015 1 次提交
  26. 09 9月, 2015 2 次提交
  27. 01 9月, 2015 1 次提交
  28. 31 8月, 2015 1 次提交
    • T
      [FLINK-2291] [runtime] Add ZooKeeper support to elect a leader from a set of... · b9de4ed3
      Till Rohrmann 提交于
      [FLINK-2291] [runtime] Add ZooKeeper support to elect a leader from a set of JobManager. The leader will then be retrieved from ZooKeeper by the TaskManagers.
      
      Refactors FlinkMiniCluster to support multiple JobManager
      
      Adds proper remote address resolution for actors
      
      Clean up of LeaderElection and LeaderRetrievalService. Removes synchronization to avoid deadlock.
      
      Adds ZooKeeper start option to TestBaseUtils.startCluster
      
      Removes registration session IDs, using the leader session IDs instead. Sets the leader session ID
       directly in the grantLeadership method. Let the LeaderElectionService select the leader session I
      D. Return leader session ID to LeaderRetrievalListeners.
      
      Removes direct ActorRef interaction
      
      Introduces LeaderRetrievalService for the Client and the CliFrontend.
      
      Make ApplicationClient to use the LeaderRetrievalService for JobManager resolution
      
      Adds LeaderElection/Retrieval tests
      
      Added test for exception forwarding from the CuratorFramework to a Contender
      
      Adds test job submission with changing leaders
      
      Adds new test cases for job cleanup after leader election change
      
      Adds new LeaderChangeStateCleanup test case
      
      Adds LeaderElectionRetrievalTestingCluster
      
      Introduces ListeningBehaviour for job submissions
      
      Relocation of org.apache.curator in flink-shaded-hadoop jar
      
      Adds Apache ZooKeeper and Apache Curator to LICENSE and NOTICE files
      
      Increases zookeeper connection timeout to 20000 ms for the KafkaITCase to fix failing tests on Travis
      
      Increased timeouts of ZooKeeperLeaderElectionTest for Travis
      
      Makes the WebInfoServer and the WebRuntimeMonitor to use the LeaderRetrievalService to retrieve the current leading JobManager
      
      Adds proper synchronization to ZooKeeperLeaderElectionService. Fixes StateCheckpointedITCase and PartitionedStateCheckpointingITCase
      
      Adds configuration description for new ZooKeeper configuration values
      
      Fixed port selection of JobManager at startup
      
      Improves logging output
      
      Extends masters file to also specify the webui ports
      
      Adds proper network interface resolution by retrieving the current leader address
      
      Makes the ZooKeeperLeaderElectionService write the leader information in ephemeral nodes so that the information is deleted once the leader has terminated. Fixes a bug in the TaskManager due to call by name semantics of scheduler.scheduleOnce.
      
      Adds jobManagerURL to TriggerTaskManagerRegistration message
      
      Enables findConnectingAddress to use the ZooKeeperLeaderRetrievalService. This allows to test the connection to a possibly changing master node.
      
      Changes startup scripts to respect the recovery mode instead of the ZK_QUORUM
      
      Adjust travis log file to only log zookeeper errors
      
      Updates high availability setup guide
      
      Adds TestLogger to leader election tests
      
      This closes #1016.
      b9de4ed3
  29. 28 8月, 2015 1 次提交
  30. 26 8月, 2015 1 次提交
    • R
      [FLINK-2555] Properly pass security credentials in the Hadoop Input/Output format wrappers · b264b010
      Robert Metzger 提交于
      This is needed because the Hadoop IF/OF's are using Hadoop's FileSystem stack, which is using
      the security credentials passed in the JobConf / Job class in the getSplits() method.
      
      Note that access to secured Hadoop 1.x using Hadoop IF/OF's is not possible with this change.
      This limitation is due to missing methods in the old APIs.
      
      - Add some comments & change dependency scope to test
      b264b010
  31. 21 8月, 2015 1 次提交
    • C
      [FLINK-1901] [core] Create sample operator for Dataset. · c9cfb17c
      chengxiang li 提交于
      [FLINK-1901] [core] enable sample with fixed size on the whole dataset.
      
      [FLINK-1901] [core] add more comments for RandomSamplerTest.
      
      [FLINK-1901] [core] refactor PoissonSampler output Iterator.
      
      [FLINK-1901] [core] move sample/sampleWithSize operator to DataSetUtils.
      
      Adds notes for commons-math3 to LICENSE and NOTICE file
      
      This closes #949.
      c9cfb17c
  32. 06 8月, 2015 1 次提交
  33. 31 7月, 2015 1 次提交
    • Z
      [FLINK-1927][FLINK-2173][py] Operator distribution rework, fix file paths · 68b15593
      zentol 提交于
      Python operators are no longer serialized and shipped across the
      cluster. Instead the plan file is executed on each node, followed by
      usage of the respective operator object.
      
      - removed dill library
      - filepaths are always explicitly passed to python
      - fix error reporting
      
      This closes #931.
      68b15593
  34. 21 7月, 2015 1 次提交