blob: f02acbd428d2883082c27db35431e8d80a5e2868 [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.functional;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.fail;
import java.security.SecureRandom;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.Random;
import java.util.Set;
import java.util.TreeSet;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;
import org.apache.accumulo.core.client.Accumulo;
import org.apache.accumulo.core.client.AccumuloClient;
import org.apache.accumulo.core.client.AccumuloException;
import org.apache.accumulo.core.client.AccumuloSecurityException;
import org.apache.accumulo.core.client.BatchWriter;
import org.apache.accumulo.core.client.MutationsRejectedException;
import org.apache.accumulo.core.client.TableNotFoundException;
import org.apache.accumulo.core.client.TableOfflineException;
import org.apache.accumulo.core.client.admin.CompactionConfig;
import org.apache.accumulo.core.client.admin.NewTableConfiguration;
import org.apache.accumulo.core.clientImpl.ClientContext;
import org.apache.accumulo.core.data.Mutation;
import org.apache.accumulo.core.security.Authorizations;
import org.apache.accumulo.harness.AccumuloClusterHarness;
import org.apache.hadoop.io.Text;
import org.junit.Test;
public class ConcurrentDeleteTableIT extends AccumuloClusterHarness {
@Override
protected int defaultTimeoutSeconds() {
return 7 * 60;
}
@Test
public void testConcurrentDeleteTablesOps() throws Exception {
try (AccumuloClient c = Accumulo.newClient().from(getClientProps()).build()) {
String[] tables = getUniqueNames(2);
TreeSet<Text> splits = createSplits();
NewTableConfiguration ntc = new NewTableConfiguration().withSplits(splits);
ExecutorService es = Executors.newFixedThreadPool(20);
int count = 0;
for (final String table : tables) {
c.tableOperations().create(table, ntc);
writeData(c, table);
if (count == 1) {
c.tableOperations().flush(table, null, null, true);
}
count++;
int numDeleteOps = 20;
final CountDownLatch cdl = new CountDownLatch(numDeleteOps);
List<Future<?>> futures = new ArrayList<>();
for (int i = 0; i < numDeleteOps; i++) {
Future<?> future = es.submit(new Runnable() {
@Override
public void run() {
try {
cdl.countDown();
cdl.await();
c.tableOperations().delete(table);
} catch (TableNotFoundException e) {
// expected
} catch (InterruptedException | AccumuloException | AccumuloSecurityException e) {
throw new RuntimeException(e);
}
}
});
futures.add(future);
}
for (Future<?> future : futures) {
future.get();
}
try {
c.createScanner(table, Authorizations.EMPTY);
fail("Expected table " + table + " to be gone.");
} catch (TableNotFoundException tnfe) {
// expected
}
FunctionalTestUtils.assertNoDanglingFateLocks((ClientContext) c, getCluster());
}
es.shutdown();
}
}
private TreeSet<Text> createSplits() {
TreeSet<Text> splits = new TreeSet<>();
for (int i = 0; i < 1000; i++) {
Text split = new Text(String.format("%09x", i * 100000));
splits.add(split);
}
return splits;
}
private abstract static class DelayedTableOp implements Runnable {
private CountDownLatch cdl;
DelayedTableOp(CountDownLatch cdl) {
this.cdl = cdl;
}
@Override
public void run() {
try {
cdl.countDown();
cdl.await();
Thread.sleep(10);
doTableOp();
} catch (TableNotFoundException | TableOfflineException e) {
// expected
} catch (RuntimeException e) {
throw e;
} catch (Exception e) {
throw new RuntimeException(e);
}
}
protected abstract void doTableOp() throws Exception;
}
@Test
public void testConcurrentFateOpsWithDelete() throws Exception {
try (AccumuloClient c = Accumulo.newClient().from(getClientProps()).build()) {
String[] tables = getUniqueNames(2);
TreeSet<Text> splits = createSplits();
NewTableConfiguration ntc = new NewTableConfiguration().withSplits(splits);
int numOperations = 8;
ExecutorService es = Executors.newFixedThreadPool(numOperations);
int count = 0;
for (final String table : tables) {
c.tableOperations().create(table, ntc);
writeData(c, table);
if (count == 1) {
c.tableOperations().flush(table, null, null, true);
}
count++;
// increment this for each test
final CountDownLatch cdl = new CountDownLatch(numOperations);
List<Future<?>> futures = new ArrayList<>();
futures.add(es.submit(new Runnable() {
@Override
public void run() {
try {
cdl.countDown();
cdl.await();
c.tableOperations().delete(table);
} catch (TableNotFoundException | TableOfflineException e) {
// expected
} catch (InterruptedException | AccumuloException | AccumuloSecurityException e) {
throw new RuntimeException(e);
}
}
}));
futures.add(es.submit(new DelayedTableOp(cdl) {
@Override
protected void doTableOp() throws Exception {
c.tableOperations().compact(table, new CompactionConfig());
}
}));
futures.add(es.submit(new DelayedTableOp(cdl) {
@Override
protected void doTableOp() throws Exception {
c.tableOperations().merge(table, null, null);
}
}));
futures.add(es.submit(new DelayedTableOp(cdl) {
@Override
protected void doTableOp() throws Exception {
Map<String,String> m = Collections.emptyMap();
Set<String> s = Collections.emptySet();
c.tableOperations().clone(table, table + "_clone", true, m, s);
}
}));
futures.add(es.submit(new DelayedTableOp(cdl) {
@Override
protected void doTableOp() throws Exception {
c.tableOperations().deleteRows(table, null, null);
}
}));
futures.add(es.submit(new DelayedTableOp(cdl) {
@Override
protected void doTableOp() throws Exception {
c.tableOperations().cancelCompaction(table);
}
}));
futures.add(es.submit(new DelayedTableOp(cdl) {
@Override
protected void doTableOp() throws Exception {
c.tableOperations().rename(table, table + "_renamed");
}
}));
futures.add(es.submit(new DelayedTableOp(cdl) {
@Override
protected void doTableOp() throws Exception {
c.tableOperations().offline(table);
}
}));
assertEquals(numOperations, futures.size());
for (Future<?> future : futures) {
future.get();
}
try {
c.createScanner(table, Authorizations.EMPTY);
fail("Expected table " + table + " to be gone.");
} catch (TableNotFoundException tnfe) {
// expected
}
FunctionalTestUtils.assertNoDanglingFateLocks((ClientContext) c, getCluster());
}
es.shutdown();
}
}
private void writeData(AccumuloClient c, String table)
throws TableNotFoundException, MutationsRejectedException {
try (BatchWriter bw = c.createBatchWriter(table)) {
Random rand = new SecureRandom();
for (int i = 0; i < 1000; i++) {
Mutation m = new Mutation(String.format("%09x", rand.nextInt(100000 * 1000)));
m.put("m", "order", "" + i);
bw.addMutation(m);
}
}
}
}