You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$$$search-type$$$
`search_type`
: (Optional, string) How [distributed term frequencies]({{wikipedia}}/Tf–idf) are calculated for [relevance scoring](query-filter-context.md#relevance-scores).
::::{dropdown} Valid values for `search_type`
`query_then_fetch`
: (Default) Distributed term frequencies are calculated locally for each shard running the search. We recommend this option for faster searches with potentially less accurate scoring.
$$$dfs-query-then-fetch$$$
`dfs_query_then_fetch`
: Distributed term frequencies are calculated globally, using information gathered from all shards running the search. While this option increases the accuracy of scoring, it adds a round-trip to each shard, which can result in slower searches.
::::
The built output looks like this:
What I expect:
Both definition list items: query_then_fetch & dfs_query_then_fetch should be within the dropdown element.
The anchor tag $$$dfs-query-then-fetch$$$ which does exist in the output file, should work with link checking. The current error is:
:: fail: Documentation.Builder.Log[0] `dfs-query-then-fetch` does not exist in search-search.md. (/Users/brandon/Documents/GitHub/elasticsearch.md/docs/consistent-scoring.md:29)
The text was updated successfully, but these errors were encountered:
Note that nested inline anchors that are not in a dropdown directive also fail link checking. For example:
### Connection modes [sniff-proxy-modes]
$$$sniff-mode$$$
Sniff mode
: In sniff mode, a cluster alias is registered with a name of your choosing and a list of addresses of *seed* nodes specified with the `cluster.remote.<cluster_alias>.seeds` setting. When you register a remote cluster using sniff mode, {{es}} retrieves from one of the seed nodes the addresses of up to three *gateway nodes*. Each `remote_cluster_client` node in the local {{es}} cluster then opens several TCP connections to the publish addresses of the gateway nodes. This mode therefore requires that the gateway nodes' publish addresses are accessible to nodes in the local cluster.
Sniff mode is the default connection mode. See [Sniff mode remote cluster settings](remote-clusters-settings.md#remote-cluster-sniff-settings) for more information about configuring sniff mode.
$$$gateway-nodes-selection$$$
The *gateway nodes* selection depends on the following criteria:
* **version**: Remote nodes must be compatible with the cluster they are registered to.
* **role**: By default, any non-[master-eligible](node-roles-overview.md#master-node-role) node can act as a gateway node. Dedicated master nodes are never selected as gateway nodes.
* **attributes**: You can define the gateway nodes for a cluster by setting [`cluster.remote.node.attr.gateway`](remote-clusters-settings.md#cluster-remote-node-attr) to `true`. However, such nodes still have to satisfy the two above requirements.
Results in:
:: fail: Documentation.Builder.Log[0] `gateway-nodes-selection` does not exist in remote-clusters.md. (/Users/brandon/Documents/GitHub/elasticsearch.md/docs/remote-clusters.md:59)
Summary
The following syntax exists in the ES Guide:
The built output looks like this:
What I expect:
query_then_fetch
&dfs_query_then_fetch
should be within the dropdown element.$$$dfs-query-then-fetch$$$
which does exist in the output file, should work with link checking. The current error is:The text was updated successfully, but these errors were encountered: