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

put_archive: note the data may also be a stream #2478

Merged
merged 1 commit into from
Feb 22, 2023

Conversation

akx
Copy link
Contributor

@akx akx commented Dec 10, 2019

The docs imply the data parameter to put_archive() must be bytes (a bytestring), which is not the case; a stream is fine too since it's passed directly to Requests.

In fact, the tests for the put_archive() feature always pass in a stream:

with helpers.simple_tar(test_file.name) as test_tar:
self.client.put_archive(ctnr, '/vol1', test_tar)

@felixfontein
Copy link
Contributor

This is also something I noticed recently. I've taken a look at the Requests adapters provided by docker-py, it doesn't look like they do anything funky which will prevent this. But I'm not really familiar with these aspects of Requests (and the adapters) to be able to say this with full confidence :)

@akx
Copy link
Contributor Author

akx commented Jan 27, 2020

@felixfontein Well, it works for me in production as we speak 😁

@felixfontein
Copy link
Contributor

@akx out of curiosity, which transports are you using it with / did you test it with? There's unix, tcp, tcp+tls, ssh+unix, and npipe (Windows only).

@akx
Copy link
Contributor Author

akx commented Jan 28, 2020

@felixfontein Plain UNIX in this instance.

@damwiw
Copy link

damwiw commented Jan 12, 2023

Hi,
After a code review of request.py and Go docker client, I can confirm:

  • request accepts streams (documentation: file-like objects) as data field. iter and read methods are expected.
  • docker cp command with stdin as input uses such a mechanism.
    By the way, tar archive may be a tar gzipped archive.
    Sucessfully tested with 4 Go of compressed tar archive.

Signed-off-by: Aarni Koskela <akx@iki.fi>
@akx
Copy link
Contributor Author

akx commented Feb 3, 2023

Rebased. Could a maintainer take a look?

Copy link
Contributor

@milas milas left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for rebasing, let's get this merged 🙂

@milas milas merged commit aaf68b7 into docker:main Feb 22, 2023
@akx akx deleted the put-archive-docs branch December 21, 2023 08:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants