Skip to content

Commit

Permalink
merge main into elasticity (#283)
Browse files Browse the repository at this point in the history
  • Loading branch information
DomGarguilo authored Oct 7, 2024
1 parent ce2fb3a commit 77643ec
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,8 @@ compactor:
# NUM_SSERVERS is set then it will override sservers_per_host.
#
tservers_per_host: 1
sservers_per_host: 1

sservers_per_host:
- default: 1
compactors_per_host:
- q1: 1
- q2: 1
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ else
git clone ${accumulo_testing_repo} accumulo-testing-repo
cd accumulo-testing-repo
git checkout ${accumulo_testing_branch_name}
${software_root}/apache-maven/apache-maven-${maven_version}/bin/mvn -ntp clean package -DskipTests -DskipITs
${software_root}/apache-maven/apache-maven-${maven_version}/bin/mvn -ntp clean package -DskipTests -DskipITs -Daccumulo.version=${accumulo_version}
fi

#
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,9 @@ private static Map<String,String> getProps(ContinuousEnv env, String propType) {
String[] propArray = env.getTestProperty(propType).split(" ");
Map<String,String> propMap = new HashMap<>();
for (String prop : propArray) {
if (prop.isBlank()) {
continue;
}
log.debug("prop: {}", prop);
String[] kv = prop.split("=");
propMap.put(kv[0], kv[1]);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ static Setting s(Property property, long min, long max) {
final Setting[] tableSettings = {
s(Property.TABLE_MAJC_RATIO, 1, 10),
s(Property.TABLE_SPLIT_THRESHOLD, 10 * 1024, 10L * 1024 * 1024 * 1024),
s(Property.TABLE_MINC_COMPACT_IDLETIME, 100, 100 * 60 * 60 * 1000L),
s(Property.TABLE_SCAN_MAXMEM, 10 * 1024, 10 * 1024 * 1024),
s(Property.TABLE_FILE_COMPRESSED_BLOCK_SIZE, 10 * 1024, 10 * 1024 * 1024L),
s(Property.TABLE_FILE_COMPRESSED_BLOCK_SIZE_INDEX, 10 * 1024, 10 * 1024 * 1024L),
Expand Down

0 comments on commit 77643ec

Please sign in to comment.