-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
feat(storage/dataflux): run worksteal listing parallel to sequential listing #10966
Open
akansha1812
wants to merge
32
commits into
googleapis:main
Choose a base branch
from
akansha1812:main
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.
Open
Changes from 23 commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
3ab3831
test case for fast-list
akansha1812 559ae40
resolve comments
akansha1812 1cdc956
add object_lister and worksteal to fast_list
akansha1812 7eb0471
Merge branch 'googleapis:main' into main
akansha1812 1f05177
add unit tests with emulator
akansha1812 05b1515
Merge branch 'googleapis:main' into main
akansha1812 5bed09c
resolve PR errors
akansha1812 80054bf
reduce numobjects to resolve timeout error
akansha1812 e33adf5
reduce objects created for timeout error
akansha1812 b1b69b9
remove env variables for grpc and http
akansha1812 c2e56f8
run dataflux emulator tests
akansha1812 c78aaba
Merge branch 'main' into main
akansha1812 b714222
Merge branch 'main' into main
akansha1812 4028cb6
resolve comments
akansha1812 4851cc8
update ranges to nil when sequential listing is faster
akansha1812 0d494e0
default page size for seq listing is 5000
akansha1812 722e961
remove version enabled from TestDoSeqListingEmulated
akansha1812 f3c1571
increase emulator time
akansha1812 db1a757
make next_page more readable
akansha1812 56ab509
Merge branch 'main' into main
akansha1812 2b72b0e
to resolve race conditions
akansha1812 692e74e
rename goroutineID to id
akansha1812 a6cb0f4
Merge branch 'main' into main
akansha1812 1998873
move counter from beginning of the loop
akansha1812 7583e16
add mutex to error counter
akansha1812 4b1dcf0
emulator test for error counter and remove worker to track error from…
akansha1812 34f0840
Merge branch 'main' into main
akansha1812 564bbd3
test emulator error
akansha1812 ab830f6
grpc client returns context eror in desc
akansha1812 e14c31a
Merge branch 'main' into main
akansha1812 5af30c7
Merge branch 'main' into main
akansha1812 328f2b7
Merge branch 'main' into main
akansha1812 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 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 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 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.
Won't this be a race condition when c.method is open and both sequential and worksteal are running at the same time? Can we hit this case in a emulator test?
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.
Added unit test to catch this in the race conditions.