blob: 8fa1c99b0fef4d31818b9b4909624ca7de896d34 [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.examples.client;
import java.util.Random;
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.TableExistsException;
import org.apache.accumulo.core.client.TableNotFoundException;
import org.apache.accumulo.core.data.Mutation;
import org.apache.accumulo.core.data.Value;
import org.apache.accumulo.examples.cli.ClientOpts;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Simple example for writing random data in sequential order to Accumulo.
*/
public class SequentialBatchWriter {
private static final Logger log = LoggerFactory.getLogger(SequentialBatchWriter.class);
public static Value createValue(long rowId) {
Random r = new Random(rowId);
byte value[] = new byte[50];
r.nextBytes(value);
// transform to printable chars
for (int j = 0; j < value.length; j++) {
value[j] = (byte) (((0xff & value[j]) % 92) + ' ');
}
return new Value(value);
}
/**
* Writes 1000 entries to Accumulo using a {@link BatchWriter}. The rows of the entries will be
* sequential starting from 0. The column families will be "foo" and column qualifiers will be
* "1". The values will be random 50 byte arrays.
*/
public static void main(String[] args)
throws AccumuloException, AccumuloSecurityException, TableNotFoundException {
ClientOpts opts = new ClientOpts();
opts.parseArgs(SequentialBatchWriter.class.getName(), args);
try (AccumuloClient client = Accumulo.newClient().from(opts.getClientPropsPath()).build()) {
try {
client.tableOperations().create("batch");
} catch (TableExistsException e) {
// ignore
}
try (BatchWriter bw = client.createBatchWriter("batch")) {
for (int i = 0; i < 10000; i++) {
Mutation m = new Mutation(String.format("row_%010d", i));
// create a random value that is a function of row id for verification purposes
m.put("foo", "1", createValue(i));
bw.addMutation(m);
if (i % 1000 == 0) {
log.trace("wrote {} entries", i);
}
}
}
}
}
}