-
Notifications
You must be signed in to change notification settings - Fork 83
Replace aioboto3 with boto3 #80
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
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
3b02b4a
Remove aioboto3
rahul003 4ee5ecd
Make sync the main handler
rahul003 6f302f4
Remove aioboto3 completely, add tests
rahul003 0dabf2d
Remove perf test from pytest
rahul003 ee549ce
Merge branch 'master' into s3handler
rahul003 030aeeb
Update setup.py
rahul003 d73d366
Import aioboto3 and update async handler to handle range with no length
rahul003 42a7829
Merge master
rahul003 6d1110b
Add s3transfer integration
rahul003 c6d9bc4
Add benchmark numbers
rahul003 1099207
Use multiprocessing
jarednielsen 41e3413
Benchmark with and without multiprocessing
jarednielsen 1394532
remove results of perf test
rahul003 e3b9cf5
Merge branch 's3handler' of https://github.com/awslabs/sagemaker-debu…
rahul003 776aa2f
Convert class to static methods, so it works with py3.6
rahul003 30c9bc7
Remove async handler
rahul003 40cfc29
Add perf test back for now
jarednielsen 72d6038
Use multiprocessing spawn on Mac
jarednielsen 323dbaf
Only use MP if len(object_requests)>=100
rahul003 eecf6aa
Merge
rahul003 e132ee1
Make path a kwarg
rahul003 eba4e04
Change multiprocessing multiple to 2
rahul003 9acf1f9
Rename tornasole to smdebug-testing
rahul003 83bb1c0
Fix delete test
rahul003 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
Large diffs are not rendered by default.
Oops, something went wrong.
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.
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.
can we pin all these versions to a unique version ?
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.
Python dependency management works different than other languages, due to how PyPI dependency resolution works.
I did some research about it. Here's a reference https://stackoverflow.com/a/44938662. As library developers, we should not be pinning to any specific version. The maintainers of environments which include this library, or users of library can pin to specific versions of dependencies they use. If the library itself pins a specific version of a dependency, then some other package which also depends on that same dependency in the same environment can't be installed due to version conflicts.
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.
We should not block this PR. Let's talk about pinning, goals behind it and how can we achieve those goals.