-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-29674][CORE] Update dropwizard metrics to 4.1.x for JDK 9+ #26332
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -292,6 +292,16 @@ | |
| <dependency> | ||
| <groupId>io.dropwizard.metrics</groupId> | ||
| <artifactId>metrics-graphite</artifactId> | ||
| <exclusions> | ||
| <exclusion> | ||
| <groupId>com.rabbitmq</groupId> | ||
| <artifactId>amqp-client</artifactId> | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This would otherwise be a new dependency on RabbitMQ, but, my hunch is that it is not necessary for Spark. |
||
| </exclusion> | ||
| </exclusions> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>io.dropwizard.metrics</groupId> | ||
| <artifactId>metrics-jmx</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.fasterxml.jackson.core</groupId> | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -118,3 +118,4 @@ announce.tmpl | |
| vote.tmpl | ||
| SessionManager.java | ||
| SessionHandler.java | ||
| GangliaReporter.java | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -39,10 +39,10 @@ | |
| <artifactId>spark-core_${scala.binary.version}</artifactId> | ||
| <version>${project.version}</version> | ||
| </dependency> | ||
|
|
||
| <dependency> | ||
| <groupId>io.dropwizard.metrics</groupId> | ||
| <artifactId>metrics-ganglia</artifactId> | ||
| <groupId>info.ganglia.gmetric4j</groupId> | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This was previously a transitive dependency anyway, and should have been directly referenced. |
||
| <artifactId>gmetric4j</artifactId> | ||
| <version>1.0.10</version> | ||
| </dependency> | ||
| </dependencies> | ||
| </project> | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this should have already been there, but now would also need to be in
NOTICE