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

Tracing for deep search path #12103

Merged
merged 7 commits into from
Mar 13, 2024
Merged

Tracing for deep search path #12103

merged 7 commits into from
Mar 13, 2024

Conversation

dzane17
Copy link
Contributor

@dzane17 dzane17 commented Jan 31, 2024

Description

Tracing instrumentation at deep search path

Added spans at:

  1. Coordinator node request
  2. Coordinator node search phases

Testing

% curl -X PUT "localhost:9200/test2?pretty" -H 'Content-Type: application/json' -d'                                                                    
{                                                  
  "settings": {
    "number_of_shards": 10
  }
}'

% curl -X POST "localhost:9200/_bulk?pretty" -H 'Content-Type: application/json' -d'
{ "index" : { "_index" : "test2", "_id" : "1" } }
{ "field1" : "value1" }
{ "index" : { "_index" : "test2", "_id" : "2" } }
{ "field2" : "value2" }
'

% curl -XGET 'localhost:9200/_search?pretty&phase_took' -H 'X-Opaque-Id: my-id' -H 'Content-Type: application/json' -d'{
 "query": { "match_all": {} }
}'

% curl -XGET 'localhost:9200/_search?pretty&search_type=dfs_query_then_fetch&phase_took' -H 'X-Opaque-Id: my-id' -H 'Content-Type: application/json' -d'{
 "query": { "match_all": {} }
}'             

Screenshot 2024-02-07 at 11 25 55 AM

search_type=dfs_query_then_fetch

Screenshot 2024-02-07 at 11 26 35 AM

Span Details

1. Coordinator node request

Screenshot 2024-02-06 at 8 24 22 PM

{
   "traceId":"c6a3a7a39cc2e81bdf964fd7d81dbe67",
   "spanId":"def6dc54cfe41cf7",
   "parentSpanId":"101e8811a19ff208",
   "name":"transport indices:data/read/search",
   "kind":1,
   "startTimeUnixNano":"1707279254012638047",
   "endTimeUnixNano":"1707279254017864739",
   "attributes":[
      {
         "key":"task_id",
         "value":{
            "intValue":"3360"
         }
      },
      {
         "key":"action",
         "value":{
            "stringValue":"indices:data/read/search"
         }
      },
      {
         "key":"thread.name",
         "value":{
            "stringValue":"opensearch[88665a158598.ant.amazon.com][transport_worker][T#9]"
         }
      },
      {
         "key":"total_hits",
         "value":{
            "intValue":"2"
         }
      }
   ],
   "status":{
      
   }
}
2. Coordinator node phase

Screenshot 2024-02-07 at 11 31 59 AM

{
   "traceId":"e522537a055adc6fc59667b58347942c",
   "spanId":"c8ef2d7ad2584a6c",
   "parentSpanId":"5b42e305497d91f8",
   "name":"Query",
   "kind":2,
   "startTimeUnixNano":"1702333271223157629",
   "endTimeUnixNano":"1702333271225489595",
   "attributes":[
      {
         "key":"thread.name",
         "value":{
            "stringValue":"opensearch[88665a158598.ant.amazon.com][transport_worker][T#8]"
         }
      }
   ],
   "status":{
      
   }
}

Related Issues

Resolves #8554

Check List

  • New functionality includes testing.
    • All tests pass
  • New functionality has been documented.
    • New functionality has javadoc added
  • Failing checks are inspected and point to the corresponding known issue(s) (See: Troubleshooting Failing Builds)
  • Commits are signed per the DCO using --signoff
  • Commit changes are listed out in CHANGELOG.md file (See: Changelog)
  • Public documentation issue/PR created

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.

Copy link
Contributor

github-actions bot commented Jan 31, 2024

Compatibility status:

Checks if related components are compatible with change 659c479

Incompatible components

Skipped components

Compatible components

Compatible components: [https://github.com/opensearch-project/custom-codecs.git, https://github.com/opensearch-project/asynchronous-search.git, https://github.com/opensearch-project/neural-search.git, https://github.com/opensearch-project/flow-framework.git, https://github.com/opensearch-project/cross-cluster-replication.git, https://github.com/opensearch-project/security-analytics.git, https://github.com/opensearch-project/job-scheduler.git, https://github.com/opensearch-project/reporting.git, https://github.com/opensearch-project/opensearch-oci-object-storage.git, https://github.com/opensearch-project/geospatial.git, https://github.com/opensearch-project/notifications.git, https://github.com/opensearch-project/k-nn.git, https://github.com/opensearch-project/observability.git, https://github.com/opensearch-project/common-utils.git, https://github.com/opensearch-project/anomaly-detection.git, https://github.com/opensearch-project/performance-analyzer-rca.git, https://github.com/opensearch-project/ml-commons.git, https://github.com/opensearch-project/index-management.git, https://github.com/opensearch-project/security.git, https://github.com/opensearch-project/sql.git, https://github.com/opensearch-project/alerting.git, https://github.com/opensearch-project/performance-analyzer.git]

Copy link
Contributor

❌ Gradle check result for 82843fd: FAILURE

Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change?

Copy link
Contributor

❌ Gradle check result for 7896045: FAILURE

Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change?

@reta
Copy link
Collaborator

reta commented Mar 11, 2024

@dzane17 could you please rebase / merge with main (and resolve the conflicts)?

Copy link
Contributor

❌ Gradle check result for 1e9e593: FAILURE

Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change?

Copy link
Contributor

❌ Gradle check result for 659c479: FAILURE

Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change?

@reta
Copy link
Collaborator

reta commented Mar 12, 2024

❌ Gradle check result for 659c479: FAILURE

#10558
#12197
#11155

Copy link
Contributor

❕ Gradle check result for 659c479: UNSTABLE

  • TEST FAILURES:
      1 org.opensearch.remotestore.RemoteStoreStatsIT.testNonZeroPrimaryStatsOnNewlyCreatedIndexWithZeroDocs

Please review all flaky tests that succeeded after retry and create an issue if one does not already exist to track the flaky failure.

@reta reta self-requested a review March 12, 2024 13:33
@reta
Copy link
Collaborator

reta commented Mar 12, 2024

@Gaganjuneja mind please re-taking a look? Thank you!

@Gaganjuneja
Copy link
Contributor

@Gaganjuneja mind please re-taking a look? Thank you!

Sure, by today evening.

@reta reta merged commit 77a1193 into opensearch-project:main Mar 13, 2024
34 checks passed
@opensearch-trigger-bot
Copy link
Contributor

The backport to 2.x failed:

The process '/usr/bin/git' failed with exit code 128

To backport manually, run these commands in your terminal:

# Navigate to the root of your repository
cd $(git rev-parse --show-toplevel)
# Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add ../.worktrees/OpenSearch/backport-2.x 2.x
# Navigate to the new working tree
pushd ../.worktrees/OpenSearch/backport-2.x
# Create a new branch
git switch --create backport/backport-12103-to-2.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 77a119319c14b0c1fa45dc85a618bf2429576b1e
# Push it to GitHub
git push --set-upstream origin backport/backport-12103-to-2.x
# Go back to the original working tree
popd
# Delete the working tree
git worktree remove ../.worktrees/OpenSearch/backport-2.x

Then, create a pull request where the base branch is 2.x and the compare/head branch is backport/backport-12103-to-2.x.

@reta
Copy link
Collaborator

reta commented Mar 13, 2024

@dzane17 could you please backport to 2.x manually? thank you

dzane17 added a commit to dzane17/OpenSearch that referenced this pull request Mar 13, 2024
* Tracing for deep search path

Signed-off-by: David Zane <[email protected]>

* Refactor search phase tracing instrumentation to detach span creation from the SearchRequestOperationsListener

Signed-off-by: Andriy Redko <[email protected]>

* Close WrappedPhase span

Signed-off-by: David Zane <[email protected]>

* Add asserting listener class

Signed-off-by: David Zane <[email protected]>

* Cleanup AbstractSearchAsyncActionTests tests

Signed-off-by: Andriy Redko <[email protected]>

* Cleanup SearchAsyncActionTests tests

Signed-off-by: Andriy Redko <[email protected]>

* Cleanup CanMatchPreFilterSearchPhaseTests tests

Signed-off-by: Andriy Redko <[email protected]>

---------

Signed-off-by: David Zane <[email protected]>
Signed-off-by: Andriy Redko <[email protected]>
Co-authored-by: Andriy Redko <[email protected]>
(cherry picked from commit 77a1193)
dzane17 added a commit to dzane17/OpenSearch that referenced this pull request Mar 13, 2024
* Tracing for deep search path

Signed-off-by: David Zane <[email protected]>

* Refactor search phase tracing instrumentation to detach span creation from the SearchRequestOperationsListener

Signed-off-by: Andriy Redko <[email protected]>

* Close WrappedPhase span

Signed-off-by: David Zane <[email protected]>

* Add asserting listener class

Signed-off-by: David Zane <[email protected]>

* Cleanup AbstractSearchAsyncActionTests tests

Signed-off-by: Andriy Redko <[email protected]>

* Cleanup SearchAsyncActionTests tests

Signed-off-by: Andriy Redko <[email protected]>

* Cleanup CanMatchPreFilterSearchPhaseTests tests

Signed-off-by: Andriy Redko <[email protected]>

---------

Signed-off-by: David Zane <[email protected]>
Signed-off-by: Andriy Redko <[email protected]>
Co-authored-by: Andriy Redko <[email protected]>
(cherry picked from commit 77a1193)
reta pushed a commit that referenced this pull request Mar 13, 2024
* Tracing for deep search path

Signed-off-by: David Zane <[email protected]>

* Refactor search phase tracing instrumentation to detach span creation from the SearchRequestOperationsListener

Signed-off-by: Andriy Redko <[email protected]>

* Close WrappedPhase span

Signed-off-by: David Zane <[email protected]>

* Add asserting listener class

Signed-off-by: David Zane <[email protected]>

* Cleanup AbstractSearchAsyncActionTests tests

Signed-off-by: Andriy Redko <[email protected]>

* Cleanup SearchAsyncActionTests tests

Signed-off-by: Andriy Redko <[email protected]>

* Cleanup CanMatchPreFilterSearchPhaseTests tests

Signed-off-by: Andriy Redko <[email protected]>

---------

Signed-off-by: David Zane <[email protected]>
Signed-off-by: Andriy Redko <[email protected]>
Co-authored-by: Andriy Redko <[email protected]>
(cherry picked from commit 77a1193)
rayshrey pushed a commit to rayshrey/OpenSearch that referenced this pull request Mar 18, 2024
* Tracing for deep search path

Signed-off-by: David Zane <[email protected]>

* Refactor search phase tracing instrumentation to detach span creation from the SearchRequestOperationsListener

Signed-off-by: Andriy Redko <[email protected]>

* Close WrappedPhase span

Signed-off-by: David Zane <[email protected]>

* Add asserting listener class

Signed-off-by: David Zane <[email protected]>

* Cleanup AbstractSearchAsyncActionTests tests

Signed-off-by: Andriy Redko <[email protected]>

* Cleanup SearchAsyncActionTests tests

Signed-off-by: Andriy Redko <[email protected]>

* Cleanup CanMatchPreFilterSearchPhaseTests tests

Signed-off-by: Andriy Redko <[email protected]>

---------

Signed-off-by: David Zane <[email protected]>
Signed-off-by: Andriy Redko <[email protected]>
Co-authored-by: Andriy Redko <[email protected]>
shiv0408 pushed a commit to Gaurav614/OpenSearch that referenced this pull request Apr 25, 2024
* Tracing for deep search path

Signed-off-by: David Zane <[email protected]>

* Refactor search phase tracing instrumentation to detach span creation from the SearchRequestOperationsListener

Signed-off-by: Andriy Redko <[email protected]>

* Close WrappedPhase span

Signed-off-by: David Zane <[email protected]>

* Add asserting listener class

Signed-off-by: David Zane <[email protected]>

* Cleanup AbstractSearchAsyncActionTests tests

Signed-off-by: Andriy Redko <[email protected]>

* Cleanup SearchAsyncActionTests tests

Signed-off-by: Andriy Redko <[email protected]>

* Cleanup CanMatchPreFilterSearchPhaseTests tests

Signed-off-by: Andriy Redko <[email protected]>

---------

Signed-off-by: David Zane <[email protected]>
Signed-off-by: Andriy Redko <[email protected]>
Co-authored-by: Andriy Redko <[email protected]>
Signed-off-by: Shivansh Arora <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backport 2.x Backport to 2.x branch backport-failed enhancement Enhancement or improvement to existing feature or request Search Search query, autocomplete ...etc
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Tracing Instrumentation] Add instrumentation at deep search path
7 participants