use of org.molgenis.data.index.exception.UnknownIndexException in project molgenis by molgenis.
the class ClientFacade method getCount.
private long getCount(QueryBuilder query, List<Index> indexes) {
if (LOG.isTraceEnabled()) {
if (query != null) {
LOG.trace("Counting docs in index(es) '{}' with query '{}' ...", toString(indexes), query);
} else {
LOG.trace("Counting docs in index(es) '{}' ...", toString(indexes));
}
}
SearchRequestBuilder searchRequest = createSearchRequest(query, null, 0, null, null, indexes);
SearchResponse searchResponse;
try {
searchResponse = searchRequest.get();
} catch (ResourceNotFoundException e) {
LOG.error("", e);
throw new UnknownIndexException(toIndexNames(indexes));
} catch (ElasticsearchException e) {
LOG.error("", e);
throw new IndexException(format("Error counting docs in index(es) '%s'.", toString(indexes)));
}
if (searchResponse.getFailedShards() > 0) {
LOG.error(stream(searchResponse.getShardFailures()).map(ShardSearchFailure::toString).collect(joining("\n")));
throw new IndexException(format("Error counting docs in index(es) '%s'.", toString(indexes)));
}
if (searchResponse.isTimedOut()) {
throw new IndexException(format("Timeout while counting docs in index(es) '%s'.", toString(indexes)));
}
long totalHits = searchResponse.getHits().getTotalHits();
if (LOG.isDebugEnabled()) {
if (query != null) {
LOG.debug("Counted {} docs in index(es) '{}' with query '{}' in {}ms.", totalHits, toString(indexes), query, searchResponse.getTookInMillis());
} else {
LOG.debug("Counted {} docs in index(es) '{}' in {}ms.", totalHits, toString(indexes), searchResponse.getTookInMillis());
}
}
return totalHits;
}
use of org.molgenis.data.index.exception.UnknownIndexException in project molgenis by molgenis.
the class ClientFacade method aggregate.
private Aggregations aggregate(List<AggregationBuilder> aggregations, QueryBuilder query, List<Index> indexes) {
if (LOG.isTraceEnabled()) {
if (query != null) {
LOG.trace("Aggregating docs in index(es) '{}' with aggregations '{}' and query '{}' ...", toString(indexes), aggregations, query);
} else {
LOG.trace("Aggregating docs in index(es) '{}' with aggregations '{}' ...", toString(indexes), aggregations);
}
}
SearchRequestBuilder searchRequest = createSearchRequest(query, null, 0, null, aggregations, indexes);
SearchResponse searchResponse;
try {
searchResponse = searchRequest.get();
} catch (ResourceNotFoundException e) {
LOG.error("", e);
throw new UnknownIndexException(toIndexNames(indexes));
} catch (ElasticsearchException e) {
LOG.error("", e);
throw new IndexException(format("Error aggregating docs in index(es) '%s'.", toString(indexes)));
}
if (searchResponse.getFailedShards() > 0) {
LOG.error(stream(searchResponse.getShardFailures()).map(ShardSearchFailure::toString).collect(joining("\n")));
throw new IndexException(format("Error aggregating docs in index(es) '%s'.", toString(indexes)));
}
if (searchResponse.isTimedOut()) {
throw new IndexException(format("Timeout aggregating docs in index(es) '%s'.", toString(indexes)));
}
if (LOG.isDebugEnabled()) {
if (query != null) {
LOG.debug("Aggregated docs in index(es) '{}' with aggregations '{}' and query '{}' in {}ms.", toString(indexes), aggregations, query, searchResponse.getTookInMillis());
} else {
LOG.debug("Aggregated docs in index(es) '{}' with aggregations '{}' in {}ms.", toString(indexes), aggregations, searchResponse.getTookInMillis());
}
}
return searchResponse.getAggregations();
}
use of org.molgenis.data.index.exception.UnknownIndexException in project molgenis by molgenis.
the class ClientFacade method index.
public void index(Index index, Document document) {
if (LOG.isTraceEnabled()) {
LOG.trace("Indexing doc with id '{}' in index '{}' ...", document.getId(), index.getName());
}
String indexName = index.getName();
String documentId = document.getId();
XContentBuilder source = document.getContent();
IndexRequestBuilder indexRequest = client.prepareIndex().setIndex(indexName).setType(indexName).setId(documentId).setSource(source);
IndexResponse indexResponse;
try {
indexResponse = indexRequest.get();
} catch (ResourceNotFoundException e) {
LOG.error("", e);
throw new UnknownIndexException(index.getName());
} catch (ElasticsearchException e) {
LOG.debug("", e);
throw new IndexException(format("Error indexing doc with id '%s' in index '%s'.", documentId, indexName));
}
// TODO: Is it good enough if at least one shard succeeds? Shouldn't we at least log something if failures > 0?
if (indexResponse.getShardInfo().getSuccessful() == 0) {
LOG.error(Arrays.stream(indexResponse.getShardInfo().getFailures()).map(ReplicationResponse.ShardInfo.Failure::toString).collect(joining("\n")));
throw new IndexException(format("Error indexing doc with id '%s' in index '%s'.", documentId, indexName));
}
if (LOG.isDebugEnabled()) {
LOG.debug("Indexed doc with id '{}' in index '{}'.", documentId, indexName);
}
}
use of org.molgenis.data.index.exception.UnknownIndexException in project molgenis by molgenis.
the class IndexedRepositoryDecoratorTest method countUnknownIndexExceptionUnrecoverable.
@Test(expectedExceptions = MolgenisDataException.class, expectedExceptionsMessageRegExp = "Error executing query, index for entity type 'My entity type' with id 'entity' does not exist")
public void countUnknownIndexExceptionUnrecoverable() {
when(searchService.count(repositoryEntityType, unsupportedQuery)).thenThrow(new UnknownIndexException("msg"));
indexedRepositoryDecorator.count(unsupportedQuery);
}
use of org.molgenis.data.index.exception.UnknownIndexException in project molgenis by molgenis.
the class IndexedRepositoryDecoratorTest method findOneUnknownIndexExceptionUnrecoverable.
@Test(expectedExceptions = MolgenisDataException.class, expectedExceptionsMessageRegExp = "Error executing query, index for entity type 'My entity type' with id 'entity' does not exist")
public void findOneUnknownIndexExceptionUnrecoverable() {
when(searchService.searchOne(repositoryEntityType, unsupportedQuery)).thenThrow(new UnknownIndexException("msg"));
indexedRepositoryDecorator.findOne(unsupportedQuery);
}
Aggregations