kibana/x-pack/plugins/data_enhanced
Lukas Olson 8f791ef8fc
[data.search.session] Include version in search session for restore warnings (#105528)
* [data.search.session] Include version in search session saved object for warnings

* Don't show version message if not restorable

* Fix build

* fix ts, fix jest, add migration

* tests ts

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
Co-authored-by: Anton Dosov <anton.dosov@elastic.co>
2021-07-21 09:01:02 -07:00
..
.storybook
common [Search] Unify search plugin step 1 (#95811) 2021-04-21 14:23:49 +02:00
public [data.search.session] Include version in search session for restore warnings (#105528) 2021-07-21 09:01:02 -07:00
server [data.search.session] Include version in search session for restore warnings (#105528) 2021-07-21 09:01:02 -07:00
config.ts [Search] Unify search plugin step 1 (#95811) 2021-04-21 14:23:49 +02:00
jest.config.js
kibana.json
README.md [Search] Unify search plugin step 1 (#95811) 2021-04-21 14:23:49 +02:00
tsconfig.json Revert "TS Incremental build exclude test files (#95610)" (#96223) 2021-04-05 11:59:26 -07:00

data_enhanced

The data_enhanced plugin is the x-pack counterpart to the src/plguins/data plugin.

It exists to provide services, or parts of services, which enhance existing functionality from src/plugins/data.

Currently, the data_enhanced plugin doesn't return any APIs which you can consume directly, however it is possible that you are indirectly relying on the enhanced functionality that it provides via the data plugin from src/.

Here is the functionality it adds:

Search Sessions

Search sessions are handy when you want to enable a user to run something asynchronously (for example, a dashboard over a long period of time), and then quickly restore the results at a later time. The Search Service transparently fetches results from the .async-search index, instead of running each request again.