Peng Huo
Peng Huo
## Description of the issue When select the doc2, the result is 0. ``` PUT my-index-000001 { "mappings": { "properties": { "location": { "type": "geo_point" } } } } PUT...
We see customer ask the [question](https://github.com/opendistro-for-elasticsearch/sql/issues/1003) regarding to disable DELETE in SQL. Currently, the customer could disable the delete by config the security permission. But, should we define ODFE SQL...
**Is your feature request related to a problem?** Currently, SQL/PPL does not support cross cluster search (CCS) because CCS does not support fetch index mapping from remote cluster **What solution...
**Is your feature request related to a problem?** * [The new engine fetches a default size of index from OpenSearch set by this setting, the default value is 200](https://github.com/opensearch-project/sql/blob/main/docs/user/admin/settings.rst#plugins-query-size-limit). It...
## Problem statements Currently, the query.size_limit [setting](https://github.com/opensearch-project/sql/blob/main/docs/user/ppl/admin/settings.rst#plugins-query-size-limit) configure the maximum amount of documents to be pull from OpenSearch. The default value is: 200. for example, Let's say size_limit = 200,...
* Handle back-pressure exception.
## 1.Overview In this document, we will propose a solution in OpenSearch Observability to query log data stored in S3. ### 1.1.Problem Statements Currently, OpenSearch Observability is collection of plugins...
**What is the bug?** ``` PUT {{baseUrl}}/test_00001/ Content-Type: application/json { "settings": { "index": { "number_of_shards": 1, "number_of_replicas": 0 } }, "mappings": { "properties": { "date": { "type": "keyword" }, "status":...
### New abstraction **QueryManager is the high level interface of the core engine**, Parser parse raw query as the Plan and sumitted to QueryManager. 1. **AstBuilder** analyze raw query string...