-
Notifications
You must be signed in to change notification settings - Fork 429
[Store] Enable Client SSD Offload And Storage Persistence #437
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
stmatengss
merged 56 commits into
kvcache-ai:main
from
SgtPepperr:client-ssd-persistence
Jul 2, 2025
Merged
Changes from all commits
Commits
Show all changes
56 commits
Select commit
Hold shift + click to select a range
951c093
enable client ssd offload and storage persistence
159442d
add storage_root_path in all tests setup() initialization and add rel…
b02d7bd
clean up headers and improve code readability - Added consistent Doxy…
9e25771
Revert "add storage_root_path in all tests setup() initialization and…
4d5f4dc
Restore the high-level API to its original state and modify it to int…
240e56a
add local_file_test and thread_pool_test
cd275dc
feat(client_ssd_offload): implement async writes and fix locking bugs
5443d6d
add support for remove , remove_all , isexist interface etc.
d78414e
feat(kvcache): implement cluster isolation with session IDs
6e93a21
edit two parameters client get, add persisitence path in client rathe…
7971c4c
merge main
91591b1
add support for batch api conflict , refactor replica.descriptor to s…
4b28a49
add test branch
13d8dc1
add ci ssd
1f00e2c
change python test
b915991
add log for fail
f77dd9d
change querykey return value type
e68318a
fix bug
4392df4
fix bug
7c78507
add sleep for removefile
3dfc8cd
fix sleep
ffc9e59
edit ci.yml and fix delete before write problem
fdd112d
add comment for storage_backend
36d9ae5
spell check
4ae5b00
fix conflict
c5cae7a
fix name problem and decrease errorcode for file
3f6be2b
fix conflict
d75a522
add pytest for ssd offload
8c83a02
edit test
f0138b3
edit test
68f0887
fix test
ad60b71
fix bug
273b9f2
fix test
c722b39
Modify the thread pool value capture to reference capture to fix the …
37151d7
fix conflict with upstream
3d1d5fd
add async getfrom file in batchget transfertask. delete file_storage_…
ab405ba
fix conflict
b772440
add support for HA in cluster_id subdirectory, change session_id to f…
f15ad63
Merge branch 'main' into client-ssd-persistence
a8adcd0
add persistence in batchput
f348dba
add disk allocate for get_into py interface
7768e29
fix bug
f2323bf
temp
1f048ab
fix bug in submit fileread task for std:move(slices)
4885ff7
edit querykey to return optional<descriptor>, add interface batchquer…
a1d527f
Merge branch 'main' into client-ssd-persistence
38df0bf
fix confict in batchget, add batchget/batchput test
87266fe
fix bug
01b2f0a
fix bug
ca41bab
comment batch test
d6b3c34
Merge branch 'main' into client-ssd-persistence
726859b
fix conflict and add batch_get_into file test
8ba5207
fix test bug
745888b
fix test bug
a4facc9
fix conflict
6cf962e
fix conflict
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
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.
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.
Could we move the thread pool into the StorageManager? since it's meant for the StorageManager, not the client.