-
Notifications
You must be signed in to change notification settings - Fork 307
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
HPCC-33574 ActiveSpanScope false error message due to null spans #19600
Conversation
Jira Issue: https://hpccsystems.atlassian.net//browse/HPCC-33574 Jirabot Action Result: |
This PR addresses an issue that causes spurious error logging when the ActiveSpanScope has a nullptr. Which can be useful to simplify code that tracks work being done that may or may not be related to a span. |
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.
@jpmcmu one question.
system/jlib/jtrace.cpp
Outdated
@@ -1591,7 +1591,11 @@ ActiveSpanScope::ActiveSpanScope(ISpan * _ptr, ISpan * _prev) : span(_ptr), prev | |||
ActiveSpanScope::~ActiveSpanScope() | |||
{ | |||
ISpan* current = queryThreadedActiveSpan(); | |||
if (current != span) | |||
|
|||
// NOTE: need to handle span == nullptr differently because queryThreadActiveSpan returns the cNullSpan in this case |
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.
When was this occurring? Can you provide some more details - because I would expect span to never be null.
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.
@ghalliday The only place I am aware of is here in the dafilesrv code: https://github.com/hpcc-systems/HPCC-Platform/blob/master/fs/dafsserver/dafsserver.cpp#L1127
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.
@ghalliday thoughts on the above? I have been looking at ActiveSpanScope(nullptr) as a valid use case to make it easier for developers to handle code that may or may not be traced. However, I can see an argument for defaulting to CNullSpan in these cases.
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.
This code would be simpler if null could not be passed to the constructor - only queryNullSpan(). The test on line 1601 would also be simpler.
I would be tempted to map nullptr to queryNullSpan() in the constructor. Is there a disadvantage in that?
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.
No, I think that is a better approach. I will make that change
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.
@jpmcmu please squash
- Modified ActiveSpanScope to convert nullptr to the cNullSpan Signed-off-by: James McMullan [email protected]
@ghalliday squashed |
Jirabot Action Result: |
Signed-off-by: James McMullan [email protected]
Type of change:
Checklist:
Smoketest:
Testing: