blob: 139d9cdb411eb473f7ca89c05319c98f817e6767 [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.shard;
import java.util.Map.Entry;
import org.apache.accumulo.core.client.Accumulo;
import org.apache.accumulo.core.client.AccumuloClient;
import org.apache.accumulo.core.client.BatchWriter;
import org.apache.accumulo.core.client.Scanner;
import org.apache.accumulo.core.data.Key;
import org.apache.accumulo.core.data.Mutation;
import org.apache.accumulo.core.data.Value;
import org.apache.accumulo.core.security.Authorizations;
import org.apache.accumulo.examples.cli.ClientOpts;
import org.apache.hadoop.io.Text;
import com.beust.jcommander.Parameter;
/**
* The program reads an accumulo table written by {@link Index} and writes out to another table. It
* writes out a mapping of documents to terms. The document to term mapping is used by
* {@link ContinuousQuery}.
*/
public class Reverse {
static class Opts extends ClientOpts {
@Parameter(names = "--shardTable", description = "name of the shard table")
String shardTable;
@Parameter(names = "--doc2Term", description = "name of the doc2Term table")
String doc2TermTable;
}
public static void main(String[] args) throws Exception {
Opts opts = new Opts();
opts.parseArgs(Reverse.class.getName(), args);
try (AccumuloClient client = Accumulo.newClient().from(opts.getClientPropsPath()).build();
Scanner scanner = client.createScanner(opts.shardTable, Authorizations.EMPTY);
BatchWriter bw = client.createBatchWriter(opts.doc2TermTable)) {
for (Entry<Key,Value> entry : scanner) {
Key key = entry.getKey();
Mutation m = new Mutation(key.getColumnQualifier());
m.put(key.getColumnFamily(), new Text(), new Value(new byte[0]));
bw.addMutation(m);
}
}
}
}