AWS S3
Configuration
The configuration of the Amazon Web Services Simple Cloud Storage can be done through a variety of ways. Most require you to have an Access Key
and a Secret Key
.
Best practice is to create a specific IAM user for Apache Hop so that if needed you can fine-tune the permissions (set it to read-only for example) or indeed delete the user if it’s no longer needed.
For a complete list see Working with credentials in the AWS documentation.
Below are 2 popular ways of configuring access.
Part size
You can set the default part size for new files on S3 by setting the following variable:
HOP_S3_VFS_PART_SIZE
This needs to be set as a global Hop configuration variable (in hop-config.json). You can use the Tools/Edit config variables menu in Hop GUI or you can use the hop-conf command line tool to do so.
Acceptable are 5MB
as a minimum and 5GB
as a maximum value.
If this variable is not set, 5MB
will be taken as value and a message will be printed on the console while creating files on S3:
Part size null less than minimum of 5MB, set to minimum
.
Usage and testing
To test if the configuration works you can simply upload a small CSV file in an S3 bucket and then use File/Open in Hop GUI. Then you type in s3://
as a file location and hit enter (or click the refresh button). Browse to the CSV file you uploaded and open it. If all is configured correctly you should be able to see the content in the Hop GUI.