Qore ElasticSearchDataProvider Module Reference 1.0
|
Qore ElasticSearchDataProvider module definition
The ElasticSearchDataProvider module provides a data provider API for ElasticSearch instances and data. It provides introspection into the configuration and document attributes as well as APIs and a record-based data provider to use ElasticSearch indices as DB table-like objects as well.
This data provider provides ElasticSearch API access to:
document/{create, read, update, delete}
index/{create, read, read-all, delete, search}
pipeline/{create, read, read-all, update, delete}
Furthermore it provides a record interface to ElasticSearch indexes supporting record creating, searching, updating, and deleting documents (where an ElasticSearch document is treated as a record) through the following path:
indexes/
index_nameThese data provides represent a single index with a record-like interface; each document (record) will be returned with read-only _id
and _score
fields as well. Searches are performed with match
; for flexible search criteria, use the API-driven search (ElasticSearchIndexSearchDataProvider)
In this way ElasticSearch can be used for easy data integration and searches as well as for the manipulation of document content and pipelines from the Data Provider API.
The name of the ElastiSearch data provider factory is elasticsearch
.
These examples are with qdp
, the command-line interface to the Data Provider API.
qdp 'elasticsearch{url=https://elastic:[email protected]:9200}/pipeline/read-all'
qdp 'elasticsearch{url=https://elastic:[email protected]:9200}/pipeline/create' \ pipeline=my-pipeline,description="my pipeline",processors='{html_strip={field=content}}'
qdp 'elasticsearch{url=https://elastic:[email protected]:9200}/pipeline/delete' pipeline=my-pipeline
qdp 'elasticsearch{url=https://elastic:[email protected]:9200}/index/read-all'
qdp 'elasticsearch{url=https://elastic:[email protected]:9200}/index/create' \ index=my-index,mappings={properties={content={type=text}}}'
qdp 'elasticsearch{url=https://elastic:[email protected]:9200}/index/delete' index=my-index
qdp 'elasticsearch{url=https://elastic:[email protected]:9200}/index/search' \ index=my-index,'query={match={content=target-string}}'
qdp 'elasticsearch{url=https://elastic:[email protected]:9200}/document/create' \ index=my-index,pipeline=my-pipeline,content="<h2>my HTML content</h2>",refresh=true
qdp 'elasticsearch{url=https://elastic:[email protected]:9200}/document/delete' \ index=my-index,id=oE1jYokB_lAyoyNWRDP9
qdp 'elasticsearch{url=https://elastic:[email protected]:9200}/indexes/my-index' \ content=target-string
qdp 'elasticsearch{url=https://elastic:[email protected]:9200}/indexes/my-index' create \ content="<h2>my HTML content</h2>" pipeline=my-pipeline,refresh=true
qdp 'elasticsearch{url=https://elastic:[email protected]:9200}/indexes/my-index' delete \ _id=oE1jYokB_lAyoyNWRDP9