2012-01-15 16:15:05 +02:00
|
|
|
/*
|
2014-01-06 22:48:02 +01:00
|
|
|
* Licensed to Elasticsearch under one or more contributor
|
|
|
|
* license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright
|
|
|
|
* ownership. Elasticsearch 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
|
2012-01-15 16:15:05 +02:00
|
|
|
*
|
|
|
|
* 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.elasticsearch.action;
|
|
|
|
|
2014-07-18 11:15:23 +02:00
|
|
|
import com.google.common.collect.Lists;
|
2012-01-15 16:15:05 +02:00
|
|
|
import com.google.common.collect.Maps;
|
|
|
|
import org.elasticsearch.action.admin.cluster.health.ClusterHealthAction;
|
|
|
|
import org.elasticsearch.action.admin.cluster.health.TransportClusterHealthAction;
|
2012-08-02 14:52:31 +03:00
|
|
|
import org.elasticsearch.action.admin.cluster.node.hotthreads.NodesHotThreadsAction;
|
|
|
|
import org.elasticsearch.action.admin.cluster.node.hotthreads.TransportNodesHotThreadsAction;
|
2012-01-15 16:15:05 +02:00
|
|
|
import org.elasticsearch.action.admin.cluster.node.info.NodesInfoAction;
|
|
|
|
import org.elasticsearch.action.admin.cluster.node.info.TransportNodesInfoAction;
|
2014-12-04 10:49:20 +01:00
|
|
|
import org.elasticsearch.action.admin.cluster.node.liveness.TransportLivenessAction;
|
2012-01-15 16:15:05 +02:00
|
|
|
import org.elasticsearch.action.admin.cluster.node.stats.NodesStatsAction;
|
|
|
|
import org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction;
|
2013-11-08 19:20:43 -05:00
|
|
|
import org.elasticsearch.action.admin.cluster.repositories.delete.DeleteRepositoryAction;
|
|
|
|
import org.elasticsearch.action.admin.cluster.repositories.delete.TransportDeleteRepositoryAction;
|
|
|
|
import org.elasticsearch.action.admin.cluster.repositories.get.GetRepositoriesAction;
|
|
|
|
import org.elasticsearch.action.admin.cluster.repositories.get.TransportGetRepositoriesAction;
|
|
|
|
import org.elasticsearch.action.admin.cluster.repositories.put.PutRepositoryAction;
|
|
|
|
import org.elasticsearch.action.admin.cluster.repositories.put.TransportPutRepositoryAction;
|
2014-09-10 21:49:15 -04:00
|
|
|
import org.elasticsearch.action.admin.cluster.repositories.verify.TransportVerifyRepositoryAction;
|
|
|
|
import org.elasticsearch.action.admin.cluster.repositories.verify.VerifyRepositoryAction;
|
2012-01-15 16:15:05 +02:00
|
|
|
import org.elasticsearch.action.admin.cluster.reroute.ClusterRerouteAction;
|
|
|
|
import org.elasticsearch.action.admin.cluster.reroute.TransportClusterRerouteAction;
|
|
|
|
import org.elasticsearch.action.admin.cluster.settings.ClusterUpdateSettingsAction;
|
|
|
|
import org.elasticsearch.action.admin.cluster.settings.TransportClusterUpdateSettingsAction;
|
2013-03-05 07:24:07 -05:00
|
|
|
import org.elasticsearch.action.admin.cluster.shards.ClusterSearchShardsAction;
|
|
|
|
import org.elasticsearch.action.admin.cluster.shards.TransportClusterSearchShardsAction;
|
2013-11-08 19:20:43 -05:00
|
|
|
import org.elasticsearch.action.admin.cluster.snapshots.create.CreateSnapshotAction;
|
|
|
|
import org.elasticsearch.action.admin.cluster.snapshots.create.TransportCreateSnapshotAction;
|
|
|
|
import org.elasticsearch.action.admin.cluster.snapshots.delete.DeleteSnapshotAction;
|
|
|
|
import org.elasticsearch.action.admin.cluster.snapshots.delete.TransportDeleteSnapshotAction;
|
|
|
|
import org.elasticsearch.action.admin.cluster.snapshots.get.GetSnapshotsAction;
|
|
|
|
import org.elasticsearch.action.admin.cluster.snapshots.get.TransportGetSnapshotsAction;
|
|
|
|
import org.elasticsearch.action.admin.cluster.snapshots.restore.RestoreSnapshotAction;
|
|
|
|
import org.elasticsearch.action.admin.cluster.snapshots.restore.TransportRestoreSnapshotAction;
|
2014-03-15 18:58:18 -04:00
|
|
|
import org.elasticsearch.action.admin.cluster.snapshots.status.SnapshotsStatusAction;
|
|
|
|
import org.elasticsearch.action.admin.cluster.snapshots.status.TransportSnapshotsStatusAction;
|
2012-01-15 16:15:05 +02:00
|
|
|
import org.elasticsearch.action.admin.cluster.state.ClusterStateAction;
|
|
|
|
import org.elasticsearch.action.admin.cluster.state.TransportClusterStateAction;
|
2013-12-10 11:15:57 +01:00
|
|
|
import org.elasticsearch.action.admin.cluster.stats.ClusterStatsAction;
|
|
|
|
import org.elasticsearch.action.admin.cluster.stats.TransportClusterStatsAction;
|
2013-07-23 15:32:56 +02:00
|
|
|
import org.elasticsearch.action.admin.cluster.tasks.PendingClusterTasksAction;
|
|
|
|
import org.elasticsearch.action.admin.cluster.tasks.TransportPendingClusterTasksAction;
|
2012-01-15 16:15:05 +02:00
|
|
|
import org.elasticsearch.action.admin.indices.alias.IndicesAliasesAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.alias.TransportIndicesAliasesAction;
|
2013-07-15 14:28:09 +02:00
|
|
|
import org.elasticsearch.action.admin.indices.alias.exists.AliasesExistAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.alias.exists.TransportAliasesExistAction;
|
2013-07-15 14:55:46 +02:00
|
|
|
import org.elasticsearch.action.admin.indices.alias.get.GetAliasesAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.alias.get.TransportGetAliasesAction;
|
2012-01-15 16:15:05 +02:00
|
|
|
import org.elasticsearch.action.admin.indices.analyze.AnalyzeAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.analyze.TransportAnalyzeAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.cache.clear.ClearIndicesCacheAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.cache.clear.TransportClearIndicesCacheAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.close.CloseIndexAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.close.TransportCloseIndexAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.create.CreateIndexAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.create.TransportCreateIndexAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.delete.DeleteIndexAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.delete.TransportDeleteIndexAction;
|
2012-09-20 18:10:56 +02:00
|
|
|
import org.elasticsearch.action.admin.indices.exists.indices.IndicesExistsAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.exists.indices.TransportIndicesExistsAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.exists.types.TransportTypesExistsAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.exists.types.TypesExistsAction;
|
2012-01-15 16:15:05 +02:00
|
|
|
import org.elasticsearch.action.admin.indices.flush.FlushAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.flush.TransportFlushAction;
|
2014-08-12 11:42:12 +01:00
|
|
|
import org.elasticsearch.action.admin.indices.get.GetIndexAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.get.TransportGetIndexAction;
|
2014-02-21 20:25:35 +01:00
|
|
|
import org.elasticsearch.action.admin.indices.mapping.get.*;
|
2012-01-15 16:15:05 +02:00
|
|
|
import org.elasticsearch.action.admin.indices.mapping.put.PutMappingAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.mapping.put.TransportPutMappingAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.open.OpenIndexAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.open.TransportOpenIndexAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.optimize.OptimizeAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.optimize.TransportOptimizeAction;
|
2014-02-18 14:28:49 -08:00
|
|
|
import org.elasticsearch.action.admin.indices.recovery.RecoveryAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.recovery.TransportRecoveryAction;
|
2014-07-18 11:15:23 +02:00
|
|
|
import org.elasticsearch.action.admin.indices.refresh.RefreshAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.refresh.TransportRefreshAction;
|
2012-01-15 16:15:05 +02:00
|
|
|
import org.elasticsearch.action.admin.indices.segments.IndicesSegmentsAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.segments.TransportIndicesSegmentsAction;
|
2014-01-05 23:06:02 +01:00
|
|
|
import org.elasticsearch.action.admin.indices.settings.get.GetSettingsAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.settings.get.TransportGetSettingsAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.settings.put.TransportUpdateSettingsAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.settings.put.UpdateSettingsAction;
|
2012-01-15 16:15:05 +02:00
|
|
|
import org.elasticsearch.action.admin.indices.stats.IndicesStatsAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.template.delete.DeleteIndexTemplateAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.template.delete.TransportDeleteIndexTemplateAction;
|
2013-08-12 12:57:15 +02:00
|
|
|
import org.elasticsearch.action.admin.indices.template.get.GetIndexTemplatesAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.template.get.TransportGetIndexTemplatesAction;
|
2012-01-15 16:15:05 +02:00
|
|
|
import org.elasticsearch.action.admin.indices.template.put.PutIndexTemplateAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.template.put.TransportPutIndexTemplateAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.validate.query.TransportValidateQueryAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.validate.query.ValidateQueryAction;
|
2012-05-06 18:50:35 +03:00
|
|
|
import org.elasticsearch.action.admin.indices.warmer.delete.DeleteWarmerAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.warmer.delete.TransportDeleteWarmerAction;
|
2013-06-12 21:02:33 +02:00
|
|
|
import org.elasticsearch.action.admin.indices.warmer.get.GetWarmersAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.warmer.get.TransportGetWarmersAction;
|
2012-05-06 18:50:35 +03:00
|
|
|
import org.elasticsearch.action.admin.indices.warmer.put.PutWarmerAction;
|
|
|
|
import org.elasticsearch.action.admin.indices.warmer.put.TransportPutWarmerAction;
|
2012-01-15 16:15:05 +02:00
|
|
|
import org.elasticsearch.action.bulk.BulkAction;
|
|
|
|
import org.elasticsearch.action.bulk.TransportBulkAction;
|
|
|
|
import org.elasticsearch.action.bulk.TransportShardBulkAction;
|
|
|
|
import org.elasticsearch.action.count.CountAction;
|
|
|
|
import org.elasticsearch.action.count.TransportCountAction;
|
|
|
|
import org.elasticsearch.action.delete.DeleteAction;
|
|
|
|
import org.elasticsearch.action.delete.TransportDeleteAction;
|
2014-07-23 22:54:00 -04:00
|
|
|
import org.elasticsearch.action.exists.ExistsAction;
|
|
|
|
import org.elasticsearch.action.exists.TransportExistsAction;
|
2012-08-20 18:06:36 +02:00
|
|
|
import org.elasticsearch.action.explain.ExplainAction;
|
|
|
|
import org.elasticsearch.action.explain.TransportExplainAction;
|
2015-04-10 01:14:48 +02:00
|
|
|
import org.elasticsearch.action.fieldstats.FieldStatsAction;
|
|
|
|
import org.elasticsearch.action.fieldstats.TransportFieldStatsTransportAction;
|
2012-01-15 16:15:05 +02:00
|
|
|
import org.elasticsearch.action.get.*;
|
|
|
|
import org.elasticsearch.action.index.IndexAction;
|
|
|
|
import org.elasticsearch.action.index.TransportIndexAction;
|
2014-07-14 14:37:55 +01:00
|
|
|
import org.elasticsearch.action.indexedscripts.delete.DeleteIndexedScriptAction;
|
|
|
|
import org.elasticsearch.action.indexedscripts.delete.TransportDeleteIndexedScriptAction;
|
|
|
|
import org.elasticsearch.action.indexedscripts.get.GetIndexedScriptAction;
|
|
|
|
import org.elasticsearch.action.indexedscripts.get.TransportGetIndexedScriptAction;
|
|
|
|
import org.elasticsearch.action.indexedscripts.put.PutIndexedScriptAction;
|
|
|
|
import org.elasticsearch.action.indexedscripts.put.TransportPutIndexedScriptAction;
|
2012-01-15 16:15:05 +02:00
|
|
|
import org.elasticsearch.action.mlt.MoreLikeThisAction;
|
|
|
|
import org.elasticsearch.action.mlt.TransportMoreLikeThisAction;
|
2013-08-19 18:59:28 +02:00
|
|
|
import org.elasticsearch.action.percolate.*;
|
2012-02-20 18:57:27 +02:00
|
|
|
import org.elasticsearch.action.search.*;
|
2012-01-15 16:15:05 +02:00
|
|
|
import org.elasticsearch.action.search.type.*;
|
# REST Suggester API
The REST Suggester API binds the 'Suggest API' to the REST Layer directly. Hence there is no need to touch the query layer for requesting suggestions.
This API extracts the Phrase Suggester API and makes 'suggestion request' top-level objects in suggestion requests. The complete API can be found in the
underlying ["Suggest Feature API"](http://www.elasticsearch.org/guide/reference/api/search/suggest.html).
# API Example
The following examples show how Suggest Actions work on the REST layer. According to this a simple request and its response will be shown.
## Suggestion Request
```json
curl -XPOST 'localhost:9200/_suggest?pretty=true' -d '{
"text" : "Xor the Got-Jewel",
"simple_phrase" : {
"phrase" : {
"analyzer" : "bigram",
"field" : "bigram",
"size" : 1,
"real_word_error_likelihood" : 0.95,
"max_errors" : 0.5,
"gram_size" : 2
}
}
}'
```
This example shows how to query a suggestion for the global text 'Xor the Got-Jewel'. A 'simple phrase' suggestion is requested and
a 'direct generator' is configured to generate the candidates.
## Suggestion Response
On success the request above will reply with a response like the following:
```json
{
"simple_phrase" : [ {
"text" : "Xor the Got-Jewel",
"offset" : 0,
"length" : 17,
"options" : [ {
"text" : "xorr the the got got jewel",
"score" : 3.5283546E-4
} ]
} ]
}
```
The 'suggest'-response contains a single 'simple phrase' which contains an 'option' in turn. This option represents a suggestion of the
queried text. It contains the corrected text and a score indicating the probability of this option to be meant.
Closes #2774
2013-03-11 17:39:18 +01:00
|
|
|
import org.elasticsearch.action.suggest.SuggestAction;
|
|
|
|
import org.elasticsearch.action.suggest.TransportSuggestAction;
|
2014-07-18 11:15:23 +02:00
|
|
|
import org.elasticsearch.action.support.ActionFilter;
|
|
|
|
import org.elasticsearch.action.support.ActionFilters;
|
2012-01-15 16:15:05 +02:00
|
|
|
import org.elasticsearch.action.support.TransportAction;
|
2014-11-13 15:05:09 +01:00
|
|
|
import org.elasticsearch.action.termvectors.*;
|
|
|
|
import org.elasticsearch.action.termvectors.dfs.TransportDfsOnlyAction;
|
2012-01-15 16:15:05 +02:00
|
|
|
import org.elasticsearch.action.update.TransportUpdateAction;
|
|
|
|
import org.elasticsearch.action.update.UpdateAction;
|
|
|
|
import org.elasticsearch.common.inject.AbstractModule;
|
|
|
|
import org.elasticsearch.common.inject.multibindings.MapBinder;
|
2014-07-18 11:15:23 +02:00
|
|
|
import org.elasticsearch.common.inject.multibindings.Multibinder;
|
2012-01-15 16:15:05 +02:00
|
|
|
|
2014-07-18 11:15:23 +02:00
|
|
|
import java.util.List;
|
2012-01-15 16:15:05 +02:00
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public class ActionModule extends AbstractModule {
|
|
|
|
|
|
|
|
private final Map<String, ActionEntry> actions = Maps.newHashMap();
|
2014-07-18 11:15:23 +02:00
|
|
|
private final List<Class<? extends ActionFilter>> actionFilters = Lists.newArrayList();
|
2012-01-15 16:15:05 +02:00
|
|
|
|
|
|
|
static class ActionEntry<Request extends ActionRequest, Response extends ActionResponse> {
|
|
|
|
public final GenericAction<Request, Response> action;
|
|
|
|
public final Class<? extends TransportAction<Request, Response>> transportAction;
|
|
|
|
public final Class[] supportTransportActions;
|
|
|
|
|
|
|
|
ActionEntry(GenericAction<Request, Response> action, Class<? extends TransportAction<Request, Response>> transportAction, Class... supportTransportActions) {
|
|
|
|
this.action = action;
|
|
|
|
this.transportAction = transportAction;
|
|
|
|
this.supportTransportActions = supportTransportActions;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
private final boolean proxy;
|
|
|
|
|
|
|
|
public ActionModule(boolean proxy) {
|
|
|
|
this.proxy = proxy;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Registers an action.
|
|
|
|
*
|
|
|
|
* @param action The action type.
|
|
|
|
* @param transportAction The transport action implementing the actual action.
|
|
|
|
* @param supportTransportActions Any support actions that are needed by the transport action.
|
|
|
|
* @param <Request> The request type.
|
|
|
|
* @param <Response> The response type.
|
|
|
|
*/
|
|
|
|
public <Request extends ActionRequest, Response extends ActionResponse> void registerAction(GenericAction<Request, Response> action, Class<? extends TransportAction<Request, Response>> transportAction, Class... supportTransportActions) {
|
2014-03-27 15:54:45 +01:00
|
|
|
actions.put(action.name(), new ActionEntry<>(action, transportAction, supportTransportActions));
|
2012-01-15 16:15:05 +02:00
|
|
|
}
|
|
|
|
|
2014-07-18 11:15:23 +02:00
|
|
|
public ActionModule registerFilter(Class<? extends ActionFilter> actionFilter) {
|
|
|
|
actionFilters.add(actionFilter);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2012-01-15 16:15:05 +02:00
|
|
|
@Override
|
|
|
|
protected void configure() {
|
|
|
|
|
2014-07-18 11:15:23 +02:00
|
|
|
Multibinder<ActionFilter> actionFilterMultibinder = Multibinder.newSetBinder(binder(), ActionFilter.class);
|
|
|
|
for (Class<? extends ActionFilter> actionFilter : actionFilters) {
|
|
|
|
actionFilterMultibinder.addBinding().to(actionFilter);
|
|
|
|
}
|
|
|
|
bind(ActionFilters.class).asEagerSingleton();
|
2012-01-15 16:15:05 +02:00
|
|
|
registerAction(NodesInfoAction.INSTANCE, TransportNodesInfoAction.class);
|
|
|
|
registerAction(NodesStatsAction.INSTANCE, TransportNodesStatsAction.class);
|
2012-08-02 14:52:31 +03:00
|
|
|
registerAction(NodesHotThreadsAction.INSTANCE, TransportNodesHotThreadsAction.class);
|
2012-01-15 16:15:05 +02:00
|
|
|
|
2013-12-10 11:15:57 +01:00
|
|
|
registerAction(ClusterStatsAction.INSTANCE, TransportClusterStatsAction.class);
|
2012-01-15 16:15:05 +02:00
|
|
|
registerAction(ClusterStateAction.INSTANCE, TransportClusterStateAction.class);
|
|
|
|
registerAction(ClusterHealthAction.INSTANCE, TransportClusterHealthAction.class);
|
|
|
|
registerAction(ClusterUpdateSettingsAction.INSTANCE, TransportClusterUpdateSettingsAction.class);
|
|
|
|
registerAction(ClusterRerouteAction.INSTANCE, TransportClusterRerouteAction.class);
|
2013-03-05 07:24:07 -05:00
|
|
|
registerAction(ClusterSearchShardsAction.INSTANCE, TransportClusterSearchShardsAction.class);
|
2013-07-23 15:32:56 +02:00
|
|
|
registerAction(PendingClusterTasksAction.INSTANCE, TransportPendingClusterTasksAction.class);
|
2013-11-08 19:20:43 -05:00
|
|
|
registerAction(PutRepositoryAction.INSTANCE, TransportPutRepositoryAction.class);
|
|
|
|
registerAction(GetRepositoriesAction.INSTANCE, TransportGetRepositoriesAction.class);
|
|
|
|
registerAction(DeleteRepositoryAction.INSTANCE, TransportDeleteRepositoryAction.class);
|
2014-09-10 21:49:15 -04:00
|
|
|
registerAction(VerifyRepositoryAction.INSTANCE, TransportVerifyRepositoryAction.class);
|
2013-11-08 19:20:43 -05:00
|
|
|
registerAction(GetSnapshotsAction.INSTANCE, TransportGetSnapshotsAction.class);
|
|
|
|
registerAction(DeleteSnapshotAction.INSTANCE, TransportDeleteSnapshotAction.class);
|
|
|
|
registerAction(CreateSnapshotAction.INSTANCE, TransportCreateSnapshotAction.class);
|
|
|
|
registerAction(RestoreSnapshotAction.INSTANCE, TransportRestoreSnapshotAction.class);
|
2014-03-15 18:58:18 -04:00
|
|
|
registerAction(SnapshotsStatusAction.INSTANCE, TransportSnapshotsStatusAction.class);
|
2012-01-15 16:15:05 +02:00
|
|
|
|
|
|
|
registerAction(IndicesStatsAction.INSTANCE, TransportIndicesStatsAction.class);
|
|
|
|
registerAction(IndicesSegmentsAction.INSTANCE, TransportIndicesSegmentsAction.class);
|
|
|
|
registerAction(CreateIndexAction.INSTANCE, TransportCreateIndexAction.class);
|
|
|
|
registerAction(DeleteIndexAction.INSTANCE, TransportDeleteIndexAction.class);
|
2014-08-12 11:42:12 +01:00
|
|
|
registerAction(GetIndexAction.INSTANCE, TransportGetIndexAction.class);
|
2012-01-15 16:15:05 +02:00
|
|
|
registerAction(OpenIndexAction.INSTANCE, TransportOpenIndexAction.class);
|
|
|
|
registerAction(CloseIndexAction.INSTANCE, TransportCloseIndexAction.class);
|
|
|
|
registerAction(IndicesExistsAction.INSTANCE, TransportIndicesExistsAction.class);
|
2012-09-20 18:10:56 +02:00
|
|
|
registerAction(TypesExistsAction.INSTANCE, TransportTypesExistsAction.class);
|
2013-06-12 21:02:33 +02:00
|
|
|
registerAction(GetMappingsAction.INSTANCE, TransportGetMappingsAction.class);
|
2014-02-21 20:25:35 +01:00
|
|
|
registerAction(GetFieldMappingsAction.INSTANCE, TransportGetFieldMappingsAction.class, TransportGetFieldMappingsIndexAction.class);
|
2012-01-15 16:15:05 +02:00
|
|
|
registerAction(PutMappingAction.INSTANCE, TransportPutMappingAction.class);
|
|
|
|
registerAction(IndicesAliasesAction.INSTANCE, TransportIndicesAliasesAction.class);
|
|
|
|
registerAction(UpdateSettingsAction.INSTANCE, TransportUpdateSettingsAction.class);
|
|
|
|
registerAction(AnalyzeAction.INSTANCE, TransportAnalyzeAction.class);
|
|
|
|
registerAction(PutIndexTemplateAction.INSTANCE, TransportPutIndexTemplateAction.class);
|
2013-08-12 12:57:15 +02:00
|
|
|
registerAction(GetIndexTemplatesAction.INSTANCE, TransportGetIndexTemplatesAction.class);
|
2012-01-15 16:15:05 +02:00
|
|
|
registerAction(DeleteIndexTemplateAction.INSTANCE, TransportDeleteIndexTemplateAction.class);
|
|
|
|
registerAction(ValidateQueryAction.INSTANCE, TransportValidateQueryAction.class);
|
|
|
|
registerAction(RefreshAction.INSTANCE, TransportRefreshAction.class);
|
|
|
|
registerAction(FlushAction.INSTANCE, TransportFlushAction.class);
|
|
|
|
registerAction(OptimizeAction.INSTANCE, TransportOptimizeAction.class);
|
|
|
|
registerAction(ClearIndicesCacheAction.INSTANCE, TransportClearIndicesCacheAction.class);
|
2012-05-06 18:50:35 +03:00
|
|
|
registerAction(PutWarmerAction.INSTANCE, TransportPutWarmerAction.class);
|
|
|
|
registerAction(DeleteWarmerAction.INSTANCE, TransportDeleteWarmerAction.class);
|
2013-06-12 21:02:33 +02:00
|
|
|
registerAction(GetWarmersAction.INSTANCE, TransportGetWarmersAction.class);
|
2013-07-15 14:55:46 +02:00
|
|
|
registerAction(GetAliasesAction.INSTANCE, TransportGetAliasesAction.class);
|
2013-07-15 14:28:09 +02:00
|
|
|
registerAction(AliasesExistAction.INSTANCE, TransportAliasesExistAction.class);
|
2014-01-05 23:06:02 +01:00
|
|
|
registerAction(GetSettingsAction.INSTANCE, TransportGetSettingsAction.class);
|
2012-01-15 16:15:05 +02:00
|
|
|
|
|
|
|
registerAction(IndexAction.INSTANCE, TransportIndexAction.class);
|
|
|
|
registerAction(GetAction.INSTANCE, TransportGetAction.class);
|
2014-11-13 15:05:09 +01:00
|
|
|
registerAction(TermVectorsAction.INSTANCE, TransportTermVectorsAction.class,
|
2014-10-16 19:46:47 +02:00
|
|
|
TransportDfsOnlyAction.class);
|
Multi term vector request
--------------------------
This feature allows to retrieve [term vectors](https://github.com/elasticsearch/elasticsearch/issues/3114) for a list of documents. The json request has exactly the same [format](https://github.com/elasticsearch/elasticsearch/issues/3484) as the ```_termvectors``` endpoint
It use it, call
```
curl -XGET 'http://localhost:9200/index/type/_mtermvectors' -d '{
"fields": [
"field1",
"field2",
...
],
"ids": [
"docId1",
"docId2",
...
],
"offsets": false|true,
"payloads": false|true,
"positions": false|true,
"term_statistics": false|true,
"field_statistics": false|true
}'
```
The return format is an array, each entry of which conatins the term vector response for one document:
```
{
"docs": [
{
"_index": "index",
"_type": "type",
"_id": "docId1",
"_version": 1,
"exists": true,
"term_vectors": {
...
}
},
{
"_index": "index",
"_type": "type",
"_id": "docId2",
"_version": 1,
"exists": true,
"term_vectors": {
...
}
}
]
}
```
Note that, like term vectors, the mult term vectors request will silenty skip over documents that have no term vectors stored in the index and will simply return an empty response in this case.
Closes #3536
2013-08-23 18:32:22 +02:00
|
|
|
registerAction(MultiTermVectorsAction.INSTANCE, TransportMultiTermVectorsAction.class,
|
2014-11-13 15:05:09 +01:00
|
|
|
TransportShardMultiTermsVectorAction.class);
|
2015-03-17 21:20:57 -07:00
|
|
|
registerAction(DeleteAction.INSTANCE, TransportDeleteAction.class);
|
2012-01-15 16:15:05 +02:00
|
|
|
registerAction(CountAction.INSTANCE, TransportCountAction.class);
|
2014-07-23 22:54:00 -04:00
|
|
|
registerAction(ExistsAction.INSTANCE, TransportExistsAction.class);
|
# REST Suggester API
The REST Suggester API binds the 'Suggest API' to the REST Layer directly. Hence there is no need to touch the query layer for requesting suggestions.
This API extracts the Phrase Suggester API and makes 'suggestion request' top-level objects in suggestion requests. The complete API can be found in the
underlying ["Suggest Feature API"](http://www.elasticsearch.org/guide/reference/api/search/suggest.html).
# API Example
The following examples show how Suggest Actions work on the REST layer. According to this a simple request and its response will be shown.
## Suggestion Request
```json
curl -XPOST 'localhost:9200/_suggest?pretty=true' -d '{
"text" : "Xor the Got-Jewel",
"simple_phrase" : {
"phrase" : {
"analyzer" : "bigram",
"field" : "bigram",
"size" : 1,
"real_word_error_likelihood" : 0.95,
"max_errors" : 0.5,
"gram_size" : 2
}
}
}'
```
This example shows how to query a suggestion for the global text 'Xor the Got-Jewel'. A 'simple phrase' suggestion is requested and
a 'direct generator' is configured to generate the candidates.
## Suggestion Response
On success the request above will reply with a response like the following:
```json
{
"simple_phrase" : [ {
"text" : "Xor the Got-Jewel",
"offset" : 0,
"length" : 17,
"options" : [ {
"text" : "xorr the the got got jewel",
"score" : 3.5283546E-4
} ]
} ]
}
```
The 'suggest'-response contains a single 'simple phrase' which contains an 'option' in turn. This option represents a suggestion of the
queried text. It contains the corrected text and a score indicating the probability of this option to be meant.
Closes #2774
2013-03-11 17:39:18 +01:00
|
|
|
registerAction(SuggestAction.INSTANCE, TransportSuggestAction.class);
|
2012-01-15 16:15:05 +02:00
|
|
|
registerAction(UpdateAction.INSTANCE, TransportUpdateAction.class);
|
|
|
|
registerAction(MultiGetAction.INSTANCE, TransportMultiGetAction.class,
|
|
|
|
TransportShardMultiGetAction.class);
|
|
|
|
registerAction(BulkAction.INSTANCE, TransportBulkAction.class,
|
|
|
|
TransportShardBulkAction.class);
|
|
|
|
registerAction(SearchAction.INSTANCE, TransportSearchAction.class,
|
|
|
|
TransportSearchDfsQueryThenFetchAction.class,
|
|
|
|
TransportSearchQueryThenFetchAction.class,
|
|
|
|
TransportSearchDfsQueryAndFetchAction.class,
|
|
|
|
TransportSearchQueryAndFetchAction.class,
|
|
|
|
TransportSearchScanAction.class
|
|
|
|
);
|
|
|
|
registerAction(SearchScrollAction.INSTANCE, TransportSearchScrollAction.class,
|
|
|
|
TransportSearchScrollScanAction.class,
|
|
|
|
TransportSearchScrollQueryThenFetchAction.class,
|
|
|
|
TransportSearchScrollQueryAndFetchAction.class
|
|
|
|
);
|
2012-02-20 18:57:27 +02:00
|
|
|
registerAction(MultiSearchAction.INSTANCE, TransportMultiSearchAction.class);
|
2012-01-15 16:15:05 +02:00
|
|
|
registerAction(MoreLikeThisAction.INSTANCE, TransportMoreLikeThisAction.class);
|
|
|
|
registerAction(PercolateAction.INSTANCE, TransportPercolateAction.class);
|
2013-08-19 18:59:28 +02:00
|
|
|
registerAction(MultiPercolateAction.INSTANCE, TransportMultiPercolateAction.class, TransportShardMultiPercolateAction.class);
|
2012-08-20 18:06:36 +02:00
|
|
|
registerAction(ExplainAction.INSTANCE, TransportExplainAction.class);
|
2013-09-10 21:16:47 +02:00
|
|
|
registerAction(ClearScrollAction.INSTANCE, TransportClearScrollAction.class);
|
2014-02-18 14:28:49 -08:00
|
|
|
registerAction(RecoveryAction.INSTANCE, TransportRecoveryAction.class);
|
2012-01-15 16:15:05 +02:00
|
|
|
|
2014-07-14 14:37:55 +01:00
|
|
|
//Indexed scripts
|
|
|
|
registerAction(PutIndexedScriptAction.INSTANCE, TransportPutIndexedScriptAction.class);
|
|
|
|
registerAction(GetIndexedScriptAction.INSTANCE, TransportGetIndexedScriptAction.class);
|
|
|
|
registerAction(DeleteIndexedScriptAction.INSTANCE, TransportDeleteIndexedScriptAction.class);
|
|
|
|
|
2015-04-10 01:14:48 +02:00
|
|
|
registerAction(FieldStatsAction.INSTANCE, TransportFieldStatsTransportAction.class);
|
|
|
|
|
2012-01-15 16:15:05 +02:00
|
|
|
// register Name -> GenericAction Map that can be injected to instances.
|
|
|
|
MapBinder<String, GenericAction> actionsBinder
|
|
|
|
= MapBinder.newMapBinder(binder(), String.class, GenericAction.class);
|
|
|
|
|
|
|
|
for (Map.Entry<String, ActionEntry> entry : actions.entrySet()) {
|
|
|
|
actionsBinder.addBinding(entry.getKey()).toInstance(entry.getValue().action);
|
|
|
|
}
|
|
|
|
// register GenericAction -> transportAction Map that can be injected to instances.
|
|
|
|
// also register any supporting classes
|
|
|
|
if (!proxy) {
|
2014-12-04 10:49:20 +01:00
|
|
|
bind(TransportLivenessAction.class).asEagerSingleton();
|
2012-01-15 16:15:05 +02:00
|
|
|
MapBinder<GenericAction, TransportAction> transportActionsBinder
|
|
|
|
= MapBinder.newMapBinder(binder(), GenericAction.class, TransportAction.class);
|
|
|
|
for (Map.Entry<String, ActionEntry> entry : actions.entrySet()) {
|
|
|
|
// bind the action as eager singleton, so the map binder one will reuse it
|
|
|
|
bind(entry.getValue().transportAction).asEagerSingleton();
|
|
|
|
transportActionsBinder.addBinding(entry.getValue().action).to(entry.getValue().transportAction).asEagerSingleton();
|
|
|
|
for (Class supportAction : entry.getValue().supportTransportActions) {
|
|
|
|
bind(supportAction).asEagerSingleton();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|