-
Notifications
You must be signed in to change notification settings - Fork 140
fix: prevent premature stream closure in EventConsumer grace period #764
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
Draft
kabir
wants to merge
5
commits into
a2aproject:main
Choose a base branch
from
kabir:fix-local-handling-race-condition
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
60ed504
fix: prevent premature stream closure in EventConsumer grace period
kabir 714b1f1
test: add temporary workflow to verify race condition fix
kabir 6f7cba2
Fix awaiting final logic
kabir 01d5451
fix: clear awaitingFinalEvent flag on queue when timeout reached
kabir 9095c38
Increase timeout before closing stream
kabir File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,75 @@ | ||
| name: Test Event Race Condition (Loop 100x) | ||
|
|
||
| on: | ||
| push: | ||
| pull_request: | ||
| workflow_dispatch: | ||
|
|
||
| jobs: | ||
| test-loop: | ||
| name: Test Loop (${{ matrix.transport }}, JDK ${{ matrix.java }}) | ||
| runs-on: ubuntu-latest | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| java: ['17', '21', '25'] | ||
| transport: ['rest', 'jsonrpc', 'grpc'] | ||
|
|
||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Set up JDK ${{ matrix.java }} | ||
| uses: actions/setup-java@v4 | ||
| with: | ||
| java-version: ${{ matrix.java }} | ||
| distribution: 'temurin' | ||
| cache: 'maven' | ||
|
|
||
| - name: Build project (skip tests) | ||
| run: mvn clean install -DskipTests -B -V | ||
|
|
||
| - name: Run tests in loop (100 iterations) | ||
| run: | | ||
| MODULE="reference/${{ matrix.transport }}" | ||
| TEST_CLASS="QuarkusA2ARestJdkTest" | ||
|
|
||
| # Different test class names for different transports | ||
| if [ "${{ matrix.transport }}" == "jsonrpc" ]; then | ||
| TEST_CLASS="QuarkusA2AJSONRPCJdkTest" | ||
| elif [ "${{ matrix.transport }}" == "grpc" ]; then | ||
| TEST_CLASS="QuarkusA2AGrpcTest" | ||
| fi | ||
|
|
||
| TESTS="${TEST_CLASS}#testAgentToAgentLocalHandling+testNonBlockingWithMultipleMessages+testAuthRequiredWorkflow" | ||
|
|
||
| echo "Module: ${MODULE}" | ||
| echo "Test class: ${TEST_CLASS}" | ||
| echo "Running tests: ${TESTS}" | ||
|
|
||
| for i in {1..100}; do | ||
| echo "===================================================================" | ||
| echo "Iteration $i/100" | ||
| echo "===================================================================" | ||
|
|
||
| mvn test -pl "${MODULE}" -Dtest="${TESTS}" -B | ||
|
|
||
| if [ $? -ne 0 ]; then | ||
| echo "❌ Test failed on iteration $i" | ||
| exit 1 | ||
| fi | ||
|
|
||
| echo "✅ Iteration $i passed" | ||
| done | ||
|
|
||
| echo "===================================================================" | ||
| echo "✅ All 100 iterations passed!" | ||
| echo "===================================================================" | ||
|
|
||
| - name: Upload surefire reports on failure | ||
| if: failure() | ||
| uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: surefire-reports-${{ matrix.transport }}-jdk${{ matrix.java }} | ||
| path: reference/${{ matrix.transport }}/target/surefire-reports/ | ||
| retention-days: 7 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
The
awaitingFinalEventflag is accessed from multiple threads without ensuring visibility of changes. TheEventConsumerthread reads the flag via thisisAwaitingFinalEvent()method, while another thread writes to it when an event is enqueued. This can lead to a race condition where the consumer thread reads a stale value.To guarantee that writes to
awaitingFinalEventare visible to other threads, it should be declared asvolatile. UsingAtomicBooleanwithcompareAndSet()is not strictly necessary since the variable is thread-confined.For example, in
ChildQueue:This will establish a proper happens-before relationship and ensure the fix is thread-safe.
References
volatileis sufficient for visibility and correctness. UsingAtomicBooleanwithcompareAndSet()is a general recommendation for managing shared mutable state across multiple threads, but it's not strictly necessary in a thread-confined context.