use of org.solbase.indexer.writable.DocumentPutWritable in project Solbase by Photobucket.
the class SolbaseIndexReducer method reduce.
public void reduce(BytesWritable key, Iterable<MapWritable> values, Context context) throws IOException, InterruptedException {
byte[] _key = null;
int counter = 0;
int dupCount = 0;
// since key is checksum, we should do dedupping here
// TODO: for now, i'm only retrieving one and ignoring rest
boolean first = true;
for (MapWritable writable : values) {
if (first) {
first = false;
Iterator<Writable> itr = writable.keySet().iterator();
while (itr.hasNext()) {
BytesWritable wrtKey = (BytesWritable) itr.next();
Writable wrt = writable.get(wrtKey);
if (wrt instanceof DocumentPutWritable) {
DocumentPutWritable docBytes = (DocumentPutWritable) wrt;
String globalId = docBytes.getGlobalId();
int docId = docBytes.getDocId();
Put mapping = new Put(Bytes.toBytes(globalId));
mapping.add(Bytes.toBytes("docId"), Bytes.toBytes(""), Bytes.toBytes(docId));
context.write(new ImmutableBytesWritable(SolbaseUtil.docKeyIdMapTable), mapping);
context.getCounter(Counters.TOTAL_DOC_KEY_ID_MAP).increment(1);
List<String> fieldKeys = docBytes.getFieldKeys();
List<byte[]> fieldValues = docBytes.getFieldValues();
List<Term> allTerms = docBytes.getAllTerms();
byte[] md5DocId = SolbaseUtil.randomize(docId);
Put documentPut = new Put(md5DocId);
// Store each field as a column under this docId
for (int i = 0; i < fieldKeys.size(); i++) {
String fieldKey = fieldKeys.get(i);
byte[] fieldValue = fieldValues.get(i);
documentPut.add(Bytes.toBytes("field"), Bytes.toBytes(fieldKey), fieldValue);
}
// Finally, Store meta-data so we can delete this
// document
documentPut.add(Bytes.toBytes("allTerms"), Bytes.toBytes("allTerms"), SolbaseUtil.toBytes(allTerms).array());
context.write(new ImmutableBytesWritable(SolbaseUtil.docTable), documentPut);
context.getCounter(Counters.TOTAL_DOCS).increment(1);
counter++;
} else if (wrt instanceof TermDocMetadataWritable) {
// gather all of docs given field key (field/value)
TermDocMetadataWritable metadata = (TermDocMetadataWritable) wrt;
// convert key to byte array
// byte[] fieldTermKey = key.getBytes();
byte[] termValue = metadata.getTermDocMetadata();
_key = metadata.getFieldTermKey();
int docId = metadata.getDocId();
Put put = null;
switch(TermDocMetadataLoader.storageType) {
case KEY_ONLY:
{
put = new Put(Bytes.add(Bytes.add(_key, SolbaseUtil.delimiter, Bytes.toBytes(docId)), termValue));
put.add(SolbaseUtil.termVectorDocColumnFamilyName, Bytes.toBytes(""), Bytes.toBytes(""));
}
break;
case WIDE_ROW:
int chunkId = TermDocMetadataLoader.getChunkId(docId);
put = new Put(Bytes.add(_key, SolbaseUtil.delimiter, Bytes.toBytes(chunkId)));
put.add(SolbaseUtil.termVectorDocColumnFamilyName, Bytes.toBytes(docId), termValue);
break;
case NARROW_ROW:
default:
{
put = new Put(Bytes.add(_key, SolbaseUtil.delimiter, Bytes.toBytes(docId)));
put.add(SolbaseUtil.termVectorDocColumnFamilyName, Bytes.toBytes(""), termValue);
}
}
context.write(new ImmutableBytesWritable(SolbaseUtil.termVectorTable), put);
context.getCounter(Counters.TOTAL_TERM_VECTORS).increment(1);
counter++;
} else {
System.out.println("else: " + writable.getClass());
context.getCounter(Counters.TOTAL_INVALID).increment(1);
}
}
} else {
dupCount++;
}
}
context.getCounter(Counters.DUPLICATE_ROWS).increment(dupCount);
}
use of org.solbase.indexer.writable.DocumentPutWritable in project Solbase by Photobucket.
the class SolbaseInitialIndexMapper method map.
protected void map(ImmutableBytesWritable row, Result values, Context context) throws IOException {
context.getCounter(Counters.TOTAL_ROWS).increment(1);
context.setStatus(context.getCounter(Counters.TOTAL_ROWS) + "");
// global id is user_media row key
String globalId = Bytes.toString(row.get());
Document doc = indexerUtil.createLuceneDocument(Bytes.toString(row.get()), values, context);
byte[] checksum = values.getValue(Bytes.toBytes("meta"), Bytes.toBytes("checksum"));
if (doc == null) {
// validation must have failed if it returned null
return;
}
// exists already
if (this.idCounter > (SolbaseUtil.UNIQ_ID_CHUNK - 1) || docId == null) {
docId = SolbaseUtil.generateUniqId();
this.idCounter = 0;
} else {
docId--;
}
// for us, docId is going to be global uniq id, meaning we are tied to 2 billion docs limitation
// it doesn't really hurt to add this field to doc. and it only really matters when sharding comes in, trying to fetch docs by their docid
indexerUtil.addFieldToDoc(doc, "docId", docId + "");
// incrementing chunking sequence (lucene doc id)
this.idCounter++;
try {
ParsedDoc parsedDoc = indexerUtil.getIndexWriter().parseDoc(doc, indexerUtil.getAnalyzer(), "", docId, indexerUtil.getSortFieldNames());
List<TermDocMetadata> metadatas = parsedDoc.getTermDocMetadatas();
MapWritable mapWritable = new MapWritable();
DocumentPutWritable docWritable = new DocumentPutWritable(parsedDoc.getFieldsMap(), parsedDoc.getAllTerms(), docId, globalId);
mapWritable.put(new BytesWritable(Bytes.toBytes("doc")), docWritable);
for (TermDocMetadata metadata : metadatas) {
byte[] key = metadata.getFieldTermKey();
ByteBuffer buf = metadata.serialize();
TermDocMetadataWritable writable = new TermDocMetadataWritable(docId, Bytes.toBytes(buf), key);
mapWritable.put(new BytesWritable(key), writable);
}
context.write(new BytesWritable(checksum), mapWritable);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
Aggregations