| Chunk |
|---|
| Conflicting content |
|---|
private long bdbCheckpointMs;
private boolean bdbOneEnvPerStore;
private int bdbCleanerMinFileUtilization;
<<<<<<< HEAD
=======
private int bdbCleanerMinUtilization;
>>>>>>> 48f275c71ec589e5e2186be8c015023e0343d8fc
private String mysqlUsername;
private String mysqlPassword; |
| Solution content |
|---|
private long bdbCheckpointMs;
private boolean bdbOneEnvPerStore;
private int bdbCleanerMinFileUtilization;
private int bdbCleanerMinUtilization;
private String mysqlUsername;
private String mysqlPassword; |
| File |
|---|
| VoldemortConfig.java |
| Developer's decision |
|---|
| Version 2 |
| Kind of conflict |
|---|
| Attribute |
| Chunk |
|---|
| Conflicting content |
|---|
this.bdbCheckpointMs = props.getLong("bdb.checkpoint.interval.ms", 30 * Time.MS_PER_SECOND);
this.bdbSortedDuplicates = props.getBoolean("bdb.enable.sorted.duplicates", true);
this.bdbOneEnvPerStore = props.getBoolean("bdb.one.env.per.store", false);
<<<<<<< HEAD
this.bdbCleanerMinFileUtilization = props.getInt("bdb.cleaner.min.file.utilization", 5);
=======
setBdbCleanerMinFileUtilization(props.getInt("bdb.cleaner.minFileUtilization", 5));
setBdbCleanerMinUtilization(props.getInt("bdb.cleaner.minUtilization", 50));
>>>>>>> 48f275c71ec589e5e2186be8c015023e0343d8fc
this.readOnlyFileWaitTimeoutMs = props.getLong("readonly.file.wait.timeout.ms", 4000L);
this.readOnlyBackups = props.getInt("readonly.backups", 1); |
| Solution content |
|---|
this.bdbCheckpointMs = props.getLong("bdb.checkpoint.interval.ms", 30 * Time.MS_PER_SECOND);
this.bdbSortedDuplicates = props.getBoolean("bdb.enable.sorted.duplicates", true);
this.bdbOneEnvPerStore = props.getBoolean("bdb.one.env.per.store", false);
this.bdbCleanerMinFileUtilization = props.getInt("bdb.cleaner.min.file.utilization", 5);
this.bdbCleanerMinFileUtilization = props.getInt("bdb.cleaner.minFileUtilization", 5);
this.bdbCleanerMinUtilization = props.getInt("bdb.cleaner.minUtilization", 50);
this.readOnlyFileWaitTimeoutMs = props.getLong("readonly.file.wait.timeout.ms", 4000L);
this.readOnlyBackups = props.getInt("readonly.backups", 1); |
| File |
|---|
| VoldemortConfig.java |
| Developer's decision |
|---|
| Manual |
| Kind of conflict |
|---|
| Attribute |
| Method invocation |
| Chunk |
|---|
| Conflicting content |
|---|
* value, irrespective of total utilization.
*
*
|
| Solution content |
|---|
* value, irrespective of total utilization.
*
*
|
| File |
|---|
| VoldemortConfig.java |
| Developer's decision |
|---|
| Manual |
| Kind of conflict |
|---|
| Comment |
| Chunk |
|---|
| Conflicting content |
|---|
}
/**
<<<<<<< HEAD
=======
* The cleaner will keep the total disk space utilization percentage above
* this value.
*
*
|
| Solution content |
|---|
}
/**
* <<<<<<< HEAD:src/java/voldemort/server/VoldemortConfig.java =======
* The cleaner will keep the total disk space utilization percentage above
* this value.
*
*
|
| File |
|---|
| VoldemortConfig.java |
| Developer's decision |
|---|
| Manual |
| Kind of conflict |
|---|
| Comment |
| Method declaration |