You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The initial contents of the PR contain an admission2 package which is derived from a well-tested internal code base (with permission). Because the code is well tested w/ Mutex locking, I want to pursue merging it and replacing the original admission (which is FIFO and has a race condition) and the new admission2 (which is LIFO and addresses the race condition).
After the race condition and FIFO->LIFO change is applied, it will be easier to study and test the contention topic exposed here.
The text was updated successfully, but these errors were encountered:
As @lquerel suggested here, open-telemetry/opentelemetry-collector-contrib#36140 (comment), we may wish to reduce the potential for lock contention.
The initial contents of the PR contain an
admission2
package which is derived from a well-tested internal code base (with permission). Because the code is well tested w/ Mutex locking, I want to pursue merging it and replacing the originaladmission
(which is FIFO and has a race condition) and the newadmission2
(which is LIFO and addresses the race condition).After the race condition and FIFO->LIFO change is applied, it will be easier to study and test the contention topic exposed here.
The text was updated successfully, but these errors were encountered: