-
Notifications
You must be signed in to change notification settings - Fork 326
Make dissect processor thread-safe #5546
Copy link
Copy link
Open
Labels
good first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is neededmaintenanceIssues to help maintain the project, such as improving builds, testing, etc.Issues to help maintain the project, such as improving builds, testing, etc.
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is neededmaintenanceIssues to help maintain the project, such as improving builds, testing, etc.Issues to help maintain the project, such as improving builds, testing, etc.
Type
Fields
Give feedbackNo fields configured for issues without a type.
Projects
Status
Unplanned
Is your feature request related to a problem? Please describe.
The
dissectprocessor should be thread-safe. We are using@SingleThreadon it as a short-term mitigation. But, this is not ideal as it requires additional objects.Describe the solution you'd like
Make
dissectthread-safe and remove@SingleThread.Additional context
In this PR, we added the
@SingleThreadannotation: #5463