Run Commands

Write an S3 Object

Learn how to write an S3 object through the S3 Gateway.

You can write an S3 object to a Pachyderm repo within a project by performing the following commands:

Tool:
  1. Create the object:
aws --endpoint-url http://localhost:30600/ s3 cp test.csv s3://master.foo.bar

# upload: ./test.csv to s3://master.foo.bar/test.csv
  1. Check that the object was added:
aws --endpoint-url http://localhost:30600/ s3 ls s3://master.foo.bar/

# 2021-04-26 12:11:37  2685061 github_issues_medium.csv
# 2021-04-26 12:11:37  62 test.csv
ℹī¸

Not all the repositories that you see in the results of the ls command are repositories that can be written to. Some of them might be read-only. Note that you should have writing access to the input repo in order to be able to add files to it.