com.yelp.nrtsearch.server.search.GlobalOrdinalLookup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of server Show documentation
Show all versions of server Show documentation
GRPC lucene server using near-real-time replication
/*
* Copyright 2020 Yelp Inc.
*
* Licensed 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 com.yelp.nrtsearch.server.search;
import java.io.IOException;
import org.apache.lucene.index.IndexReader;
import org.apache.lucene.index.MultiDocValues;
import org.apache.lucene.index.MultiDocValues.MultiSortedDocValues;
import org.apache.lucene.index.MultiDocValues.MultiSortedSetDocValues;
import org.apache.lucene.index.SortedDocValues;
import org.apache.lucene.index.SortedSetDocValues;
import org.apache.lucene.util.LongValues;
/**
* Class to manage global ordinal lookup operations. Provides lookup to convert segment ordinals to
* global ordinals, and to convert global ordinals to term strings.
*/
public abstract class GlobalOrdinalLookup {
static final LongValues IDENTITY_MAPPING = new IdentityMapping();
/**
* Get segment mapping of local to global ordinals.
*
* @param segmentIndex index of segment in {@link IndexReader} leaf list
*/
public abstract LongValues getSegmentMapping(int segmentIndex);
/**
* Look up term value for a given global ordinal.
*
* @param ord global ordinal
* @throws IOException on error loading term value
*/
public abstract String lookupGlobalOrdinal(long ord) throws IOException;
/** Get the total number of global ordinals. */
public abstract long getNumOrdinals();
/** Implementation for field using {@link SortedDocValues}. */
public static class SortedLookup extends GlobalOrdinalLookup {
private final SortedDocValues sortedDocValues;
private final String field;
public SortedLookup(IndexReader reader, String field) throws IOException {
this.field = field;
sortedDocValues = MultiDocValues.getSortedValues(reader, field);
}
@Override
public LongValues getSegmentMapping(int segmentIndex) {
if (sortedDocValues == null || !(sortedDocValues instanceof MultiSortedDocValues)) {
return IDENTITY_MAPPING;
}
return ((MultiSortedDocValues) sortedDocValues).mapping.getGlobalOrds(segmentIndex);
}
@Override
public String lookupGlobalOrdinal(long ord) throws IOException {
if (sortedDocValues == null) {
throw new IllegalStateException("No ordinals for field: " + field);
}
return sortedDocValues.lookupOrd((int) ord).utf8ToString();
}
@Override
public long getNumOrdinals() {
return sortedDocValues == null ? 0 : sortedDocValues.getValueCount();
}
}
/** Implementation for field using {@link SortedSetDocValues}. */
public static class SortedSetLookup extends GlobalOrdinalLookup {
private final SortedSetDocValues sortedSetDocValues;
private final String field;
public SortedSetLookup(IndexReader reader, String field) throws IOException {
this.field = field;
sortedSetDocValues = MultiDocValues.getSortedSetValues(reader, field);
}
@Override
public LongValues getSegmentMapping(int segmentIndex) {
if (sortedSetDocValues == null || !(sortedSetDocValues instanceof MultiSortedSetDocValues)) {
return IDENTITY_MAPPING;
}
return ((MultiSortedSetDocValues) sortedSetDocValues).mapping.getGlobalOrds(segmentIndex);
}
@Override
public String lookupGlobalOrdinal(long ord) throws IOException {
if (sortedSetDocValues == null) {
throw new IllegalStateException("No ordinals for field: " + field);
}
return sortedSetDocValues.lookupOrd(ord).utf8ToString();
}
@Override
public long getNumOrdinals() {
return sortedSetDocValues == null ? 0 : sortedSetDocValues.getValueCount();
}
}
/** Mapping that maps an ordinal to itself. */
private static class IdentityMapping extends LongValues {
@Override
public long get(long index) {
return index;
}
}
}