-
Notifications
You must be signed in to change notification settings - Fork 1
add shared memory support to MemoryBucket so that it can be shared in multiprocess scenarios (tests) #164
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
Merged
Merged
add shared memory support to MemoryBucket so that it can be shared in multiprocess scenarios (tests) #164
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
aac36d5
add shared memory support to MemoryBucket so that it can be shared in…
amaximciuc 8a961f7
Merge branch 'master' into picklable-shared-memorybucket
amaximciuc 7207b2e
[copilot] Enhance MemoryBucket with shared manager support and improv…
amaximciuc 4465056
Increase MinIO timeout to 12 seconds in tests.
amaximciuc d765c99
Refactor locking mechanism in AppendOnlyFSBucket tests for improved t…
amaximciuc 36ba9cf
Add max-parallel configuration to build job
amaximciuc 662511f
Increase MinIO client timeout to 30 seconds in test setup
amaximciuc b00245c
Refactor Python package workflow to use 'uv' for dependency installat…
amaximciuc df12452
Update dependency installation command to include --system flag for p…
amaximciuc da0674f
Add poetry lock step in workflow and fix directory name in container …
amaximciuc 4873d84
Add poetry lock step in workflow and fix directory name in container …
amaximciuc 8f4bdbb
Increase MinIO client timeout to 30(from 12) seconds for improved sta…
amaximciuc 0bb2336
[LLM review]
amaximciuc 5b2b603
v1.5.4: Added SharedMemoryBucket for multiprocessing support
asuiu 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
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
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
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.
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.
Uh oh!
There was an error while loading. Please reload this page.
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.
🧩 Analysis chain
🌐 Web query:
actions/setup-python GitHub Action latest version 2025💡 Result:
The latest release is actions/setup-python v6.1.0 — published Nov 25, 2025. [1][2]
Sources:
🌐 Web query:
actions/setup-python v4 deprecated v5 v6 release history💡 Result:
Summary timeline for actions/setup-python (major points)
Sources:
If you want exact release dates and full changelogs for each minor release (v4.x, v5.x, v6.x), I can list them with direct links.
Citations:
@actions/cacheneeds to be updated actions/setup-python#1037Upgrade
actions/setup-pythonto v6 — v4 works fine, but v6 is where the action is heading.v4 isn't actually deprecated; it's just old. The latest is v6.1.0 (released November 2025), which requires Node.js 24 and includes meaningful improvements. If you're modernizing the workflow, v6 is the move. (v5 exists as a midpoint with some caching quirks, so skip it.)
One secondary thought: running
poetry lockon every CI run will regenerate the lock file if there's any drift. If someone forgets to commit an updated lock file, CI silently fixes it—masking the mistake. Consider usingpoetry check --lockorpoetry install --no-updateinstead to verify the lock file matches without regenerating it.Proposed fix
- name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }}📝 Committable suggestion
🧰 Tools
🪛 actionlint (1.7.10)
33-33: the runner of "actions/setup-python@v4" action is too old to run on GitHub Actions. update the action's version to fix this issue
(action)
🤖 Prompt for AI Agents
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.
an upgrade to v6 could be done in the future, in a dedicated PR.
about the poetry lock file -- will ask the real maintainer(@asuiu ) on how to approach it.
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.
@amaximciucFair enough. Ship when ready, iterate later. Makes sense to get@asuiu's input on the lock file strategy—better to have consistency across the repo than to optimize one workflow in isolation.