Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow passing in a signal to abort a cluster client request #37563

Merged
merged 4 commits into from
Jun 12, 2019

Conversation

lukasolson
Copy link
Member

@lukasolson lukasolson commented May 30, 2019

Resolves #37359.

This PR provides an additional optional option to the CallAPI options, signal, which represents a signal from an AbortController object. If provided, then controller.abort is invoked, then the request to ES itself will also be aborted.

Dev Docs

callWithRequest now accepts a AbortController signal for aborting requests to Elasticsearch. Example usage:

const { callWithRequest } = server.plugins.elasticsearch.getCluster('data');
const controller = new AbortController();
req.events.once('disconnect', () => controller.abort());
return await callWithRequest(req, 'search', params, { signal: controller.signal });

@lukasolson lukasolson added review Team:Core Core services & architecture: plugins, logging, config, saved objects, http, ES client, i18n, etc labels May 30, 2019
@lukasolson lukasolson requested a review from a team as a code owner May 30, 2019 21:55
@lukasolson lukasolson self-assigned this May 30, 2019
@elasticmachine
Copy link
Contributor

Pinging @elastic/kibana-platform

@elasticmachine
Copy link
Contributor

💔 Build Failed

err ? reject(err) : resolve(res)
);
if (options.signal) {
options.signal.onabort = () => request.abort();
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not a requirement, but if you want to achieve this without mutating signal and therefore options, you can use:

options.signal.addEventListener('abort', () => request.abort());

signal: controller.signal,
});

expect(typeof controller.signal.onabort).toBe('function');
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead of testing the AbortSignal itself, can we call abort and ensure the call fails?

@elasticmachine
Copy link
Contributor

💔 Build Failed

@lukasolson lukasolson mentioned this pull request Jun 12, 2019
4 tasks
@lukasolson
Copy link
Member Author

@eliperelman Could you give this another look?

@elasticmachine
Copy link
Contributor

💔 Build Failed

@elasticmachine
Copy link
Contributor

💔 Build Failed

@elasticmachine
Copy link
Contributor

💚 Build Succeeded

@lukasolson lukasolson merged commit 9e472e6 into elastic:master Jun 12, 2019
@lukasolson lukasolson deleted the clusterClientAbort branch June 12, 2019 22:45
lukasolson added a commit that referenced this pull request Jun 12, 2019
* Allow passing in a signal to abort an Elasticsearch request using the cluster client

* Go back to using promises (which still return abort method) and update test

* Update docs

* Explicitly return Promise<any> instead of {}
@lukasolson
Copy link
Member Author

7.x (7.3.0): 6ca6b1a

@joshdover joshdover added the release_note:plugin_api_changes Contains a Plugin API changes section for the breaking plugin API changes section. label Jul 9, 2019
@elasticmachine
Copy link
Contributor

💚 Build Succeeded

@sorenlouv
Copy link
Member

@lukasolson I've started seeing the following error on master and traced it back to here:

server    log   [09:53:55.180] [error][http] { Error: [security_exception] action [indices:data/read/search] is unauthorized for user [elastic]
    at respond (/home/apm/elastic/kibana/node_modules/elasticsearch/src/lib/transport.js:349:15)
    at checkRespForFailure (/home/apm/elastic/kibana/node_modules/elasticsearch/src/lib/transport.js:306:7)
    at HttpConnector.<anonymous> (/home/apm/elastic/kibana/node_modules/elasticsearch/src/lib/connectors/http.js:173:7)
    at IncomingMessage.wrapper (/home/apm/elastic/kibana/node_modules/elasticsearch/node_modules/lodash/lodash.js:4929:19)
    at IncomingMessage.elasticAPMCallbackWrapper (/home/apm/elastic/kibana/node_modules/elastic-apm-node/lib/instrumentation/index.js:309:27)
    at IncomingMessage.emit (events.js:194:15)
    at endReadableNT (_stream_readable.js:1103:12)
    at process._tickCallback (internal/process/next_tick.js:63:19)
  status: 403,
  displayName: 'AuthorizationException',
  message:
   '[security_exception] action [indices:data/read/search] is unauthorized for user [elastic]',
  path: '/apm-*%2Capm-*%2C%2Capm-*/_search',
  query: { terminate_after: 1, ignore_throttled: true },
  body:
   { error:
      { root_cause: [Array],
        type: 'security_exception',
        reason:
         'action [indices:data/read/search] is unauthorized for user [elastic]',
        caused_by: [Object] },
     status: 403 },
  statusCode: 403,
  response:
   '{"error":{"root_cause":[{"type":"security_exception","reason":"action [indices:data/read/search] is unauthorized for user [elastic]"}],"type":"security_exception","reason":"action [indices:data/read/search] is unauthorized for user [elastic]","caused_by":{"type":"string_index_out_of_bounds_exception","reason":"String index out of range: 0"}},"status":403}',
  toString: [Function],
  toJSON: [Function] }
server   error  [09:53:55.047]  Error: Internal Server Error
    at HapiResponseAdapter.toInternalError (/home/apm/elastic/kibana/src/core/server/http/router/response_adapter.ts:55:19)
    at Router.handle (/home/apm/elastic/kibana/src/core/server/http/router/router.ts:297:34)
    at process._tickCallback (internal/process/next_tick.js:68:7)
TypeError: request.abort is not a function
    at AbortSignal.options.signal.addEventListener (/home/apm/elastic/kibana/src/core/server/elasticsearch/cluster_client.ts:67:19)
    at Timeout._onTimeout (/home/apm/elastic/kibana/node_modules/abortcontroller-polyfill/dist/cjs-ponyfill.js:153:27)
    at ontimeout (timers.js:436:11)
    at tryOnTimeout (timers.js:300:5)
    at listOnTimeout (timers.js:263:5)
    at Timer.processTimers (timers.js:223:10)
 server crashed  with status code 1

There are obviously some auth issues but the thing that makes the server crash is the request.abort is not a function error. Any idea?

@lukasolson
Copy link
Member Author

Hmm, the object returned from calling the Elasticsearch JS client should always be returning something with an abort method (or so I thought). I wonder if the fact that the request is failing has something to do with why it's not there. Do you only get this with the associated auth issues?

@sorenlouv
Copy link
Member

Do you only get this with the associated auth issues?

It looks like it, yeah.

Since error tracking is now enabled in Kibana (opt-in) I was able to find the error with a bit more context. Does this give you anything?

image

@sorenlouv
Copy link
Member

@lukasolson Turns out this is caused by the APM node agent: #52617.
Sorry for the noise.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
release_note:plugin_api_changes Contains a Plugin API changes section for the breaking plugin API changes section. review Team:Core Core services & architecture: plugins, logging, config, saved objects, http, ES client, i18n, etc v7.3.0 v8.0.0
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Ability to abort a request made with callWithRequest
5 participants