org.elasticsearch.action.search
Enum SearchType

java.lang.Object
  extended by java.lang.Enum<SearchType>
      extended by org.elasticsearch.action.search.SearchType
All Implemented Interfaces:
Serializable, Comparable<SearchType>

public enum SearchType
extends Enum<SearchType>

Search type represent the manner at which the search operation is executed.


Enum Constant Summary
COUNT
          Only counts the results, will still execute facets and the like.
DFS_QUERY_AND_FETCH
          Same as QUERY_AND_FETCH, except for an initial scatter phase which goes and computes the distributed term frequencies for more accurate scoring.
DFS_QUERY_THEN_FETCH
          Same as QUERY_THEN_FETCH, except for an initial scatter phase which goes and computes the distributed term frequencies for more accurate scoring.
QUERY_AND_FETCH
          The most naive (and possibly fastest) implementation is to simply execute the query on all relevant shards and return the results.
QUERY_THEN_FETCH
          The query is executed against all shards, but only enough information is returned (not the document content).
SCAN
          Performs scanning of the results which executes the search without any sorting.
 
Field Summary
static SearchType DEFAULT
          The default search type (QUERY_THEN_FETCH.
 
Method Summary
static SearchType fromId(byte id)
          Constructs search type based on the internal id.
static SearchType fromString(String searchType)
          The a string representation search type to execute, defaults to DEFAULT.
 byte id()
          The internal id of the type.
static SearchType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SearchType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

DFS_QUERY_THEN_FETCH

public static final SearchType DFS_QUERY_THEN_FETCH
Same as QUERY_THEN_FETCH, except for an initial scatter phase which goes and computes the distributed term frequencies for more accurate scoring.


QUERY_THEN_FETCH

public static final SearchType QUERY_THEN_FETCH
The query is executed against all shards, but only enough information is returned (not the document content). The results are then sorted and ranked, and based on it, only the relevant shards are asked for the actual document content. The return number of hits is exactly as specified in size, since they are the only ones that are fetched. This is very handy when the index has a lot of shards (not replicas, shard id groups).


DFS_QUERY_AND_FETCH

public static final SearchType DFS_QUERY_AND_FETCH
Same as QUERY_AND_FETCH, except for an initial scatter phase which goes and computes the distributed term frequencies for more accurate scoring.


QUERY_AND_FETCH

public static final SearchType QUERY_AND_FETCH
The most naive (and possibly fastest) implementation is to simply execute the query on all relevant shards and return the results. Each shard returns size results. Since each shard already returns size hits, this type actually returns size times number of shards results back to the caller.


SCAN

public static final SearchType SCAN
Performs scanning of the results which executes the search without any sorting. It will automatically start scrolling the result set.


COUNT

public static final SearchType COUNT
Only counts the results, will still execute facets and the like.

Field Detail

DEFAULT

public static final SearchType DEFAULT
The default search type (QUERY_THEN_FETCH.

Method Detail

values

public static SearchType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (SearchType c : SearchType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SearchType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

id

public byte id()
The internal id of the type.


fromId

public static SearchType fromId(byte id)
Constructs search type based on the internal id.


fromString

public static SearchType fromString(String searchType)
                             throws ElasticSearchIllegalArgumentException
The a string representation search type to execute, defaults to DEFAULT. Can be one of "dfs_query_then_fetch"/"dfsQueryThenFetch", "dfs_query_and_fetch"/"dfsQueryAndFetch", "query_then_fetch"/"queryThenFetch", "query_and_fetch"/"queryAndFetch", and "scan".

Throws:
ElasticSearchIllegalArgumentException


Copyright © 2009-2012. All Rights Reserved.