-
Notifications
You must be signed in to change notification settings - Fork 33
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
[FEATURE] Add metrics in spark #117
Comments
|
limitation: Per account limitation is 300tps |
[Summary] Flint Metrics FrameworkApproach one: Codahale/Dropwizard aggregated metricsPros:
Cons:
Approach two: CloudWatch Agent IntegrationPros:
Cons:
Approach three: Leverage Spark event logsSpark's event logs, a comprehensive record of events during a Spark application's execution, can indeed be utilized for parsing metrics, although this method differs from the direct use of the Dropwizard Metrics Library. These logs, typically in JSON format, include detailed information about various Spark activities and can be accessed and analyzed post-execution for insights into job performance and system behavior. While the Dropwizard Metrics Library offers real-time metrics for ongoing monitoring, Spark event logs are more suited for retrospective analysis, debugging, and performance audits. Extracting metrics from these logs involves parsing the JSON data to identify relevant metrics, a process that can be resource-intensive and is generally more complex than real-time monitoring. Therefore, while Spark event logs provide a valuable resource for detailed analysis after the fact, they serve a different purpose compared to the immediate insights offered by Dropwizard's real-time metrics. Cost Analysis:
|
close as completed |
Requirements
Tasks
Metrics
Dependency Services
Interactive Job, dimensions: [clientId, domainName, instance]
repl status
statement status
requestIndex status
resultIndex status
Streaming Job, dimensions: [clientId, domainName, instance, type]
Query Optimizer
The text was updated successfully, but these errors were encountered: