[ https://issues.apache.org/jira/browse/FLINK-4152?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15393716#comment-15393716 ]
ASF GitHub Bot commented on FLINK-4152: --------------------------------------- Github user mxm commented on a diff in the pull request: https://github.com/apache/flink/pull/2257#discussion_r72238490 --- Diff: flink-yarn/pom.xml --- @@ -85,8 +85,20 @@ under the License. <artifactId>guava</artifactId> <version>${guava.version}</version> </dependency> - - + + <dependency> + <groupId>com.typesafe.akka</groupId> + <artifactId>akka-testkit_${scala.binary.version}</artifactId> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>org.apache.flink</groupId> + <artifactId>flink-runtime_${scala.binary.version}</artifactId> --- End diff -- Here's the culprit. This has to be `flink-runtime_2.10` because it is a Flink artifact. The `scala-2.11` property only affects Scala dependencies of Flink artifacts. The Flink artifacts names remain the sames unless changed via the `change-scala-version.sh` script. If I remember correctly we don't use properties in artifact names because they are not resolved by Maven. > TaskManager registration exponential backoff doesn't work > --------------------------------------------------------- > > Key: FLINK-4152 > URL: https://issues.apache.org/jira/browse/FLINK-4152 > Project: Flink > Issue Type: Bug > Components: Distributed Coordination, TaskManager, YARN Client > Reporter: Robert Metzger > Assignee: Till Rohrmann > Attachments: logs.tgz > > > While testing Flink 1.1 I've found that the TaskManagers are logging many > messages when registering at the JobManager. > This is the log file: > https://gist.github.com/rmetzger/0cebe0419cdef4507b1e8a42e33ef294 > Its logging more than 3000 messages in less than a minute. I don't think that > this is the expected behavior. -- This message was sent by Atlassian JIRA (v6.3.4#6332)