1. 03 8月, 2016 4 次提交
  2. 02 8月, 2016 17 次提交
  3. 01 8月, 2016 4 次提交
    • Z
      [FLINK-4284] [docu] Fix broken links · aed56aee
      zentol 提交于
      This closes #2311
      aed56aee
    • U
      [FLINK-4289] Unset -x flag for .java files · 4bfc20ac
      Ufuk Celebi 提交于
      Some source files had the -x flag set:
      
      Before this change:
      ```
      $ find . -perm +111 -type f | grep "\.java"
      ./flink-contrib/flink-tweet-inputformat/src/main/java/org/apache/flink/contrib/tweetinputformat/model/places/Attributes.java
      ./flink-contrib/flink-tweet-inputformat/src/main/java/org/apache/flink/contrib/tweetinputformat/model/places/BoundingBox.java
      ./flink-contrib/flink-tweet-inputformat/src/main/java/org/apache/flink/contrib/tweetinputformat/model/places/Places.java
      ./flink-contrib/flink-tweet-inputformat/src/main/java/org/apache/flink/contrib/tweetinputformat/model/tweet/Contributors.java
      ./flink-contrib/flink-tweet-inputformat/src/main/java/org/apache/flink/contrib/tweetinputformat/model/tweet/Coordinates.java
      ./flink-contrib/flink-tweet-inputformat/src/main/java/org/apache/flink/contrib/tweetinputformat/model/tweet/CurrentUserRetweet.java
      ./flink-contrib/flink-tweet-inputformat/src/main/java/org/apache/flink/contrib/tweetinputformat/model/tweet/entities/Entities.java
      ./flink-contrib/flink-tweet-inputformat/src/main/java/org/apache/flink/contrib/tweetinputformat/model/tweet/entities/HashTags.java
      ./flink-contrib/flink-tweet-inputformat/src/main/java/org/apache/flink/contrib/tweetinputformat/model/tweet/entities/Media.java
      ./flink-contrib/flink-tweet-inputformat/src/main/java/org/apache/flink/contrib/tweetinputformat/model/tweet/entities/Size.java
      ./flink-contrib/flink-tweet-inputformat/src/main/java/org/apache/flink/contrib/tweetinputformat/model/tweet/entities/Symbol.java
      ./flink-contrib/flink-tweet-inputformat/src/main/java/org/apache/flink/contrib/tweetinputformat/model/tweet/entities/URL.java
      ./flink-contrib/flink-tweet-inputformat/src/main/java/org/apache/flink/contrib/tweetinputformat/model/tweet/entities/UserMention.java
      ./flink-contrib/flink-tweet-inputformat/src/main/java/org/apache/flink/contrib/tweetinputformat/model/tweet/Tweet.java
      ./flink-contrib/flink-tweet-inputformat/src/main/java/org/apache/flink/contrib/tweetinputformat/model/User/Users.java
      ./flink-libraries/flink-gelly/src/main/java/org/apache/flink/graph/Graph.java
      ./flink-libraries/flink-gelly/src/main/java/org/apache/flink/graph/gsa/ApplyFunction.java
      ./flink-libraries/flink-gelly/src/main/java/org/apache/flink/graph/gsa/GatherFunction.java
      ./flink-libraries/flink-gelly/src/main/java/org/apache/flink/graph/gsa/GatherSumApplyIteration.java
      ./flink-libraries/flink-gelly/src/main/java/org/apache/flink/graph/gsa/Neighbor.java
      ./flink-libraries/flink-gelly/src/main/java/org/apache/flink/graph/gsa/SumFunction.java
      ./flink-libraries/flink-gelly/src/main/java/org/apache/flink/graph/library/GSAConnectedComponents.java
      ./flink-libraries/flink-gelly/src/main/java/org/apache/flink/graph/library/GSASingleSourceShortestPaths.java
      ./flink-libraries/flink-gelly-examples/src/main/java/org/apache/flink/graph/examples/GSASingleSourceShortestPaths.java
      ./flink-libraries/flink-gelly-examples/src/test/java/org/apache/flink/graph/test/GatherSumApplyITCase.java
      ./flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/ExecutionGraph.java
      ```
      
      After this change:
      ```
      $ find . -perm +111 -type f | grep "\.java"
      ```
      4bfc20ac
    • Z
      [FLINK-4277] Fix TaskManagerConfigurationTest#testDefaultFsParameterLoading · 3537579b
      zentol 提交于
      This closes #2310
      3537579b
    • Z
      [FLINK-4279] [py] Set flink dependencies to provided · 6edc7f1e
      zentol 提交于
      This closes #2308
      6edc7f1e
  4. 29 7月, 2016 5 次提交
  5. 28 7月, 2016 2 次提交
  6. 27 7月, 2016 3 次提交
  7. 26 7月, 2016 5 次提交
    • A
      [FLINK-4246] Allow Specifying Multiple Metrics Reporters · 9bcbcf4a
      Aljoscha Krettek 提交于
      This also updates documentation and tests.
      
      Reporters can now be specified like this:
      
      metrics.reporters: foo,bar
      
      metrics.reporter.foo.class: JMXReporter.class
      metrics.reporter.foo.port: 10
      
      metrics.reporter.bar.class: GangliaReporter.class
      metrics.reporter.bar.port: 11
      metrics.reporter.bar.something: 42
      9bcbcf4a
    • M
      [FLINK-4261][tools] retry in case of failed snapshot deployment · cd232e68
      Maximilian Michels 提交于
      Unfortunately, we can't deploy snapshots atomically using the Nexus
      repository. The staged process which leads to an atomic deployment is
      only designed to work for releases. Best we can do is to retry
      deploying artifacts in case of failures.
      
      - introduce retry in case of failure of snapshot deployment
      - simplify deployment script
      
      This closes #2296
      cd232e68
    • T
      [FLINK-4152] Allow re-registration of TMs at resource manager · 2648bc1a
      Till Rohrmann 提交于
      - Add YarnFlinkResourceManager test to reaccept task manager registrations from a re-elected job manager
      
      - Remove unnecessary sync logic between JobManager and ResourceManager
      
      - Avoid duplicate reigstration attempts in case of a refused registration
      
      - Add test case to check that not an excessive amount of RegisterTaskManager messages are sent
      
      - Remove containersLaunched from YarnFlinkResourceManager and instead not clearing registeredWorkers when JobManager loses leadership
      
      - Let YarnFlinkResourceManagerTest extend TestLogger
      
      - Harden YarnFlinkResourceManager.getContainersFromPreviousAttempts
      
      - Add FatalErrorOccurred message handler to FlinkResourceManager;
        Increase timeout for YarnFlinkResourceManagerTest;
        Add additional constructor to TestingYarnFlinkResourceManager for tests
      
      - Rename registeredWorkers field into startedWorkers
      Additionally, the RegisterResource message is renamed into NotifyResourceStarted which
      tells the RM that a resource has been started. This reflects the current semantics of
      the startedWorkers map in the resource manager.
      
      - Fix concurrency issues in TestingLeaderRetrievalService
      
      This closes #2257
      2648bc1a
    • M
      c6715b7f
    • Z
      [FLINK-4192] [metrics] Move metrics classes out of 'flink-core' · e3fec1f9
      zentol 提交于
      - moved user-facing API to 'flink-metrics/flink-metrics-core'
      - moved JMXReporter to 'flink-metrics/flink-metrics-jmx'
      - moved remaining metric classes to 'flink-runtime'
      
      This closes #2226
      e3fec1f9