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

[BUG] fields is changing the outcome of the following commands that depend on selected fields #2739

Open
TackAdam opened this issue Jun 11, 2024 · 3 comments
Labels
bug Something isn't working

Comments

@TackAdam
Copy link

What is the bug?
When running stats count() operation on a nested parameter the result seems to just return 0. If the field is specified before running the count, it will show the correct value.

How can one reproduce the bug?
Steps to reproduce the behavior:

  1. Go to 'OpenSearch Playground:Query Workbench https://playground.opensearch.org/app/opensearch-query-workbench#/
  2. Click on PPL and enter the PPL "source = jaeger-span-* |stats count (references.refType)" and hit Run
Screenshot 2024-06-11 at 4 34 36 PM -Output will be 0

Enter the PPL "source = jaeger-span-* | fields references.refType|stats count (references.refType)" and hit Run
Screenshot 2024-06-11 at 4 36 22 PM
-Output will be 193

What is the expected behavior?
The stats count() should return a consistent value regardless of any preceeding field selection.

What is your host/environment?

  • OS: [e.g. iOS]
  • Version [e.g. 22]
  • Plugins

Do you have any screenshots?
If applicable, add screenshots to help explain your problem.

Do you have any additional context?
Add any other context about the problem.

@TackAdam TackAdam added bug Something isn't working untriaged labels Jun 11, 2024
@LantaoJin
Copy link
Member

This may be not a bug of SQL plugin. Regarding to nested field, OpenSearch DSL query will return 0 value too. Try below DSL

GET jaeger-span-*/_search
{
  "size": 0,
  "aggs": {
    "count_refType": {
      "value_count": {
        "field": "references.refType"
      }
    }
  }
}

PPL source = jaeger-span-* | stats count (references.refType) equals to above DSL query. But source = jaeger-span-* | fields references.refType | stats count (references.refType) equals searching keyword patients.name first then aggregate.

@LantaoJin
Copy link
Member

Open opensearch-project/OpenSearch#14347 to track

@dblock
Copy link
Member

dblock commented Jul 1, 2024

Is this fixed with the related OpenSearch issue @LantaoJin?

[Catch All Triage - Attendees 1, 2, 3, 4, 5]

@dblock dblock removed the untriaged label Jul 1, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants