Skip to content
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

set gc grace to zero #3513

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -39,9 +39,9 @@ public final class CassandraConstants {
static final String DEFAULT_RACK = "rack1";
static final String SIMPLE_RF_TEST_KEYSPACE = "__simple_rf_test_keyspace__";
static final String REPLICATION_FACTOR_OPTION = "replication_factor";
// 1 hour; AtlasDB only performs deletes with consistency ALL, so there is no need to ensure repairs
// Off; AtlasDB only performs deletes with consistency ALL, so there is no need to ensure repairs
// complete within gc_grace_seconds.
public static final int DEFAULT_GC_GRACE_SECONDS = 60 * 60;
public static final int DEFAULT_GC_GRACE_SECONDS = 0;

// this is only used to sanity check reads from a TFramedTransport;
// writes are sanity checked with server side frame size limits and are user-configurable,
Expand Down