public class ElasticsearchIndex extends AbstractSearchIndex
LuceneSail
Modifier and Type | Field and Description |
---|---|
static String |
DEFAULT_ANALYZER |
static String |
DEFAULT_DOCUMENT_TYPE |
static String |
DEFAULT_INDEX_NAME |
static String |
DOCUMENT_TYPE_KEY
Set the parameter "documentType=" to specify the document type to use.
|
static String |
ELASTICSEARCH_KEY_PREFIX |
static String |
GEOPOINT_FIELD_PREFIX |
static String |
GEOSHAPE_FIELD_PREFIX |
static String |
INDEX_NAME_KEY
Set the parameter "indexName=" to specify the index to use.
|
static String |
WAIT_FOR_ACTIVE_SHARDS_KEY
Set the parameter "waitForActiveShards=" to configure if
initialization should wait until
the specified number of shards to be active. |
static String |
WAIT_FOR_NODES_KEY
Set the parameter "waitForNodes=" to configure if
initialization should wait until
the specified number of nodes are available. |
static String |
WAIT_FOR_RELOCATING_SHARDS_KEY
Set the parameter "waitForRelocatingShards=" to configure if
initialization should wait until
the specified number of nodes are relocating. |
static String |
WAIT_FOR_STATUS_KEY
Set the parameter "waitForStatus=" to configure if
initialization should wait for a
particular health status. |
maxDocs, wktFields
Constructor and Description |
---|
ElasticsearchIndex() |
Modifier and Type | Method and Description |
---|---|
protected void |
addDocument(SearchDocument doc) |
void |
begin()
Begins a transaction.
|
void |
beginReading() |
void |
clear()
Clears the indexes.
|
void |
clearContexts(Resource... contexts)
This should be called from within a begin-commit-rollback block.
|
void |
commit()
Commits any changes done to the LuceneIndex since the last commit.
|
protected SearchDocument |
copyDocument(SearchDocument doc) |
protected com.google.common.base.Function<? super String,? extends com.spatial4j.core.context.SpatialContext> |
createSpatialContextMapper(Map<String,String> parameters) |
protected void |
deleteDocument(SearchDocument doc) |
void |
endReading() |
protected Iterable<? extends DocumentDistance> |
geoQuery(URI geoProperty,
com.spatial4j.core.shape.Point p,
URI units,
double distance,
String distanceVar,
Var contextVar) |
protected Iterable<? extends DocumentResult> |
geoRelationQuery(String relation,
URI geoProperty,
com.spatial4j.core.shape.Shape shape,
Var contextVar) |
String |
getClusterName() |
SearchDocument |
getDocument(Resource subject,
Resource context)
Returns a Document representing the specified Resource & Context
combination, or null when no such Document exists yet.
|
protected SearchDocument |
getDocument(String id)
Returns a Document representing the specified document ID (combination of
resource and context), or null when no such Document exists yet.
|
Iterable<? extends SearchDocument> |
getDocuments(Resource subject)
Returns a list of Documents representing the specified Resource (empty
when no such Document exists yet).
|
protected Iterable<? extends SearchDocument> |
getDocuments(String resourceId) |
String |
getIndexName() |
Map<String,Object> |
getMappings() |
static Set<String> |
getPropertyFields(Set<String> fields)
Filters the given list of fields, retaining all property fields.
|
protected com.spatial4j.core.context.SpatialContext |
getSpatialContext(String property) |
String[] |
getTypes() |
void |
initialize(Properties parameters) |
protected BulkUpdater |
newBulkUpdate() |
protected SearchDocument |
newDocument(String id,
String resourceId,
String context) |
protected SearchQuery |
parseQuery(String query,
URI propertyURI)
Deprecated.
|
protected Iterable<? extends DocumentScore> |
query(Resource subject,
String query,
URI propertyURI,
boolean highlight)
Parse the passed query.
|
void |
rollback() |
org.elasticsearch.search.SearchHits |
search(Resource resource,
org.elasticsearch.action.search.SearchRequestBuilder request,
org.elasticsearch.index.query.QueryBuilder query)
Evaluates the given query only for the given resource.
|
org.elasticsearch.search.SearchHits |
search(org.elasticsearch.action.search.SearchRequestBuilder request,
org.elasticsearch.index.query.QueryBuilder query)
Evaluates the given query and returns the results as a TopDocs instance.
|
void |
shutDown() |
protected void |
updateDocument(SearchDocument doc) |
accept, addDocuments, addRemoveStatements, addStatement, evaluate, evaluate, getResource, isGeoField, parseQueryShape, removeStatement
public static final String INDEX_NAME_KEY
public static final String DOCUMENT_TYPE_KEY
public static final String WAIT_FOR_STATUS_KEY
initialization
should wait for a
particular health status. The value can be one of "green" or "yellow".
Does not wait by default.public static final String WAIT_FOR_NODES_KEY
initialization
should wait until
the specified number of nodes are available. Does not wait by default.public static final String WAIT_FOR_ACTIVE_SHARDS_KEY
initialization
should wait until
the specified number of shards to be active. Does not wait by default.public static final String WAIT_FOR_RELOCATING_SHARDS_KEY
initialization
should wait until
the specified number of nodes are relocating. Does not wait by default.public static final String DEFAULT_INDEX_NAME
public static final String DEFAULT_DOCUMENT_TYPE
public static final String DEFAULT_ANALYZER
public static final String ELASTICSEARCH_KEY_PREFIX
public static final String GEOPOINT_FIELD_PREFIX
public static final String GEOSHAPE_FIELD_PREFIX
public String getClusterName()
public String getIndexName()
public String[] getTypes()
public void initialize(Properties parameters) throws Exception
initialize
in interface SearchIndex
initialize
in class AbstractSearchIndex
Exception
protected com.google.common.base.Function<? super String,? extends com.spatial4j.core.context.SpatialContext> createSpatialContextMapper(Map<String,String> parameters)
public Map<String,Object> getMappings() throws IOException
IOException
protected com.spatial4j.core.context.SpatialContext getSpatialContext(String property)
getSpatialContext
in class AbstractSearchIndex
public void shutDown() throws IOException
IOException
protected SearchDocument getDocument(String id) throws IOException
getDocument
in class AbstractSearchIndex
IOException
protected Iterable<? extends SearchDocument> getDocuments(String resourceId) throws IOException
getDocuments
in class AbstractSearchIndex
IOException
protected SearchDocument newDocument(String id, String resourceId, String context)
newDocument
in class AbstractSearchIndex
protected SearchDocument copyDocument(SearchDocument doc)
copyDocument
in class AbstractSearchIndex
protected void addDocument(SearchDocument doc) throws IOException
addDocument
in class AbstractSearchIndex
IOException
protected void updateDocument(SearchDocument doc) throws IOException
updateDocument
in class AbstractSearchIndex
IOException
protected void deleteDocument(SearchDocument doc) throws IOException
deleteDocument
in class AbstractSearchIndex
IOException
protected BulkUpdater newBulkUpdate()
newBulkUpdate
in class AbstractSearchIndex
public SearchDocument getDocument(Resource subject, Resource context) throws IOException
IOException
public Iterable<? extends SearchDocument> getDocuments(Resource subject) throws IOException
IOException
public static Set<String> getPropertyFields(Set<String> fields)
public void begin() throws IOException
SearchIndex
IOException
public void commit() throws IOException
SearchIndex
IOException
public void rollback() throws IOException
IOException
public void beginReading() throws IOException
IOException
public void endReading() throws IOException
IOException
@Deprecated protected SearchQuery parseQuery(String query, URI propertyURI) throws MalformedQueryException
parseQuery
in class AbstractSearchIndex
query
- stringParseException
- when the parsing brakesMalformedQueryException
protected Iterable<? extends DocumentScore> query(Resource subject, String query, URI propertyURI, boolean highlight) throws MalformedQueryException, IOException
query
in class AbstractSearchIndex
query
- stringParseException
- when the parsing brakesMalformedQueryException
IOException
public org.elasticsearch.search.SearchHits search(Resource resource, org.elasticsearch.action.search.SearchRequestBuilder request, org.elasticsearch.index.query.QueryBuilder query)
protected Iterable<? extends DocumentDistance> geoQuery(URI geoProperty, com.spatial4j.core.shape.Point p, URI units, double distance, String distanceVar, Var contextVar) throws MalformedQueryException, IOException
geoQuery
in class AbstractSearchIndex
MalformedQueryException
IOException
protected Iterable<? extends DocumentResult> geoRelationQuery(String relation, URI geoProperty, com.spatial4j.core.shape.Shape shape, Var contextVar) throws MalformedQueryException, IOException
geoRelationQuery
in class AbstractSearchIndex
MalformedQueryException
IOException
public org.elasticsearch.search.SearchHits search(org.elasticsearch.action.search.SearchRequestBuilder request, org.elasticsearch.index.query.QueryBuilder query)
public void clearContexts(Resource... contexts) throws IOException
SearchIndex
contexts
- sail
- - the underlying native sail where to read the missing triples from
after deletionSailException
IOException
public void clear() throws IOException
SearchIndex
IOException
Copyright © 2001-2016 Aduna. All Rights Reserved.