Release pulsar-jms-8.0.0 for pulsar-4.0.x compatibility. - #192
Merged
Merged
Conversation
- Consolidate 3 separate workflow files (tests.yaml, tck-client-side-filters.yaml, tck-server-side-filters.yaml) into single unified ci.yaml - Implement build caching strategy to share artifacts across parallel jobs - Split pulsar-jms tests into 4 parallel groups by test name patterns (A-G, H-L, M-R, S-Z) - Split TCK tests into multiple parallel groups for both client-side and server-side filters: - Core tests: 5 groups (a, b-c, d-q, r-z, other) - Core20 tests: 4 groups (a-d, e-m, n-z, other) - Others: signature tests and non-jms tests - Add run_tck_group.sh script for flexible TCK test execution with pattern matching - Add ReflectionUtils helper for test utilities - Update test classes to use PulsarContainerExtension consistently - Enhance PulsarMessage with additional utility methods - Update various test files for better reliability and consistency - Improve pulsar-client-shaded POM configuration - Update TCK executor configuration and scripts for parallel execution - Add concurrency control to cancel in-progress runs on new pushes This optimization significantly reduces CI execution time by running tests in parallel while maintaining comprehensive test coverage across all modules.
heesung-sohn
force-pushed
the
optimize-ci-parallel-jobs
branch
from
January 28, 2026 23:35
40cc2e2 to
0ea64d4
Compare
dlg99
approved these changes
Jan 29, 2026
dlg99
left a comment
Contributor
There was a problem hiding this comment.
LGTM; just a nitpick about commented out logging
| try { | ||
| ServerSession session = sessions.take(); | ||
| // log.info("picked session {}", session); | ||
| // log.debug("picked session {}", session); |
| () -> { | ||
| try { | ||
| // log.info("executing session {}", this); | ||
| // log.debug("executing session {}", this); |
| session.run(); | ||
| } finally { | ||
| // log.info("returning session {}", this); | ||
| // log.debug("returning session {}", this); |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Release pulsar-jms-8.0.0 for pulsar-4.0.x compatibility.
Updates:
- Consolidate 3 separate workflow files (tests.yaml, tck-client-side-filters.yaml, tck-server-side-filters.yaml) into single unified ci.yaml
- Implement build caching strategy to share artifacts across parallel jobs
- Split pulsar-jms tests into 4 parallel groups by test name patterns (A-G, H-L, M-R, S-Z)
- Split TCK tests into multiple parallel groups for both client-side and server-side filters:
- Core tests: 5 groups (a, b-c, d-q, r-z, other)
- Core20 tests: 4 groups (a-d, e-m, n-z, other)
- Others: signature tests and non-jms tests
- Add run_tck_group.sh script for flexible TCK test execution with pattern matching
- Add ReflectionUtils helper for test utilities
- Update test classes to use PulsarContainerExtension consistently
- Enhance PulsarMessage with additional utility methods
- Update various test files for better reliability and consistency
- Improve pulsar-client-shaded POM configuration
- Update TCK executor configuration and scripts for parallel execution
- Add concurrency control to cancel in-progress runs on new pushes