ScopedValue.runWhere not returning scope
Marcin Grzejszczak
marcin.grzejszczak at gmail.com
Mon Jun 17 14:43:11 UTC 2024
> I updated the github.com/robaho/scope_trace code to demonstrate
before/after tracing using ScopedValues. There are no ThreadLocals in the
code. It works fine.
Thanks for doing this, I really appreciate it!
You create a SV at the beginning when the "request" is received. Try to
create a "span" with a new SV for the JDBC statement. With how JDBC is
being instrumented you actually don't have a handle on when and how the
JDBC code is called. You only have access to BEFORE and AFTER. So in the
BEFORE you would create a new span, put it in scope so that e.g. MDC get
enriched with tracing data so that you will have subsequent logs with span
and trace ids and then in the afterStatement you would stop the scope,
clear MDC and close that new span.
I think that over the course of those 40 emails or so we're talking all the
time about the same thing. You're trying to convince me that it's enough to
create a SV at the beginning of code execution and wrap the actual
execution in the runWhere which is not the case. When you do that you have
in fact 1 span per request and then you just retrieve it in all your
methods, there's no span nesting, no parent-child relationship.
In a normal application you would have 1 span for getting the request, at
least 1 span for the JDBC call and 1 for each of the http calls. In your
case you have 1 span for all 4.
> The problem with open/close semantics is that it is easy to close the
scopes out of order - which corrupts the tracing information.
Yes, I mentioned that a couple of times already.
> Again referring to brave, look at
https://github.com/openzipkin/brave/blob/69003dfc811418f0dbc42e9e17ff880ebe1f4b02/instrumentation/mysql/src/main/java/brave/mysql/TracingStatementInterceptor.java#L39
This line creates a new span, whose parent was the current one in
ThreadLocal and it also puts the newly created span in ThreadLocal. That's
because the ThreadLocalSpan is being used. You don't have to use that API,
you could create a span and put it in scope, that way the information about
the underlying ThreadLocal storage mechanism wouldn't leak.
> This is an example of before/after tracing. It REQUIRES that the
preStatement() and postStatment() will ALWAYS be executed in the correct
sequence (with no intervening spans left open).
Looking at the above what happens is that in pre, a new span is created and
put in thread local. It is then closed in the post and removed from
ThreadLocal. That's not what you're doing in beforeStatement and
afterStatement in your example.
> This code would need to changed regardless, most likely to something like
Brave.currentTracer() which would be able to obtain the current tracer
appropriately. I don’t see how adding open/close to ScopedValue values
would alleviate this.
Typically this information gets passed via a constructor. Most likely in
this case some JDBC SPI is being called and that class is instantiated
without any dependencies.
> I am guessing most libraries have these hard-coded dependencies on
ThreadLocal.
They do not. They use abstractions with scopes. Micrometer Observation gets
the current observation from an ObservationRegistry. Underneath the default
implementation does look into TL but it could look into SV.
> Thus, someone will write a VirtualThread/ScopedValue “native” tracing
library, and that will be what people use - or developers will need to
modify their libraries to use ScopedValues in an APPROPRIATE manner.
I'm trying to agree with you what APPROPRIATE means because I still don't
understand because I think we're comparing apples to oranges at this point.
> You seem to believe that a tracing library user will want to create a
new span on every ScopedValue.runWhere() - I don’t think that is the case -
as it will generate a lot of noise.
I know a few things about tracing libraries and instrumenting projects
because I've been doing it for a decade. I never said that you should
create a span on every runWhere. Assuming that tracing libraries would be
using SV then I can imagine that when a Span would be put in scope then if
it's not there in scope already then runWhere should be run.
Pozdrawiam / Best regards,
Marcin Grzejszczak
https://marcin.grzejszczak.pl
https://toomuchcoding.com
pon., 17 cze 2024 o 14:14 Robert Engels <robaho at icloud.com> napisał(a):
> I updated the github.com/robaho/scope_trace code to demonstrate
> before/after tracing using ScopedValues. There are no ThreadLocals in the
> code. It works fine.
>
> The problem with open/close semantics is that it is easy to close the
> scopes out of order - which corrupts the tracing information.
>
> Again referring to brave, look at
> https://github.com/openzipkin/brave/blob/69003dfc811418f0dbc42e9e17ff880ebe1f4b02/instrumentation/mysql/src/main/java/brave/mysql/TracingStatementInterceptor.java#L39
>
> This is an example of before/after tracing. It REQUIRES that the
> preStatement() and postStatment() will ALWAYS be executed in the correct
> sequence (with no intervening spans left open).
>
> Notice also
>
> Span span = ThreadLocalSpan.CURRENT_TRACER.next();
>
> This code would need to changed regardless, most likely to something like
> Brave.currentTracer() which would be able to obtain the current tracer
> appropriately. *I don’t see how adding open/close to ScopedValue values
> would alleviate this.*
>
> I am guessing most libraries have these hard-coded dependencies on
> ThreadLocal.
>
> Thus, someone will write a VirtualThread/ScopedValue “native” tracing
> library, and that will be what people use - or developers will need to
> modify their libraries to use ScopedValues in an APPROPRIATE manner. You
> seem to believe that a tracing library user will want to create a new span
> on every ScopedValue.runWhere() - I don’t think that is the case - as it
> will generate a lot of noise.
>
> “scope values” are not only for tracing scopes.
>
>
> On Jun 17, 2024, at 7:01 AM, robert engels <robaho at icloud.com> wrote:
>
> Your statements like “a user puts a scope in a SV won’t be honored”. Of
> course not. I think you are trying to conflate scoped values with tracing
> scopes. They are not the same thing and can’t be treated as such due to the
> volume.
>
> The user will manage scopes for tracing the way they do now. It is an
> implementation detail on how the tracing library manages these scopes. They
> currently use thread locals. As I’ve pointed out several times the library
> can use a scoped value to carry the scope context - and mange the active
> scopes within in
>
> You are trying to make the scoped values be able to support tracing
> directly. I don’t believe that was ever a design goal.
>
> On Jun 17, 2024, at 5:59 AM, Marcin Grzejszczak <
> marcin.grzejszczak at gmail.com> wrote:
>
>
> > Definitely, yes. If you need to create a context for every virtual
> thread, scoped values versus thread-local variables is the least of your
> problems.
>
> Can you elaborate please?
>
> Pozdrawiam / Best regards,
> Marcin Grzejszczak
>
> https://marcin.grzejszczak.pl
> https://toomuchcoding.com
>
>
> czw., 13 cze 2024 o 19:23 Andrew Haley <aph-open at littlepinkcloud.com>
> napisał(a):
>
>> On 6/13/24 16:03, Robert Engels wrote:
>> > 3. More importantly, if you use VT effectively, you are talking about
>> > orders of magnitude more “trace contexts” (in the default brave handler
>> > they are shared by thread so they are highly limited since the only
>> > effective Java threading implementation prior to VT required pooled
>> > threads) which reinforces my point about the increase in the volume of
>> > unique data is the major problem for existing tracing libraries, which
>> > will probably require architectural changes anyway.
>>
>> Definitely, yes. If you need to create a context for every virtual thread,
>> scoped values versus thread-local variables is the least of your problems.
>>
>> --
>> Andrew Haley (he/him)
>> Java Platform Lead Engineer
>> Red Hat UK Ltd. <https://www.redhat.com>
>> https://keybase.io/andrewhaley
>> EAC8 43EB D3EF DB98 CC77 2FAD A5CD 6035 332F A671
>>
>>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mail.openjdk.org/pipermail/loom-dev/attachments/20240617/c490eb1b/attachment.htm>
More information about the loom-dev
mailing list