-
Notifications
You must be signed in to change notification settings - Fork 9.1k
HDDS-1136 : Add metric counters to capture the RocksDB checkpointing statistics. #536
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
Conversation
💔 -1 overall
This message was automatically generated. |
💔 -1 overall
This message was automatically generated. |
💔 -1 overall
This message was automatically generated. |
I am not sure why jenkins is not able to apply my patch on trunk. I pulled from apache hadoop trunk and merged to my branch. I also verified https://github.com/apache/hadoop/pull/536.patch applies cleanly on apache hadoop trunk. @elek Is it possible jenkins is trying to apply individual commits rather than the squashed patch? |
Closing this and opening a new one with a single commit. |
Don't now. Could be a yetus bug. You can ask it onthe yetus dev list / jira. Or ask @aw-was-here BTW, in the PR-s you can do force push. Github handles it very well, you don't need a new PR. |
**Problem:** Existing SamzaEventHubClientManager implementation spawns non-daemon threads when instantiating EventHubClient. These non-daemon threads stalls shutdown of samza processes even when the main thread has exited. **Fix:** Daemonize threads that are spawned from SamzaEventHubClientManager. Author: Shanthoosh Venkataraman <santhoshvenkat1988@gmail.com> Reviewers: Jagadish <jagadish@apache.org> Closes apache#536 from shanthoosh/SAMZA-1731
Added metric gauges for tracking DB checkpointing statistics. The OMMetrics class will hold these guages at any instant. These can be pulled from OM by Recon.
Testing done
Integration test for Servlet method that gets the OM DB checkpoint added.
Manually verified the patch on single node Ozone cluster.