Skip to content
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

Parallel block upload #1678

Closed
touilleMan opened this issue Apr 7, 2021 · 1 comment
Closed

Parallel block upload #1678

touilleMan opened this issue Apr 7, 2021 · 1 comment
Assignees
Labels
enhancement Improve functionality, potentially changing behavior
Projects

Comments

@touilleMan
Copy link
Member

Currently we don't upload file blocks in parallel, it would be a nice performance boost to do that ;-)

async def _upload_blocks(self, manifest: RemoteFileManifest) -> None:
for access in manifest.blocks:
try:
data = await self.local_storage.get_dirty_block(access.id)
except FSLocalMissError:
continue
await self.remote_loader.upload_block(access, data)

@touilleMan touilleMan added the enhancement Improve functionality, potentially changing behavior label Apr 7, 2021
@touilleMan touilleMan added this to New comers in Dev Board via automation Apr 7, 2021
@touilleMan touilleMan moved this from New comers to Ready in Dev Board Apr 7, 2021
@vamonte vamonte self-assigned this Apr 14, 2021
@vamonte vamonte moved this from Ready to Doing in Dev Board Apr 28, 2021
@vamonte vamonte moved this from Doing to Done in Dev Board May 5, 2021
@Ironicbay
Copy link
Contributor

Closed by #1695

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement Improve functionality, potentially changing behavior
Projects
No open projects
Dev Board
To review
Development

No branches or pull requests

3 participants