-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Update storage api to support query operations by spanKind #1942
Conversation
…n for operation name index - add migration script - read from the latest table if available, otherwise fail back to previous table Signed-off-by: Jun Guo <guo0693@gmail.com>
Signed-off-by: Jun Guo <guo0693@gmail.com>
Signed-off-by: Jun Guo <guo0693@gmail.com>
Signed-off-by: Jun Guo <guo0693@gmail.com>
Signed-off-by: Jun Guo <guo0693@gmail.com>
Signed-off-by: Jun Guo <guo0693@gmail.com>
Signed-off-by: Jun Guo <guo0693@gmail.com>
# Conflicts: # plugin/storage/cassandra/spanstore/operation_names.go # plugin/storage/cassandra/spanstore/operation_names_test.go # plugin/storage/cassandra/spanstore/reader_test.go # plugin/storage/cassandra/spanstore/writer_test.go
Signed-off-by: Jun Guo <guo0693@gmail.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
in many places SpanKind: ""
is redundant
Codecov Report
@@ Coverage Diff @@
## master #1942 +/- ##
==========================================
- Coverage 98.44% 98.43% -0.02%
==========================================
Files 198 198
Lines 9794 9847 +53
==========================================
+ Hits 9642 9693 +51
- Misses 115 116 +1
- Partials 37 38 +1
Continue to review full report at Codecov.
|
- shorten var names and wrap lines - make grpc server backward compatible - write struct instead of list of strings for operation_names Signed-off-by: Jun Guo <guo0693@gmail.com>
- Backward compatibility for grpc client Signed-off-by: Jun Guo <guo0693@gmail.com>
I've never tried this, but GH allows you to change the base branch of a PR: https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/changing-the-base-branch-of-a-pull-request |
It doesn't work that well for us: assume branch1 has several commits, branch2 is based on branch1. After branch1 merged to master, those commits are squashed, when we update PR from branch2 to compare to master, the commit history is different, we will need to merge master into branch2 and solve merge conflicts first, this will apply to all the dependent branches and require extra reviews. |
Btw, this is the 3rd PR for the endpoint changes: https://github.com/guo0693/jaeger/pull/2/files, since the 3rd PR is relatively small, we can merge this PR first, I will create a patch from 3rd PR and apply to the merged master then open a new PR for endpoint changes. So let's focus on getting this PR merged. |
Signed-off-by: Jun Guo <guo0693@gmail.com>
Signed-off-by: Jun Guo <guo0693@gmail.com>
Which problem is this PR solving?
Short description of the changes
This PR contains the exact same changes as guo0693#1, The only difference is this PR is opened against master branch.