Skip to content

Commit

Permalink
ACCUMULO-4510 Moved remaining external test code from Accumulo
Browse files Browse the repository at this point in the history
  • Loading branch information
mikewalch committed Jan 25, 2017
1 parent fc3ddfc commit 0d97273
Show file tree
Hide file tree
Showing 117 changed files with 9,603 additions and 2 deletions.
Expand Up @@ -177,7 +177,7 @@ private static long flush(BatchWriter bw, long count, final int flushInterval, l
return lastFlushTime;
}

static Mutation genMutation(long rowLong, int cfInt, int cqInt, ColumnVisibility cv,
public static Mutation genMutation(long rowLong, int cfInt, int cqInt, ColumnVisibility cv,
byte[] ingestInstanceId, long count, byte[] prevRow,
boolean checksum) {
// Adler32 is supposed to be faster, but according to wikipedia is not good for small data.... so used CRC32 instead
Expand All @@ -202,7 +202,7 @@ static Mutation genMutation(long rowLong, int cfInt, int cqInt, ColumnVisibility
return m;
}

static long genLong(long min, long max, Random r) {
public static long genLong(long min, long max, Random r) {
return ((r.nextLong() & 0x7fffffffffffffffL) % (max - min)) + min;
}

Expand Down
@@ -0,0 +1,68 @@
/*
* 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.testing.core.ingest;

import static java.nio.charset.StandardCharsets.UTF_8;

import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

import org.apache.accumulo.core.client.AccumuloException;
import org.apache.accumulo.core.client.AccumuloSecurityException;
import org.apache.accumulo.core.client.TableNotFoundException;
import org.apache.accumulo.core.client.security.tokens.PasswordToken;
import org.apache.accumulo.core.util.CachedConfiguration;
import org.apache.accumulo.server.cli.ClientOnRequiredTable;
import org.apache.accumulo.server.client.HdfsZooInstance;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;

import com.beust.jcommander.Parameter;

public class BulkImportDirectory {
static class Opts extends ClientOnRequiredTable {
@Parameter(names = {"-s", "--source"}, description = "directory to import from")
String source = null;
@Parameter(names = {"-f", "--failures"}, description = "directory to copy failures into: will be deleted before the bulk import")
String failures = null;
@Parameter(description = "<username> <password> <tablename> <sourcedir> <failuredir>")
List<String> args = new ArrayList<>();
}

public static void main(String[] args) throws IOException, AccumuloException, AccumuloSecurityException, TableNotFoundException {
final FileSystem fs = FileSystem.get(CachedConfiguration.getInstance());
Opts opts = new Opts();
if (args.length == 5) {
System.err.println("Deprecated syntax for BulkImportDirectory, please use the new style (see --help)");
final String user = args[0];
final byte[] pass = args[1].getBytes(UTF_8);
final String tableName = args[2];
final String dir = args[3];
final String failureDir = args[4];
final Path failureDirPath = new Path(failureDir);
fs.delete(failureDirPath, true);
fs.mkdirs(failureDirPath);
HdfsZooInstance.getInstance().getConnector(user, new PasswordToken(pass)).tableOperations().importDirectory(tableName, dir, failureDir, false);
} else {
opts.parseArgs(BulkImportDirectory.class.getName(), args);
fs.delete(new Path(opts.failures), true);
fs.mkdirs(new Path(opts.failures));
opts.getConnector().tableOperations().importDirectory(opts.getTableName(), opts.source, opts.failures, false);
}
}
}

0 comments on commit 0d97273

Please sign in to comment.