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

Use Glob in PUT file paths and Allow for Multi File Upload #13

Merged
merged 28 commits into from
Mar 16, 2024
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
8e439f0
Refactor PUT to avoid sending files before validating all filenames a…
colin99d Jan 14, 2024
7968c19
Merge branch 'main' into MultiFile
colin99d Jan 14, 2024
d43d108
Added glob with file paths
colin99d Jan 14, 2024
d44e7bb
Works, but really dirty and no speed optimization
colin99d Jan 14, 2024
391639e
Cleaned up multi file upload
colin99d Jan 14, 2024
734101b
Made file an optional feature
colin99d Jan 14, 2024
d19867d
Cleaned up for an MVP
colin99d Jan 14, 2024
5b33549
FMT
colin99d Jan 14, 2024
0f3a006
Added fix
colin99d Jan 14, 2024
52a0bf5
Limit concurrency
colin99d Jan 14, 2024
d1b424b
Fixed glob
colin99d Jan 28, 2024
88455a8
Removed unnecessary batching
colin99d Jan 28, 2024
7675124
Only upload small files sequentially
colin99d Feb 3, 2024
592cf74
Updated
colin99d Feb 18, 2024
750e92c
Merged
colin99d Feb 18, 2024
22cdd58
Various improvements
colin99d Feb 18, 2024
b9d12c2
Continued clean up
colin99d Feb 18, 2024
0da5e5a
Cleaned the code and fixed a bug
colin99d Feb 18, 2024
940b8a3
Did a lot of cleaning
colin99d Feb 18, 2024
1986f87
Abstracted file processing code
colin99d Feb 18, 2024
606d054
Merged
colin99d Feb 24, 2024
5dd4224
Cleaned up clippy
colin99d Feb 24, 2024
a26f939
Limit concurrent threads
colin99d Feb 24, 2024
7993a93
Merge remote-tracking branch 'origin/main' into MultiFile
andrusha Mar 3, 2024
e80fa39
Use limit store for parallel uploads
andrusha Mar 9, 2024
418460d
Merge remote-tracking branch 'origin/main' into MultiFile
andrusha Mar 16, 2024
8a9b47b
Use auth env for file transfer example
andrusha Mar 16, 2024
ae8b38f
Add note on glob uploading support
andrusha Mar 16, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added fix
colin99d committed Jan 14, 2024

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
commit 0f3a006500d3b9984d88ec33691634a8fe433ca8
2 changes: 1 addition & 1 deletion snowflake-api/README.md
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ Since it does a lot of I/O the library is async-only, and currently has hard dep
- [x] AWS integration
- [ ] GCloud integration
- [ ] Azure integration
- [ ] Parallel uploading of small files
- [x] Parallel uploading of small files

## Why