Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagexml
titlesearchDocumentsByIndex
<elasticsearch.searchDocumentsByIndex>
    <indexName>{$ctx:indexName}</indexName>
    <query>{$ctx:query}</query>
    <explain>{$ctx:explain}</explain>
    <fields>{$ctx:fields}</fields>
    <sort>{$ctx:sort}</sort>
    <timeout>{$ctx:timeout}</timeout>
    <terminateAfter>{$ctx:terminateAfter}</terminateAfter>
    <from>{$ctx:from}</from>
    <size>{$ctx:size}</size>
    <searchType>{$ctx:searchType}</searchType>
    <source>{$ctx:source}</source>
    <scriptFields>{$ctx:scriptFields}</scriptFields>
    <fieldDataFields>{$ctx:fieldDataFields}</fieldDataFields>
    <highlight>{$ctx:highlight}</highlight>
    <indicesBoost>{$ctx:indicesBoost}</indicesBoost>
    <minScore>{$ctx:minScore}</minScore>
    <trackScores>{$ctx:trackScores}</trackScores>
    <version>{$ctx:version}</version>
    <scroll>{$ctx:scroll}</scroll>
    <queryCache>{$ctx:queryCache}</queryCache>
    <partialFields>{$ctx:partialFields}</partialFields>
    <postFilter>{$ctx:postFilter}</postFilter>
    <aggregation>{$ctx:aggregation}</aggregation>
    <rescore>{$ctx:rescore}</rescore>
    <preference>{$ctx:preference}</preference>
    <innerHits>{$ctx:innerHits}</innerHits>
    <ignoreUnavailable>{$ctx:ignoreUnavailable}</ignoreUnavailable>
    <allowNoIndices>{$ctx:allowNoIndices}</allowNoIndices>
	<expandWildcards>{$ctx:expandWildcards}</expandWildcards>
</elasticsearch.searchDocumentsByIndex>
Properties
  • indexName: The name of the index.
  • query
    Anchor
    query
    query
    query
    The query string used to perform the search.
  • explain: If set to true, this provide an explanation of how scoring of the hits was computed for each hit.
  • fields: Specify the fields to return for each hit as a comma separated list. Not specifying a value will cause no fields to return.
  • sort: The type of sorting to perform. Can either be in the form of fieldName, or fieldName:asc/fieldName:desc. The fieldName can either be an actual field within the document, or the special score name to indicate sorting based on scores. There can be several sort parameters (order is important). 
  • timeout: A timeout value for the search. This bounds the search request to be executed within the specified time value and returns the hits accumulated up to that point when expired. There is no value set for this by default.
  • terminateAfter: The maximum number of documents to collect for each shard, which upon reaching causes the query execution to terminate early. If set, the response will have a boolean field terminated_early to indicate that the query execution has terminated early. There is no value set for this by default.
  • from: The starting from index of the hits to return. Default value is 0.
  • size: The number of hits to return. Default value is 10.
  • searchType: The type of the search to perform. Possible values are: dfs_query_then_fetch, dfs_query_and_fetch, query_then_fetch, query_and_fetch, count, scan. The default value is: query_then_fetch. For more information on the different types of search that can be performed, see Search Type.
  • source: If set to true, this controls how the source is returned.
  • scriptFields: Allows to return a script evaluation for each hit based on the values taken from different fields. 
  • fieldDataFields: Allows to return the field data representation of a field for each hit.
  • highlight: Specify the fields in which search results should be highlighted.
  • indicesBoost: Allows to configure different boost levels per index when searching across more than one index. This is useful when hits coming from a particular index have a higher priority over hits coming from another index (social graph where each user has an index).
  • minScore: Specify a value so that documents that have a score less than the value specified is excluded from the search.
  • trackScores: Set this to true to track scores and return them as part of each hit.
  • version: If set to true this returns a version for each hit.
  • scroll: Specify the duration that you want to keep the search context open. The duration should be specified in time units. For information on supported time units, see Time units.
  • queryCache: Set this to true to enable caching of search results for requests.
  • partialFields: Used to use wildcards to control what part of the source will be loaded.
  • postFilter: If you need to differentially filter search results, you can specify the search values here. Values other than what is specified here will be removed from the search results.
  • aggregation: Specify the document fields from which values should be extracted for aggregation.
  • rescuer: A second query to be executed on the results returned by the original query.
  • preference: Controls a preference of which shard replicas to execute the search request on.
  • innerHits: Specify a definition for this property so that for each search hit the search result returns additional nested hits that caused the search hit to satisfy a different scope.
  • ignoreUnavailable: Used to control whether to ignore if any specified indices are unavailable.
  • allowNoIndices: Used to control whether to fail if a wildcard indices expressions results into no concrete indices.
  • expandWildcards: Used to control to what kind of concrete indices wildcard indices expression expand to.

...

Code Block
languagexml
titlesearchDocumentByTypes
<elasticsearch.searchDocumentByTypes>
    <indexName>{$ctx:indexName}</indexName>
    <query>{$ctx:query}</query>
    <explain>{$ctx:explain}</explain>
    <fields>{$ctx:fields}</fields>
    <sort>{$ctx:sort}</sort>
    <timeout>{$ctx:timeout}</timeout>
    <terminateAfter>{$ctx:terminateAfter}</terminateAfter>
    <from>{$ctx:from}</from>
    <size>{$ctx:size}</size>
    <searchType>{$ctx:searchType}</searchType>
    <source>{$ctx:source}</source>
    <scriptFields>{$ctx:scriptFields}</scriptFields>
    <fieldDataFields>{$ctx:fieldDataFields}</fieldDataFields>
    <highlight>{$ctx:highlight}</highlight>
    <indicesBoost>{$ctx:indicesBoost}</indicesBoost>
    <minScore>{$ctx:minScore}</minScore>
    <trackScores>{$ctx:trackScores}</trackScores>
    <version>{$ctx:version}</version>
    <scroll>{$ctx:scroll}</scroll>
    <type>{$ctx:type}</type>
    <queryCache>{$ctx:queryCache}</queryCache>
    <partialFields>{$ctx:partialFields}</partialFields>
    <postFilter>{$ctx:postFilter}</postFilter>
    <aggregation>{$ctx:aggregation}</aggregation>
    <rescore>{$ctx:rescore}</rescore>
    <preference>{$ctx:preference}</preference>
    <innerHits>{$ctx:innerHits}</innerHits>
    <ignoreUnavailable>{$ctx:ignoreUnavailable}</ignoreUnavailable>
    <allowNoIndices>{$ctx:allowNoIndices}</allowNoIndices>
	<expandWildcards>{$ctx:expandWildcards}</expandWildcards>
</elasticsearch.searchDocumentByTypes>
Properties
  • indexName: The name of the index.
  • query: The query string used to perform the search.
  • explain: If set to true, this provide an explanation of how scoring of the hits was computed for each hit.
  • fields: Specify the fields to return for each hit as a comma separated list. Not specifying a value will cause no fields to return.
  • sort: The type of sorting to perform. Can either be in the form of fieldName, or fieldName:asc/fieldName:desc. The fieldName can either be an actual field within the document, or the special score name to indicate sorting based on scores. There can be several sort parameters (order is important). 
  • timeout: A timeout value for the search. This bounds the search request to be executed within the specified time value and returns the hits accumulated up to that point when expired. There is no value set for this by default.
  • terminateAfter: The maximum number of documents to collect for each shard, which upon reaching causes the query execution to terminate early. If set, the response will have a boolean field terminated_early to indicate whether the query execution has actually terminated early. There is no value set for this by default.
  • from: The starting from index of the hits to return. Default value is 0.
  • size: The number of hits to return. Default value is 10.
  • searchType: The type of the search to perform. Possible values are: dfs_query_then_fetchdfs_query_and_fetchquery_then_fetchquery_and_fetchcountscan. The default value is: query_then_fetch. For more information on the different types of search that can be performed, see Search Type.
  • source: If set to true, this controls how the source is returned.
  • scriptFields: Allows to return a script evaluation for each hit based on the values taken from different fields. 
  • fieldDataFields: Allows to return the field data representation of a field for each hit.
  • highlight: Specify the fields in which search results should be highlighted.
  • indicesBoost: Allows to configure different boost levels per index when searching across more than one index. This is useful when hits coming from a particular index have a higher priority over hits coming from another index (social graph where each user has an index).
  • minScore: Specify a value so that documents that have a score less than the value specified is excluded from the search.
  • trackScores: Set this to true to track scores and return them as part of each hit.
  • version: Returns a version for each search hit.
  • scroll: While a search request returns a single page of results, the scroll API can be used to retrieve large numbers of results (or even all results) from a single search request, in much the same way as you would use a cursor on a traditional database.
  • type: The type inside which the search would be performed.
  • queryCache: To enable or disable the caching of search results for requests.
  • partialFields: Used to use wildcards to control what part of the source will be loaded.
  • postFilter: Remove results from response that have values other than this.
  • aggregation: Aggregate data within a document set context.
  • rescore: Used to improve precision by reordering just the top (e.g. 100 - 500) documents returned by the query and postFilter phases.
  • preference: Controls a preference of which shard replicas to execute the search request on.
  • innerHits: Used to return per search hit in the search response additional nested hits that caused a search hit to match in a different scope.
  • ignoreUnavailable: Used to control whether to ignore if any specified indices are unavailable.
  • allowNoIndices: Used to control whether to fail if a wildcard indices expressions results into no concrete indices.
  • expandWildcards: Used to control to what kind of concrete indices wildcard indices expression expand to.

...

Code Block
languagexml
titlesearchByQuery
<elasticsearch.searchByQuery>
    <query>{$ctx:query}</query>
    <explain>{$ctx:explain}</explain>
    <fields>{$ctx:fields}</fields>
    <sort>{$ctx:sort}</sort>
    <timeout>{$ctx:timeout}</timeout>
    <terminateAfter>{$ctx:terminateAfter}</terminateAfter>
    <from>{$ctx:from}</from>
    <size>{$ctx:size}</size>
    <searchType>{$ctx:searchType}</searchType>
    <source>{$ctx:source}</source>
    <scriptFields>{$ctx:scriptFields}</scriptFields>
    <fieldDataFields>{$ctx:fieldDataFields}</fieldDataFields>
    <highlight>{$ctx:highlight}</highlight>
    <indicesBoost>{$ctx:indicesBoost}</indicesBoost>
    <minScore>{$ctx:minScore}</minScore>
    <trackScores>{$ctx:trackScores}</trackScores>
    <version>{$ctx:version}</version>
    <scroll>{$ctx:scroll}</scroll>
    <queryCache>{$ctx:queryCache}</queryCache>
    <partialFields>{$ctx:partialFields}</partialFields>
    <postFilter>{$ctx:postFilter}</postFilter>
    <aggregation>{$ctx:aggregation}</aggregation>
    <rescore>{$ctx:rescore}</rescore>
    <preference>{$ctx:preference}</preference>
	<innerHits>{$ctx:innerHits}</innerHits>
</elasticsearch.searchByQuery>
Properties
  • query: The query string used to perform the search.
  • explain: If set to true, this provide an explanation of how scoring of the hits was computed for each hit.
  • fields: Specify the fields to return for each hit as a comma separated list. Not specifying a value will cause no fields to return.
  • sort: The type of sorting to perform. Can either be in the form of fieldName, or fieldName:asc/fieldName:desc. The fieldName can either be an actual field within the document, or the special score name to indicate sorting based on scores. There can be several sort parameters (order is important). 
  • timeout: A timeout value for the search. This bounds the search request to be executed within the specified time value and returns the hits accumulated up to that point when expired. There is no value set for this by default.
  • terminateAfter: The maximum number of documents to collect for each shard, which upon reaching causes the query execution to terminate early. If set, the response will have a boolean field terminated_early to indicate whether the query execution has actually terminated early. There is no value set for this by default.
  • from: The starting from index of the hits to return. Default value is 0.
  • size: The number of hits to return. Default value is 10.
  • searchType: The type of the search to perform. Possible values are: dfs_query_then_fetchdfs_query_and_fetchquery_then_fetchquery_and_fetchcountscan. The default value is: query_then_fetch. For more information on the different types of search that can be performed, see Search Type.
  • source: If set to true, this controls how the source is returned.
  • scriptFields: Allows to return a script evaluation for each hit based on the values taken from different fields. 
  • fieldDataFields: Allows to return the field data representation of a field for each hit.
  • highlight: Specify the fields in which search results should be highlighted.
  • indicesBoost: Allows to configure different boost levels per index when searching across more than one index. This is useful when hits coming from a particular index have a higher priority over hits coming from another index (social graph where each user has an index).
  • minScore: Specify a value so that documents that have a score less than the value specified is excluded from the search.
  • trackScores: Set this to true to track scores and return them as part of each hit.
  • version: Returns a version for each search hit.
  • scroll: While a search request returns a single page of results, the scroll API can be used to retrieve large numbers of results (or even all results) from a single search request, in much the same way as you would use a cursor on a traditional database.
  • queryCache: To enable or disable the caching of search results for requests.
  • partialFields: Used to use wildcards to control what part of the source will be loaded.
  • postFilter: Remove results from response that have values other than this.
  • aggregation: Aggregate data within a document set context.
  • rescore: Used to improve precision by reordering just the top (e.g. 100 - 500) documents returned by the query and postFilter phases.
  • preference: Controls a preference of which shard replicas to execute the search request on.
  • innerHits: Used to return per search hit in the search response additional nested hits that caused a search hit to match in a different scope.

...