blob: 615f05a9336affb173b0411a9578f2a7426ea519 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.accumulo.test;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import java.security.SecureRandom;
import java.util.ArrayList;
import java.util.Random;
import java.util.concurrent.Callable;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;
import java.util.concurrent.TimeUnit;
import org.apache.accumulo.core.client.Accumulo;
import org.apache.accumulo.core.client.AccumuloClient;
import org.apache.accumulo.core.clientImpl.Namespace;
import org.apache.accumulo.core.conf.AccumuloConfiguration;
import org.apache.accumulo.core.conf.DefaultConfiguration;
import org.apache.accumulo.core.conf.Property;
import org.apache.accumulo.core.data.TableId;
import org.apache.accumulo.harness.AccumuloClusterHarness;
import org.apache.accumulo.server.ServerContext;
import org.apache.accumulo.server.conf.NamespaceConfiguration;
import org.apache.accumulo.server.conf.TableConfiguration;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class TableConfigurationUpdateIT extends AccumuloClusterHarness {
private static final Logger log = LoggerFactory.getLogger(TableConfigurationUpdateIT.class);
@Override
public int defaultTimeoutSeconds() {
return 120;
}
@Test
public void test() throws Exception {
try (AccumuloClient client = Accumulo.newClient().from(getClientProps()).build()) {
ServerContext context = getCluster().getServerContext();
String table = getUniqueNames(1)[0];
client.tableOperations().create(table);
final NamespaceConfiguration defaultConf = new NamespaceConfiguration(Namespace.DEFAULT.id(),
context, DefaultConfiguration.getInstance());
// Cache invalidates 25% of the time
int randomMax = 4;
// Number of threads
int numThreads = 2;
// Number of iterations per thread
int iterations = 100000;
AccumuloConfiguration tableConf =
new TableConfiguration(context, TableId.of(table), defaultConf);
long start = System.currentTimeMillis();
ExecutorService svc = Executors.newFixedThreadPool(numThreads);
CountDownLatch countDown = new CountDownLatch(numThreads);
ArrayList<Future<Exception>> futures = new ArrayList<>(numThreads);
for (int i = 0; i < numThreads; i++) {
futures.add(svc.submit(new TableConfRunner(randomMax, iterations, tableConf, countDown)));
}
svc.shutdown();
assertTrue(svc.awaitTermination(60, TimeUnit.MINUTES));
for (Future<Exception> fut : futures) {
Exception e = fut.get();
if (e != null) {
fail("Thread failed with exception " + e);
}
}
long end = System.currentTimeMillis();
log.debug("{} with {} iterations and {} threads and cache invalidates {}% took {} second(s)",
tableConf, iterations, numThreads, ((1. / randomMax) * 100.), (end - start) / 1000);
}
}
public static class TableConfRunner implements Callable<Exception> {
private static final Property prop = Property.TABLE_SPLIT_THRESHOLD;
private AccumuloConfiguration tableConf;
private CountDownLatch countDown;
private int iterations, randMax;
public TableConfRunner(int randMax, int iterations, AccumuloConfiguration tableConf,
CountDownLatch countDown) {
this.randMax = randMax;
this.iterations = iterations;
this.tableConf = tableConf;
this.countDown = countDown;
}
@Override
public Exception call() {
Random r = new SecureRandom();
countDown.countDown();
try {
countDown.await();
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
return e;
}
String t = Thread.currentThread().getName() + " ";
try {
for (int i = 0; i < iterations; i++) {
// if (i % 10000 == 0) {
// log.info(t + " " + i);
// }
int choice = r.nextInt(randMax);
if (choice < 1) {
tableConf.invalidateCache();
} else {
tableConf.get(prop);
}
}
} catch (Exception e) {
log.error(t, e);
return e;
}
return null;
}
}
}