-
Notifications
You must be signed in to change notification settings - Fork 8.3k
/
request_utils.ts
47 lines (41 loc) · 1.86 KB
/
request_utils.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the "Elastic License
* 2.0", the "GNU Affero General Public License v3.0 only", and the "Server Side
* Public License v 1"; you may not use this file except in compliance with, at
* your election, the "Elastic License 2.0", the "GNU Affero General Public
* License v3.0 only", or the "Server Side Public License, v 1".
*/
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import type { IUiSettingsClient, SharedGlobalConfig } from '@kbn/core/server';
import { UI_SETTINGS } from '../../../../common';
export function getShardTimeout(
config: SharedGlobalConfig
): Pick<estypes.SearchRequest, 'timeout'> {
const timeout = config.elasticsearch.shardTimeout.asMilliseconds();
return timeout ? { timeout: `${timeout}ms` } : {};
}
export async function getDefaultSearchParams(
uiSettingsClient: Pick<IUiSettingsClient, 'get'>,
options = { isPit: false }
): Promise<{
max_concurrent_shard_requests?: number;
ignore_unavailable?: boolean;
track_total_hits: boolean;
}> {
const maxConcurrentShardRequests = await uiSettingsClient.get<number>(
UI_SETTINGS.COURIER_MAX_CONCURRENT_SHARD_REQUESTS
);
const defaults: Awaited<ReturnType<typeof getDefaultSearchParams>> = {
max_concurrent_shard_requests:
maxConcurrentShardRequests > 0 ? maxConcurrentShardRequests : undefined,
track_total_hits: true,
};
// If the request has a point-in-time ID attached, it can not include ignore_unavailable from {@link estypes.IndicesOptions}.
// ES will reject the request as that option was set when the point-in-time was created.
// Otherwise, this option allows search to not fail when the index/indices don't exist
if (!options.isPit) {
defaults.ignore_unavailable = true;
}
return defaults;
}