[spark] Expose Paimon metrics through JMX - #10131
Open
hutiefang76 wants to merge 1 commit into
Open
hutiefang76 wants to merge 1 commit into
hutiefang76 wants to merge 1 commit into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Purpose
Fixes #7646. Paimon metrics already reach the Spark UI, but commit metrics are not visible to external JMX/Prometheus scrapers. This adds a Spark metrics source with an eagerly started JMX reporter, mirrors Paimon gauges, counters, and histograms into its Codahale registry, and wires the Spark V1 commit path to use the same metric registry. Existing Spark UI metrics remain available.
Metric names are deterministic for each group/table/metric. A later commit replaces the previous value for that key so repeated commits do not add new MBeans. Entries remain available for scraping during the Spark application lifetime. Source registration is retried when a Spark environment first appears or changes in the same JVM.
Tests
PaimonMetricTestsuite now passes 11/11, including a real V1INSERTcommit check.paimon-codegen-loadermust be packaged first so itspaimon-codegen/runtime resource is present.