-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Configurable ES doc count #2453
Configurable ES doc count #2453
Conversation
760464c
to
02681ba
Compare
Signed-off-by: albertteoh <albert.teoh@logz.io>
Signed-off-by: albertteoh <albert.teoh@logz.io>
Signed-off-by: albertteoh <albert.teoh@logz.io>
Signed-off-by: albertteoh <albert.teoh@logz.io>
Signed-off-by: albertteoh <albert.teoh@logz.io>
Signed-off-by: albertteoh <albert.teoh@logz.io>
Signed-off-by: albertteoh <albert.teoh@logz.io>
@albertteoh could you please fix the commit history, it seems that the PR contains other commits. |
ac1ad85
to
2347697
Compare
Thanks for pointing that out @pavolloffay, I must have messed up the rebase. I've cleaned this up so commit history should only show my changes. |
Signed-off-by: albertteoh <albert.teoh@logz.io>
cmd/opentelemetry/app/internal/reader/es/esdependencyreader/dependency_store.go
Outdated
Show resolved
Hide resolved
Signed-off-by: albertteoh <albert.teoh@logz.io>
Signed-off-by: albertteoh <albert.teoh@logz.io>
Signed-off-by: albertteoh <albert.teoh@logz.io>
Signed-off-by: albertteoh <albert.teoh@logz.io>
Signed-off-by: albertteoh <albert.teoh@logz.io>
Signed-off-by: albertteoh <albert.teoh@logz.io>
Codecov Report
@@ Coverage Diff @@
## master #2453 +/- ##
==========================================
+ Coverage 95.58% 95.59% +0.01%
==========================================
Files 208 208
Lines 10679 10690 +11
==========================================
+ Hits 10207 10219 +12
Misses 399 399
+ Partials 73 72 -1
Continue to review full report at Codecov.
|
@albertteoh could you please increase the test coverage? https://codecov.io/gh/jaegertracing/jaeger/pull/2453/diff |
One more thing @albertteoh we should add this change to changelog in braking changes since the limit is applied to new set of queries - we should enumerate what queries from the UI perspective might be affected. |
Signed-off-by: albertteoh <albert.teoh@logz.io>
c7af448
to
5a9d1c9
Compare
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.
One more thing @albertteoh we should add this change to changelog in braking changes since the limit is applied to new set of queries - we should enumerate what queries from the UI perspective might be affected.
Good point, I've added a note in the changelog for v1.20 (unreleased). Please let me know if anything in that changelog entry requires modification.
Thanks for reviewing!
Which problem is this PR solving?
Short description of the changes
--es.max-num-spans
. (Will create another issue to decommission this flag for a future release).--es.max-doc-count
, that configures query (and aggregation) doc sizes, defaulting to10_000
. Name based on existingdefaultDocCount
variable for consistency.