Skip to content

Commit

Permalink
[Timelion ]Remove usage of ignore_throttled unless targeting frozen i…
Browse files Browse the repository at this point in the history
…ndices to avoid deprecation warning (#118022) (#118173)

* [Timelion ]Remove usage of ignore_throttled unless targeting frozen indices to avoid deprecation warning

Part of: #117980

* add tests

Co-authored-by: Alexey Antonov <[email protected]>
  • Loading branch information
kibanamachine and alexwizp authored Nov 10, 2021
1 parent 46069b6 commit f82874d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -256,12 +256,20 @@ describe('es', () => {
sandbox.restore();
});

test('sets ignore_throttled=true on the request', () => {
test('sets ignore_throttled=false on the request', () => {
config.index = 'beer';
tlConfig.settings[UI_SETTINGS.SEARCH_INCLUDE_FROZEN] = true;
const request = fn(config, tlConfig, emptyScriptFields);

expect(request.params.ignore_throttled).toEqual(false);
});

test('sets no ignore_throttled if SEARCH_INCLUDE_FROZEN is false', () => {
config.index = 'beer';
tlConfig.settings[UI_SETTINGS.SEARCH_INCLUDE_FROZEN] = false;
const request = fn(config, tlConfig, emptyScriptFields);

expect(request.params.ignore_throttled).toEqual(true);
expect(request.params).not.toHaveProperty('ignore_throttled');
});

test('sets no timeout if elasticsearch.shardTimeout is set to 0', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,10 @@ export default function buildRequest(config, tlConfig, scriptFields, runtimeFiel

_.assign(aggCursor, createDateAgg(config, tlConfig, scriptFields));

const includeFrozen = Boolean(tlConfig.settings[UI_SETTINGS.SEARCH_INCLUDE_FROZEN]);
const request = {
index: config.index,
ignore_throttled: !tlConfig.settings[UI_SETTINGS.SEARCH_INCLUDE_FROZEN],
...(includeFrozen ? { ignore_throttled: false } : {}),
body: {
query: {
bool: bool,
Expand Down

0 comments on commit f82874d

Please sign in to comment.