-
Notifications
You must be signed in to change notification settings - Fork 3.9k
CASSANDRA-16082 - Add a new jmxtool which can dump what JMX objects exist and diff #730
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
Closed
Closed
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
ac8609e
CASSANDRA-16082 - Add a new jmxtool which can dump what JMX objects e…
dcapwell 7537ed1
add more packages and also made it possible to show similar matches i…
dcapwell 4818c58
format
dcapwell 6100645
added tests
dcapwell 6184b5b
highers
dcapwell d811428
spaces
dcapwell 93a2347
document when read repair stage was removed
dcapwell fcae013
try-with-resource
dcapwell 852eace
constant
dcapwell 012156e
remove more dead code
dcapwell 4c0ecaa
support stdin
dcapwell 7072a7b
style
dcapwell a60231f
unit test difftool
dcapwell e84c73a
added stdin support back to non-fork
dcapwell b55fe1b
precondition
dcapwell 7305ebd
supporess resources
dcapwell 6ed8a20
document two changes against 4.0 with jira
dcapwell 3c62aa6
POC splitting toolrunner API based off forking or not
dcapwell 323f883
removed POC and fixec compiler warnings
dcapwell 06076cd
cleanup
dcapwell 3f761ba
directly close stdin onComplete rather than use a future
dcapwell aa32dba
fixed jmxtool and fqltool to use logback rather than log4j2
dcapwell 559e108
remove dead imports and documented dump format
dcapwell ecf9742
feedback
dcapwell 08ace28
diff documents supported format, and updated the help tests
dcapwell 37a17b6
replaced ignoring table metrics in favor of calling out what metrics …
dcapwell 21e3d74
cleanup
dcapwell 85ce728
removed Cas*Latency in favor of excluding the 2.1 schema tables
dcapwell 26acceb
rebased to trunk
dcapwell File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
Oops, something went wrong.
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.
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.
That worries me. Can you please fire a CI run? I would do it for you but I don't have the privileges.
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.
Tests are https://app.circleci.com/pipelines/github/dcapwell/cassandra?branch=jmxDump, I can trigger Python dtests but unit/jvm-dtests are green.
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 feel uncomfortable about removing this protection too. Would it be straightforward to set some kind of system property to permit DataOutputBuffer.flush in the code that needs it?
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.
this behavior also matches other OutputStreams such as
java.io.ByteArrayOutputStream, also it is an optional method in javaThere 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.
Fair enough, no objections.