opentracing / opentracing-java

OpenTracing API for Java. 🛑 This library is DEPRECATED! https://github.com/opentracing/specification/issues/163
http://opentracing.io
Apache License 2.0
1.68k stars 344 forks source link

Remove finish span on close #301

Closed carlosalberto closed 5 years ago

carlosalberto commented 6 years ago

Addresses #291

SpanBuilder.startActive(Span, boolean) and ScopeManager.activate(Span, bool) have been kept, but as deprecated methods.

Updated the opentracing-testbed code to use this change, and added a new, small, error-reporting case.

cc @felixbarny @adriancole @yurishkuro @tedsuo @sjoerdtalsma

coveralls commented 6 years ago

Coverage Status

Coverage decreased (-0.6%) to 73.464% when pulling fdb669950da30f0693e7310a39de675fff34bd12 on carlosalberto:remove_finish_span_on_close into d6c6509d5524f99039e34cbf121df79c46a25147 on opentracing:v0.32.0.

codefromthecrypt commented 6 years ago

on the note about scope.. it is odd because scope in opentracing still has an accessor to the span. it makes it awkward and still encourages passing the scope around. I think this should be removed along with this change.

When scope.span() is removed, it leaves you with at least two paths for doing "startActive" if chosen as a method to retain.

1) encourage use of "current span" logic like census https://github.com/census-instrumentation/opencensus-java/blob/c943c6c63637cc866e92b90dae0e48dccd488130/api/src/main/java/io/opencensus/trace/SpanBuilder.java#L186 2) use a special span that closes an implicit scope on finish like brave https://github.com/openzipkin/brave/blob/master/brave/src/main/java/brave/ScopedSpan.java#L7

Either way, please don't forget to remove your scope.span as it encourages people to leak scopes.

carlosalberto commented 6 years ago

Hey @adriancole

Thanks for the feedback. So my personal take for your points is:

  1. That's not a bad thing, but then people would need to remember to do something like:
Span span = tracer.buildSpan("one").startActive();
try {
} catch (Exception e) {
  ...
  span.finish();
} finally {
   tracer.scopeManager.active().close();
}

This being implicit kinda makes me wonder (but definitely thing to consider).

  1. A special Span is something that would add complexity to the current (relatively simple) API. For example: what happens if this very special Span is passed to another thread? I'd leave it as a potential addition in the future.

So the thing about removing Scope.span() is probably fine, as long as we have ScopeManager.activeSpan() (so we always expose the current active Span and the active Scope without explicitly linking them together). However, I'd like to hear the opinion of other people here.

Opinions? @felixbarny @yurishkuro @tedsuo

yurishkuro commented 6 years ago

are we shooting for this?

Span span = tracer.buildSpan("nasty").start();
try (Scope scope = tracer.activate(span)) {
  // do nasty stuff
} catch (Exception e) {
  span.SetTag(...);
  ...
} finally {
  span.finish();
}

It makes the usage slightly more verbose than the current api, especially without try-with-resource (only if <=1.6, who cares), but avoids the misuse. scope.span() is removed.

felixbarny commented 6 years ago

I agree with @yurishkuro

*deprecate and eventually remove

carlosalberto commented 6 years ago

Hey,

Was wondering, after the feedback, about this (small variation):

carlosalberto commented 6 years ago

For additional information: some frameworks do not let us 'wrap' their entire operation, but provide hooks for start and end events (guaranteed to run in the same thread), so we either need a) to let Scope be passed around (even if there is a risk that some users may pass it to another thread), or b) expose it in ScopeManager.active() (which is also risky).

In some cases, as mentioned in the main discussion, the user does not even have a place to store context information as part of the aforementioned start/end hooks, so the latter is definitely helpful.

Either way, we decide to go a) or b) (or even both), and improving greatly the documentation (mentioning what should never be done with Scopes and related) should be the way to go.

felixbarny commented 6 years ago

Sounds fine to me

carlosalberto commented 5 years ago

Hey all,

This PR is updated to reflect the latest requested changes, namely:

@yurishkuro @adriancole @felixbarny

carlosalberto commented 5 years ago

@yurishkuro Thanks for the edit notes, appreciated. Please take a look whenever you can ;)

carlosalberto commented 5 years ago

Hey @felixbarny @adriancole Wondering if you are fine with this PR? If yes, I'd like to have it merged, and probably have a Release Candidate to test things out soon after.

@yurishkuro Docs edits look good to you? ;)

felixbarny commented 5 years ago

LGTM

carlosalberto commented 5 years ago

Thanks @felixbarny !

I will proceed to merge this PR tomorrow as if seems to have found a proper trade-off of features, unless there's any complain from anybody ;)

carlosalberto commented 5 years ago

Merged, thanks everybody for their feedback! Remember that this is not a final change, and it could be changed if/as needed (we will likely be doing a Release Candidate to test this and other changes out) ;)

sjoerdtalsma commented 5 years ago

@carlosalberto I didn't participate in this PR as my opinion is already voiced by others, but I forgot to thank you for creating this! So thanks :smile: