📚 The CoCalc Library - books, templates and other resources
License: OTHER
This notebook was prepared by Donne Martin. Source and license info is on GitHub.
Amazon Web Services (AWS)
SSH to EC2
Boto
S3cmd
s3-parallel-put
S3DistCp
Redshift
Kinesis
Lambda
SSH to EC2
Connect to an Ubuntu EC2 instance through SSH with the given key:
Connect to an Amazon Linux EC2 instance through SSH with the given key:
Configure boto by creating a ~/.boto file with the following:
Work with S3:
Work with EC2:
Create a bucket and put an object in that bucket:
S3cmd
Before I discovered S3cmd, I had been using the S3 console to do basic operations and boto to do more of the heavy lifting. However, sometimes I just want to hack away at a command line to do my work.
I've found S3cmd to be a great command line tool for interacting with S3 on AWS. S3cmd is written in Python, is open source, and is free even for commercial use. It offers more advanced features than those found in the AWS CLI.
Install s3cmd:
Running the following command will prompt you to enter your AWS access and AWS secret keys. To follow security best practices, make sure you are using an IAM account as opposed to using the root account.
I also suggest enabling GPG encryption which will encrypt your data at rest, and enabling HTTPS to encrypt your data in transit. Note this might impact performance.
Frequently used S3cmds:
s3-parallel-put
s3-parallel-put is a great tool for uploading multiple files to S3 in parallel.
Install package dependencies:
Clone the s3-parallel-put repo:
Setup AWS keys for s3-parallel-put:
Sample usage:
Dry run of putting files in the current directory on S3 with the given S3 prefix, do not check first if they exist:
S3DistCp
S3DistCp is an extension of DistCp that is optimized to work with Amazon S3. S3DistCp is useful for combining smaller files and aggregate them together, taking in a pattern and target file to combine smaller input files to larger ones. S3DistCp can also be used to transfer large volumes of data from S3 to your Hadoop cluster.
To run S3DistCp with the EMR command line, ensure you are using the proper version of Ruby:
The EMR command line below executes the following:
Create a master node and slave nodes of type m1.small
Runs S3DistCp on the source bucket location and concatenates files that match the date regular expression, resulting in files that are roughly 1024 MB or 1 GB
Places the results in the destination bucket
For further optimization, compression can be helpful to save on AWS storage and bandwidth costs, to speed up the S3 to/from EMR transfer, and to reduce disk I/O. Note that compressed files are not easy to split for Hadoop. For example, Hadoop uses a single mapper per GZIP file, as it does not know about file boundaries.
What type of compression should you use?
Time sensitive job: Snappy or LZO
Large amounts of data: GZIP
General purpose: GZIP, as it’s supported by most platforms
You can specify the compression codec (gzip, lzo, snappy, or none) to use for copied files with S3DistCp with –outputCodec. If no value is specified, files are copied with no compression change. The code below sets the compression to lzo:
Redshift
Copy values from the given S3 location containing CSV files to a Redshift cluster:
Copy values from the given location containing TSV files to a Redshift cluster:
View Redshift errors:
Vacuum Redshift in full:
Analyze the compression of a table:
Cancel the query with the specified id:
The CANCEL command will not abort a transaction. To abort or roll back a transaction, you must use the ABORT or ROLLBACK command. To cancel a query associated with a transaction, first cancel the query then abort the transaction.
If the query that you canceled is associated with a transaction, use the ABORT or ROLLBACK. command to cancel the transaction and discard any changes made to the data:
Reference table creation and setup:
Table name | Sort Key | Distribution Style |
---|---|---|
LINEORDER | lo_orderdate | lo_partkey |
PART | p_partkey | p_partkey |
CUSTOMER | c_custkey | ALL |
SUPPLIER | s_suppkey | ALL |
DWDATE | d_datekey | ALL |
When you create a table, you can specify one or more columns as the sort key. Amazon Redshift stores your data on disk in sorted order according to the sort key. How your data is sorted has an important effect on disk I/O, columnar compression, and query performance.
Choose sort keys for based on these best practices:
If recent data is queried most frequently, specify the timestamp column as the leading column for the sort key.
If you do frequent range filtering or equality filtering on one column, specify that column as the sort key.
If you frequently join a (dimension) table, specify the join column as the sort key.
When you create a table, you designate one of three distribution styles: KEY, ALL, or EVEN.
KEY distribution
The rows are distributed according to the values in one column. The leader node will attempt to place matching values on the same node slice. If you distribute a pair of tables on the joining keys, the leader node collocates the rows on the slices according to the values in the joining columns so that matching values from the common columns are physically stored together.
ALL distribution
A copy of the entire table is distributed to every node. Where EVEN distribution or KEY distribution place only a portion of a table's rows on each node, ALL distribution ensures that every row is collocated for every join that the table participates in.
EVEN distribution
The rows are distributed across the slices in a round-robin fashion, regardless of the values in any particular column. EVEN distribution is appropriate when a table does not participate in joins or when there is not a clear choice between KEY distribution and ALL distribution. EVEN distribution is the default distribution style.
Kinesis
Create a stream:
List all streams:
Get info about the stream:
Put a record to the stream:
Get records from a given shard:
Delete a stream:
Lambda
List lambda functions:
Upload a lambda function:
Invoke a lambda function:
Update a function:
Return metadata for a specific function:
Return metadata for a specific function along with a presigned URL that you can use to download the function's .zip file that you uploaded:
Add an event source:
Add permissions:
Check policy permissions:
Delete a lambda function: