-
Notifications
You must be signed in to change notification settings - Fork 304
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-30917 Avoid core when eclagent terminates due to span destruction #18084
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -377,18 +377,24 @@ int CEspHttpServer::processRequest() | |
|
||
checkSetCORSAllowOrigin(thebinding, m_request, m_response); | ||
|
||
if (thebinding!=NULL) | ||
if (thebinding && thebinding->isUnrestrictedSSType(stype)) | ||
{ | ||
if (thebinding->isUnrestrictedSSType(stype)) | ||
{ | ||
thebinding->onGetUnrestricted(m_request.get(), m_response.get(), serviceName.str(), methodName.str(), stype); | ||
ctx->addTraceSummaryTimeStamp(LogMin, "handleHttp"); | ||
return 0; | ||
} | ||
//Avoid creating a span for unrestrictedSSType requests | ||
thebinding->onGetUnrestricted(m_request.get(), m_response.get(), serviceName.str(), methodName.str(), stype); | ||
ctx->addTraceSummaryTimeStamp(LogMin, "handleHttp"); | ||
return 0; | ||
} | ||
|
||
//Avoids unrestrictedSSType requests | ||
m_request->startSpan(); | ||
//The context will be destroyed when this request is destroyed. So rather than using | ||
//EspContextSpanScope spanContext(*ctx, serverSpan); | ||
//which would remove the activeSpan when this function exits, use | ||
//setActiveSpan() | ||
//It is possible that using EspContextSpanScope would be better | ||
Owned<ISpan> serverSpan = m_request->createServerSpan(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I changed this to create the span, but not set it in the context because there was no clean way to restore the span, and the HttpRequest class is used in other contexts than esp. For the moment I have left it using setActiveSpan, but it can now be changed to restore at the end of the function. |
||
ctx->setActiveSpan(serverSpan); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not necessary to remove the span for reasons commented, |
||
|
||
if (thebinding!=NULL) | ||
{ | ||
if(stricmp(method.str(), POST_METHOD)==0) | ||
thebinding->handleHttpPost(m_request.get(), m_response.get()); | ||
else if(!stricmp(method.str(), GET_METHOD)) | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,6 +75,54 @@ extern jlib_decl ISpan * getNullSpan(); | |
extern jlib_decl void initTraceManager(const char * componentName, const IPropertyTree * componentConfig, const IPropertyTree * globalConfig); | ||
extern jlib_decl ITraceManager & queryTraceManager(); | ||
|
||
//The following class is responsible for ensuring that the active span is restored in a context when the scope is exited | ||
//Use a template class so it can be reused for IContextLogger and IEspContext | ||
template <class CONTEXT> | ||
class ContextSpanScopeImp | ||
{ | ||
public: | ||
ContextSpanScopeImp(CONTEXT & _ctx, ISpan * span) | ||
: ctx(_ctx) | ||
{ | ||
prev.set(ctx.queryActiveSpan()); | ||
ctx.setActiveSpan(span); | ||
} | ||
~ContextSpanScopeImp() | ||
{ | ||
ctx.setActiveSpan(prev); | ||
} | ||
|
||
protected: | ||
CONTEXT & ctx; | ||
Owned<ISpan> prev; | ||
}; | ||
|
||
// A variant of the class above that allows startSpan to be called after construction | ||
template <class CONTEXT> | ||
class DynamicContextSpanScopeImp | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I get why different, but I'd have probably combined into ContextSpanScopeImp, i.e. separate ctor etc. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes. I could revisit, but probably not for this PR. |
||
{ | ||
public: | ||
~DynamicContextSpanScopeImp() | ||
{ | ||
finishSpan(); | ||
} | ||
void startSpan(CONTEXT & _ctx, ISpan * span) | ||
{ | ||
ctx = &_ctx; | ||
prev.set(ctx->queryActiveSpan()); | ||
ctx->setActiveSpan(span); | ||
} | ||
void finishSpan() | ||
{ | ||
if (ctx) | ||
ctx->setActiveSpan(prev); | ||
} | ||
|
||
protected: | ||
CONTEXT * ctx{nullptr}; | ||
Owned<ISpan> prev; | ||
}; | ||
|
||
/* | ||
To use feature-level tracing flags, protect the tracing with a test such as: | ||
|
||
|
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.
Moved this earlier so that the span could be created whether or not thebinding is set.