-
Notifications
You must be signed in to change notification settings - Fork 293
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
Production fixes #669
Closed
Closed
Production fixes #669
Conversation
This file contains 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
Seed changes for Cassandra 3.x [aagrwal]
Fix javadoc errros
Move to gradle and gretty
1. Make backup/snapshot status manager store additional details like meta file location. 2. Ensure it can save last 60 snapshot days. 3. Allow bindable values on how to save snapshot status in file/datastore. Default implementation stores in a file on the local instance. 4. Non-backward compatible. The previous backup file gets overwritten with new values(null) during the upgrade process.
Default behavior to look for HOUR i.e. the flush interval. If the flush interval is not set, it is considered OFF (default backward compatible behavior). Similar behavior for CRON.
…tflix#574) * Bug fix: resource leak (Too many open files) while executing Cassandra monitor.
Remove guava dependency in NewTokenRetriever.
…y Cassandra during compaction. (Netflix#579) * Allow configuration of the size of large partitions that get logged by Cassandra during compaction. * Make DSE Audit log tuning bindable with default way as YAML (since DSE 4.x).
Make sudo usage to start C* configurable.
Adding C* logs directory location to configuration
Fixing LogsDir and sudo stop C* issues
* JVM Options Tuning for Cassandra 3.x: Cassandra 3.x added a new way to configure heap sizes and pass other JVM parameters (via jvm.options). Priam now supports configuring common options like heap setting and choosing Garbage Collection type (G1GC/CMS) natively. Default being CMS. It logs jvm.options after tuning them.
update javadoc
Autostart cassandra 311
update to gradle 4.4
That thread runs every 10s, so it can race with the stop API. Just always go through start.
Fix bug in autostart shouldCassandraBeAlive logic
Letting backup status location be variable
excluding module with duplicate slf4j binding
Shutting down quartz
Running both sdb clients in the same region
This is a bit easier to understand and gives us the desired behaviour of not autostarting until a rate interval _after_ the first start.
Just use timestamps for autostart (3.11)
… means successful backup
Eliminate assumption that existence of an element in a data structure means successful backup
…data Isolating instance metadata calls
Enabling auth on jmx port
update dependency
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.
Addressing issues that I found while trying to deploy Priam, including #666 #667 and #668