SlideShare uma empresa Scribd logo
1 de 58
Baixar para ler offline
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Best Practices for Data Warehousing
with Amazon Redshift & Redshift
Spectrum
T o n y G i b b s , S e n i o r D a t a W a r e h o u s i n g S o l u t i o n s A r c h i t e c t
AWS re:Invent
N o v e m b e r 2 8 , 2 0 1 7
ABD304
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Are you an Amazon Redshift user?
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
• History and development
• Concepts and table design
• Data storage, ingestion, and ELT
• Workload Management and Query Monitoring Rules
• Node types and cluster sizing
• Additional resources
• Open Q&A
Amazon Redshift Best Practices Overview
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
History and Development
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
PostgreSQL
Columnar
MPP
OLAP
AWS IAMAmazon VPCAmazon SWF
Amazon S3 AWS KMS
Amazon
Route 53
Amazon
CloudWatch
Amazon EC2
Amazon Redshift
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
February 2013
November 2017
> 125 Significant Patches
> 165 Significant Features
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Concepts and Table Design
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Load
Unload
Backup
Restore
Massively parallel, shared nothing
columnar architecture
Leader node
• SQL endpoint
• Stores metadata
• Coordinates parallel SQL
processing
Compute nodes
• Local, columnar storage
• Executes queries in parallel
• Load, unload, backup, restore
Amazon Redshift Spectrum nodes
• Execute queries directly against
Amazon Simple Storage Service
(Amazon S3)
SQL Clients/BI Tools
128GB RAM
16TB disk
16 cores
JDBC/ODBC
128GB RAM
16TB disk
16 coresCompute
Node
128GB RAM
16TB disk
16 coresCompute
Node
128GB RAM
16TB disk
16 coresCompute
Node
Leader
Node
Amazon S3
...
1 2 3 4 N
Amazon
Redshift
Spectrum
Load
Query
Amazon Redshift Architecture
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Terminology and Concepts: Columnar
Amazon Redshift uses a columnar architecture for storing data on
disk
Goal: reduce I/O for analytics queries
Physically store data on disk by column rather than row
Only read the column data that is required
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Columnar Architecture: Example
Row-based storage
• Need to read everything
• Unnecessary I/O
aid loc dt
CREATE TABLE deep_dive (
aid INT --audience_id
,loc CHAR(3) --location
,dt DATE --date
);
aid loc dt
1 SFO 2017-10-20
2 JFK 2017-10-20
3 SFO 2017-04-01
4 JFK 2017-05-14
SELECT min(dt) FROM deep_dive;
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Columnar Architecture: Example
Column-based storage
• Only scan blocks for relevant
column
CREATE TABLE deep_dive (
aid INT --audience_id
,loc CHAR(3) --location
,dt DATE --date
);
aid loc dt
1 SFO 2017-10-20
2 JFK 2017-10-20
3 SFO 2017-04-01
4 JFK 2017-05-14
SELECT min(dt) FROM deep_dive;
aid loc dt
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Terminology and Concepts: Compression
Goals:
• Allow more data to be stored within an Amazon Redshift cluster
• Improve query performance by decreasing I/O
Impact:
• Allows two to four times more data to be stored within the cluster
By default, COPY automatically analyzes and compresses data on first
load into an empty table
ANALYZE COMPRESSION is a built-in command that will find the
optimal compression for each column on an existing table
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Compression: Example
aid loc dt
aid loc dt
1 SFO 2017-10-20
2 JFK 2017-10-20
3 SFO 2017-04-01
4 JFK 2017-05-14
Add 1 of 11 different
encodings to each column
CREATE TABLE deep_dive (
aid INT --audience_id
,loc CHAR(3) --location
,dt DATE --date
);
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Compression: Example
More efficient compression is due to
storing the same data type in the
columnar architecture
Columns grow and shrink independently
Reduces storage requirements
Reduces I/O
aid loc dt
CREATE TABLE deep_dive (
aid INT ENCODE ZSTD
,loc CHAR(3) ENCODE BYTEDICT
,dt DATE ENCODE RUNLENGTH
);
aid loc dt
1 SFO 2017-10-20
2 JFK 2017-10-20
3 SFO 2017-04-01
4 JFK 2017-05-14
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Best Practices: Compression
Apply compression to all tables
Use ANALYZE COMPRESSION command to find optimal compression
• RAW (no compression) for sparse columns and small tables
Changing column encoding requires a table rebuild
https://github.com/awslabs/amazon-redshift-utils/tree/master/src/ColumnEncodingUtility
Verifying columns are compressed: SELECT "column", type, encoding FROM pg_table_def
WHERE tablename = 'deep_dive';
column | type | encoding
--------+--------------+----------
aid | integer | zstd
loc | character(3) | bytedict
dt | date | runlength
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Terminology and Concepts: Blocks
Column data is persisted to 1 MB immutable blocks
Blocks are individually encoded with 1 of 11 encodings
A full block can contain millions of values
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Terminology and Concepts: Zone Maps
Goal: eliminates unnecessary I/O
In-memory block metadata
• Contains per-block min and max values
• All blocks automatically have zone maps
• Effectively prunes blocks which cannot contain data for a
given query
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Terminology and Concepts: Data Sorting
Goal: make queries run faster by increasing the effectiveness of zone maps
and reducing I/O
Impact: enables range-restricted scans to prune blocks by leveraging zone
maps
Achieved with the table property SORTKEY defined on one or more columns
Optimal sort key is dependent on:
• Query patterns
• Business requirements
• Data profile
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Sort Key: Example
Add a sort key to one or more columns to
physically sort the data on disk
CREATE TABLE deep_dive (
aid INT --audience_id
,loc CHAR(3) --location
,dt DATE --date
) SORT KEY (dt, loc);
CREATE TABLE deep_dive (
aid INT --audience_id
,loc CHAR(3) --location
,dt DATE --date
);
deep_dive
aid loc dt
1 SFO 2017-10-20
2 JFK 2017-10-20
3 SFO 2017-04-01
4 JFK 2017-05-14
deep_dive (sorted)
aid loc dt
3 SFO 2017-04-01
4 JFK 2017-05-14
2 JFK 2017-10-20
1 SFO 2017-10-20
deep_dive (sorted)
aid loc dt
3 SFO 2017-04-01
deep_dive (sorted)
aid loc dt
3 SFO 2017-04-01
4 JFK 2017-05-14
deep_dive (sorted)
aid loc dt
3 SFO 2017-04-01
4 JFK 2017-05-14
2 JFK 2017-10-20
deep_dive (sorted)
aid loc dt
3 SFO 2017-04-01
4 JFK 2017-05-14
2 JFK 2017-10-20
1 SFO 2017-10-20
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
SELECT count(*) FROM deep_dive WHERE dt = '06-09-2017';
MIN: 01-JUNE-2017
MAX: 06-JUNE-2017
MIN: 07-JUNE-2017
MAX: 12-JUNE-2017
MIN: 13-JUNE-2017
MAX: 21-JUNE-2017
MIN: 21-JUNE-2017
MAX: 30-JUNE-2017
Sorted by date
MIN: 01-JUNE-2017
MAX: 20-JUNE-2017
MIN: 08-JUNE-2017
MAX: 30-JUNE-2017
MIN: 12-JUNE-2017
MAX: 20-JUNE-2017
MIN: 02-JUNE-2017
MAX: 25-JUNE-2017
Unsorted table
Zone Maps and Sorting: Example
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Best Practices: Sort Keys
Place the sort key on columns that are frequently filtered on placing the
lowest cardinality columns first
• On most fact tables, the first sort key column should be a temporal
column
• Columns added to a sort key after a high-cardinality column are not
effective
With an established workload, use the following scripts to help find sort key
suggestions:
https://github.com/awslabs/amazon-redshift-utils/blob/master/src/AdminScripts/filter_used.sql
https://github.com/awslabs/amazon-redshift-utils/blob/master/src/AdminScripts/predicate_columns.sql
Design considerations:
• Sort keys are less beneficial on small tables
• Define four or less sort key columns—more will result in marginal
gains and increased ingestion overhead
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Terminology and Concepts: Slices
A slice can be thought of like a virtual compute node
• Unit of data partitioning
• Parallel query processing
Facts about slices:
• Each compute node has either 2, 16, or 32 slices
• Table rows are distributed to slices
• A slice processes only its own data
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Data Distribution
Distribution style is a table property which dictates how
that table’s data is distributed throughout the cluster:
• KEY: value is hashed, same value goes to same
location (slice)
• ALL: full table data goes to the first slice of every
node
• EVEN: round robin
ALL
Node 1
Slice
1
Slice
2
Node 2
Slice
3
Slice
4
KEY
Node 1
Slice
1
Slice
2
Node 2
Slice
3
Slice
4
Node 1
Slice
1
Slice
2
Node 2
Slice
3
Slice
4
EVENGoals:
• Distribute data evenly
for parallel processing
• Minimize data
movement during query
processing
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
CREATE TABLE deep_dive (
aid INT --audience_id
,loc CHAR(3) --location
,dt DATE --date
) DISTSTYLE (EVEN|KEY|ALL);
Data Distribution: Example
Node 1
Slice 0 Slice 1
Node 2
Slice 2 Slice 3
Table: deep_dive
User Columns System Columns
aid loc dt ins del row
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Data Distribution: EVEN Example
CREATE TABLE deep_dive (
aid INT --audience_id
,loc CHAR(3) --location
,dt DATE --date
) DISTSTYLE EVEN;
Node 1
Slice 0 Slice 1
Node 2
Slice 2 Slice 3
INSERT INTO deep_dive VALUES
(1, 'SFO', '2016-09-01'),
(2, 'JFK', '2016-09-14'),
(3, 'SFO', '2017-04-01'),
(4, 'JFK', '2017-05-14');
Table: deep_dive
User Columns System Columns
aid loc dt ins del row
Table: deep_dive
User Columns System Columns
aid loc dt ins del row
Table: deep_dive
User Columns System Columns
aid loc dt ins del row
Table: deep_dive
User Columns System Columns
aid loc dt ins del row
Rows: 0 Rows: 0 Rows: 0 Rows: 0Rows: 1 Rows: 1 Rows: 1 Rows: 1
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
CREATE TABLE deep_dive (
aid INT --audience_id
,loc CHAR(3) --location
,dt DATE --date
) DISTSTYLE KEY DISTKEY (loc);
Data Distribution: KEY Example #1
Node 1
Slice 0 Slice 1
Node 2
Slice 2 Slice 3
INSERT INTO deep_dive VALUES
(1, 'SFO', '2016-09-01'),
(2, 'JFK', '2016-09-14'),
(3, 'SFO', '2017-04-01'),
(4, 'JFK', '2017-05-14');
Table: deep_dive
User Columns System Columns
aid loc dt ins del row
Rows: 2 Rows: 0 Rows: 0Rows: 0Rows: 1
Table: deep_dive
User Columns System Columns
aid loc dt ins del row
Rows: 2Rows: 0Rows: 1
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Data Distribution: KEY Example #2
CREATE TABLE deep_dive (
aid INT --audience_id
,loc CHAR(3) --location
,dt DATE --date
) DISTSTYLE KEY DISTKEY (aid);
Node 1
Slice 0 Slice 1
Node 2
Slice 2 Slice 3
INSERT INTO deep_dive VALUES
(1, 'SFO', '2016-09-01'),
(2, 'JFK', '2016-09-14'),
(3, 'SFO', '2017-04-01'),
(4, 'JFK', '2017-05-14');
Table: deep_dive
User Columns System Columns
aid loc dt ins del row
Table: deep_dive
User Columns System Columns
aid loc dt ins del row
Table: deep_dive
User Columns System Columns
aid loc dt ins del row
Table: deep_dive
User Columns System Columns
aid loc dt ins del row
Rows: 0 Rows: 0 Rows: 0 Rows: 0Rows: 1 Rows: 1 Rows: 1 Rows: 1
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Data Distribution: ALL Example
Node 1
Slice 0 Slice 1
Node 2
Slice 2 Slice 3
INSERT INTO deep_dive VALUES
(1, 'SFO', '2016-09-01'),
(2, 'JFK', '2016-09-14'),
(3, 'SFO', '2017-04-01'),
(4, 'JFK', '2017-05-14');
Rows: 0 Rows: 0
Table: deep_dive
User Columns System Columns
aid loc dt ins del row
Rows: 0Rows: 1Rows: 2Rows: 4Rows: 3
Table: deep_dive
User Columns System Columns
aid loc dt ins del row
Rows: 0Rows: 1Rows: 2Rows: 4Rows: 3
CREATE TABLE deep_dive (
aid INT --audience_id
,loc CHAR(3) --location
,dt DATE --date
) DISTSTYLE ALL;
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Best Practices: Data Distribution
DISTSTYLE KEY
• Goals
• Optimize JOIN performance between large tables
• Optimize INSERT INTO SELECT performance
• Optimize GROUP BY performance
• The column that is being distributed on should have a high cardinality and not cause row
skew:
DISTSTYLE ALL
• Goals
• Optimize JOIN performance with dimension tables
• Reduces disk usage on small tables
• Small and medium size dimension tables (< 3M rows)
DISTSTYLE EVEN
• If neither KEY or ALL apply (or you are unsure)
SELECT diststyle, skew_rows FROM svv_table_info WHERE "table" = 'deep_dive';
diststyle | skew_rows
-----------+-----------
KEY(aid) | 1.07  Ratio between the slice with the most and least number of rows
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Best Practices: Table Design Summary
Materialize often filtered columns from dimension tables into fact tables
Materialize often calculated values into tables
Avoid distribution keys on temporal columns
Keep data types as wide as necessary (but no longer than necessary)
• VARCHAR, CHAR, and NUMERIC
Add compression to columns
• Optimal compression can be found using ANALYZE COMPRESSION
Add sort keys on the primary columns that are filtered on
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Data Storage, Ingestion, and ELT
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Terminology and Concepts: Disks
Amazon Redshift utilizes locally attached storage devices
• Compute nodes have 2½ to 3 times the advertised storage
capacity
Each disk is split into two partitions
• Local data storage, accessed by local CN
• Mirrored data, accessed by remote CN
Partitions are raw devices
• Local storage devices are ephemeral in nature
• Tolerant to multiple disk failures on a single node
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Terminology and Concepts: Redundancy
Global commit ensures all permanent tables have written blocks to another node
in the cluster to ensure data redundancy
Asynchronously backup blocks to Amazon S3—always consistent snapshot
• Every 5 GB of changed data or eight hours
• User on-demand manual snapshots
Temporary tables
• Blocks are not mirrored to the remote partition—two-times faster write
performance
• Do not trigger a full commit or backups
Disable backups at the table level:
CREATE TABLE example(id int) BACKUP NO;
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Terminology and Concepts: Transactions
Amazon Redshift is a fully transactional, ACID compliant data
warehouse
• Isolation level is serializable
• Two phase commits (local and global commit phases)
Cluster commit statistics:
https://github.com/awslabs/amazon-redshift-utils/blob/master/src/AdminScripts/commit_stats.sql
Design consideration:
• Because of the expense of commit overhead, limit commits by
explicitly creating transactions
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Data Ingestion: COPY Statement
Ingestion throughput:
• Each slice’s query
processors can load one
file at a time:
o Streaming
decompression
o Parse
o Distribute
o Write
Realizing only partial node
usage as 6.25% of slices are
active
0 2 4 6 8 10 12 141 3 5 7 9 11 13 15
DC2.8XL Compute Node
1 Input File
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Number of input files should be
a multiple of the number of
slices
Splitting the single file into 16
input files, all slices are working
to maximize ingestion
performance
COPY continues to scale linearly
as you add nodes
Data Ingestion: COPY Statement
16 Input Files
Recommendation is to use delimited files—1 MB to 1 GB after gzip compression
0 2 4 6 8 10 12 141 3 5 7 9 11 13 15
DC2.8XL Compute Node
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Best Practices: COPY Ingestion
Delimited files are recommend
• Pick a simple delimiter '|' or ',' or tabs
• Pick a simple NULL character (N)
• Use double quotes and an escape character ('  ') for varchars
• UTF-8 varchar columns take four bytes per char
Split files so there is a multiple of the number of slices
Files sizes should be 1 MB–1 GB after gzip compression
Useful COPY options
• MAXERRORS
• ACCEPTINVCHARS
• NULL AS
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Data Ingestion: Amazon Redshift Spectrum
Use INSERT INTO SELECT against external Amazon S3 tables
• Ingest additional file formats: Parquet, ORC, Grok
• Aggregate incoming data
• Select subset of columns and/or rows
• Manipulate incoming column data with SQL
Best practices:
• Save cluster resources for querying and reporting rather than on ELT
• Filtering/aggregating incoming data can improve performance over COPY
Design considerations:
• Repeated reads against Amazon S3 are not transactional
• $5/TB of (compressed) data scanned
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Design Considerations: Data Ingestion
Designed for large writes
• Batch processing system, optimized for processing massive amounts of
data
• 1 MB size plus immutable blocks means that we clone blocks on write so
as not to introduce fragmentation
• Small write (~1-10 rows) has similar cost to a larger write (~100K rows)
UPDATE and DELETE
• Immutable blocks means that we only logically delete rows on UPDATE
or DELETE
• Must VACUUM or DEEP COPY to remove ghost rows from table
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
s3://bucket/dd.csv
aid loc dt
1 SFO 2017-10-20
2 JFK 2017-10-20
5 SJC 2017-10-10
6 SEA 2017-11-29
Data Ingestion: Deduplication/UPSERT
Table: deep_dive
aid loc dt
1 SFO 2016-09-01
2 JFK 2016-09-14
3 SFO 2017-04-01
4 JFK 2017-05-14
Table: deep_dive
aid loc dt
1 SFO 2017-10-20
2 JFK 2016-09-14
3 SFO 2017-04-01
4 JFK 2017-05-14
Table: deep_dive
aid loc dt
1 SFO 2017-10-20
2 JFK 2017-10-20
3 SFO 2017-04-01
4 JFK 2017-05-14
5 SJC 2017-10-10
Table: deep_dive
aid loc dt
1 SFO 2017-10-20
2 JFK 2017-10-20
3 SFO 2017-04-01
4 JFK 2017-05-14
5 SJC 2017-10-10
6 SEA 2017-11-29
Table: deep_dive
aid loc dt
1 SFO 2017-10-20
2 JFK 2017-10-20
3 SFO 2017-04-01
4 JFK 2017-05-14
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Data Ingestion: Deduplication/UPSERT
1. Load CSV data into a staging table
2. Delete duplicate data from the production
table
3. Insert (or append) data from the staging into
the production table
Steps:
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Data Ingestion: Deduplication/UPSERT
BEGIN;
CREATE TEMP TABLE staging(LIKE deep_dive);
COPY staging FROM 's3://bucket/dd.csv'
: ' creds ' COMPUPDATE OFF;
DELETE deep_dive d
USING staging s WHERE d.aid = s.aid;
INSERT INTO deep_dive SELECT * FROM staging;
DROP TABLE staging;
COMMIT;
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Wrap workflow/statements in an explicit transaction
Consider using DROP TABLE or TRUNCATE instead of DELETE
Staging Tables:
• Use temporary table or permanent table with the “BACKUP NO” option
• If possible use DISTSTYLE KEY on both the staging table and
production table to speed up the INSERT INTO SELECT statement
• Turn off automatic compression—COMPUPDATE OFF
• Copy compression settings from production table or use ANALYZE
COMPRESSION statement
• Use CREATE TABLE LIKE or write encodings into the DDL
• For copying a large number of rows (> hundreds of millions) consider
using ALTER TABLE APPEND instead of INSERT INTO SELECT
Best Practices: ELT
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
VACUUM will globally sort the table and remove rows that are marked as deleted
• For tables with a sort key, ingestion operations will locally sort new data
and write it into the unsorted region
ANALYZE collects table statistics for optimal query planning
Best Practices:
• VACUUM should be run only as necessary
• Typically nightly or weekly
• Consider Deep Copy (recreating and copying data) for larger or wide tables
• ANALYZE can be run periodically after ingestion on just the columns that WHERE
predicates are filtered on
• Utility to VACUUM and ANALYZE all the tables in the cluster:
https://github.com/awslabs/amazon-redshift-utils/tree/master/src/AnalyzeVacuumUtility
Vacuum and Analyze
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Workload Management and
Query Monitoring Rules
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Allows for the separation of different query workloads
Goals
• Prioritize important queries
• Throttle/abort less important queries
Control concurrent number of executing of queries
Divide cluster memory
Set query timeouts to abort long running queries
Workload Management (WLM)
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Queues
• Assigned a percentage of cluster memory
• SQL queries execute in queue based on
• User group: which groups the user belongs to
• Query group session level variable
Slots
• Division of memory within a WLM Queue, correlated
with the number of simultaneous running queries
• WLM_QUERY_SLOT_COUNT is a session level variable
• Useful to increase for memory intensive operations
Terminology and Concepts: WLM
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Use case:
• Light ingestion/ELT on a continuous cadence of 10 minutes
• Peak reporting workload during business hours (7 a.m.–7 p.m.)
• Heavy ingestion/ELT nightly (11 p.m.–3 a.m.)
User types:
• Business reporting and dashboards
• Analysts and data science teams
• Database administrators
Workload Management: Example
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
• Unallocated memory goes into a general pool that can be used by any
queue
• Hidden superuser queue can be used by admins, manually switched into:
SET query_group TO 'superuser'
• The superuser queue has a single slot, the equivalent of 5–7% memory
allocation, and no timeout
Workload Management: Example
Queue Name Memory Slots/Concurrency Timeout
(seconds)
Ingestion 20% 2 None
Dashboard 50% 10 120
Default (Analysts) 25% 3 None
Create a queue for each workload type:
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Extension of workload management (WLM)
Allow the automatic handling of runaway (poorly written) queries
Rules applied to a WLM queue allow queries to be:
• LOGGED
• ABORTED
• HOPPED
Goals
• Protect against wasteful use of the cluster
• Log resource-intensive queries
Query Monitoring Rules (QMR)
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Keep the number of WLM queues to a minimum, typically just three
queues to avoid having unused queues
https://github.com/awslabs/amazon-redshift-utils/blob/master/src/AdminScripts/wlm_apex_hourly.sql
Use WLM to limit ingestion/ELT concurrency to two to three
To maximize query throughput, use WLM to throttle the number of
concurrent queries to 15 or less
Use QMR rather than WLM to set query timeouts
Use QMR to log long running queries
Save the superuser queue for administration tasks and canceling
queries
Best Practices: WLM and QMR
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Node Types and Cluster Sizing
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Dense Compute—DC2
• Solid state disks
Dense Storage—DS2
• Magnetic disks
Instance
Type
Disk Type Size Memory CPUs
DC2 large NVMe SSD 160 GB 16 GB 2
DC2 8xlarge NVMe SSD 2.56 TB 244 GB 32
DS2 xlarge Magnetic 2 TB 32 GB 4
DS2 8xlarge Magnetic 16 TB 244 GB 36
Terminology and Concepts: Node Types
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Best Practices: Cluster Sizing
Use at least two computes nodes (multi-node cluster) in production for data
mirroring
• Leader node is given for no additional cost
Amazon Redshift is significantly faster in a VPC compared to EC2 Classic
Maintain at least 20% free space or three times the size of the largest table
• Scratch space for usage, rewriting tables
• Free space is required for vacuum to re-sort table
• Temporary tables used for intermediate query results
The maximum number of available Amazon Redshift Spectrum nodes is a function of
the number of slices in the Amazon Redshift cluster
If you’re using DC1 instances, upgrade to the DC2 instance type
• Same price as DC1, significantly faster
• Reserved Instances do not automatically transfer over
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Additional Resources
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
AWS Labs on GitHub—Amazon Redshift
https://github.com/awslabs/amazon-redshift-utils
https://github.com/awslabs/amazon-redshift-monitoring
https://github.com/awslabs/amazon-redshift-udfs
Admin Scripts
Collection of utilities for running diagnostics on your cluster
Admin Views
Collection of utilities for managing your cluster, generating schema DDL,
and so on
Analyze Vacuum Utility
Utility that can be scheduled to vacuum and analyze the tables within your
Amazon Redshift cluster
Column Encoding Utility
Utility that will apply optimal column encoding to an established schema
with data already loaded
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
AWS Big Data Blog—Amazon Redshift
Amazon Redshift Engineering’s Advanced Table Design Playbook
https://aws.amazon.com/blogs/big-data/amazon-redshift-engineerings-advanced-table-design-
playbook-preamble-prerequisites-and-prioritization/
- Zach Christopherson
Top 10 Performance Tuning Techniques for Amazon Redshift
https://aws.amazon.com/blogs/big-data/top-10-performance-tuning-techniques-for-amazon-
redshift/
- Ian Meyers and Zach Christopherson
10 Best Practices for Amazon Redshift Spectrum
https://aws.amazon.com/blogs/big-data/10-best-practices-for-amazon-redshift-spectrum/
- Po Hong and Peter Dalton
© 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
Thank you!
T o n y G i b b s

Mais conteúdo relacionado

Mais procurados

민첩하고 비용효율적인 Data Lake 구축 - 문종민 솔루션즈 아키텍트, AWS
민첩하고 비용효율적인 Data Lake 구축 - 문종민 솔루션즈 아키텍트, AWS민첩하고 비용효율적인 Data Lake 구축 - 문종민 솔루션즈 아키텍트, AWS
민첩하고 비용효율적인 Data Lake 구축 - 문종민 솔루션즈 아키텍트, AWSAmazon Web Services Korea
 
Visualizing Big Data Insights with Amazon QuickSight
Visualizing Big Data Insights with Amazon QuickSightVisualizing Big Data Insights with Amazon QuickSight
Visualizing Big Data Insights with Amazon QuickSightAmazon Web Services
 
MongoDB for Time Series Data: Schema Design
MongoDB for Time Series Data: Schema DesignMongoDB for Time Series Data: Schema Design
MongoDB for Time Series Data: Schema DesignMongoDB
 
ABD318_Architecting a data lake with Amazon S3, Amazon Kinesis, AWS Glue and ...
ABD318_Architecting a data lake with Amazon S3, Amazon Kinesis, AWS Glue and ...ABD318_Architecting a data lake with Amazon S3, Amazon Kinesis, AWS Glue and ...
ABD318_Architecting a data lake with Amazon S3, Amazon Kinesis, AWS Glue and ...Amazon Web Services
 
AWS Lake Formation을 통한 손쉬운 데이터 레이크 구성 및 관리 - 윤석찬 :: AWS Unboxing 온라인 세미나
AWS Lake Formation을 통한 손쉬운 데이터 레이크 구성 및 관리 - 윤석찬 :: AWS Unboxing 온라인 세미나AWS Lake Formation을 통한 손쉬운 데이터 레이크 구성 및 관리 - 윤석찬 :: AWS Unboxing 온라인 세미나
AWS Lake Formation을 통한 손쉬운 데이터 레이크 구성 및 관리 - 윤석찬 :: AWS Unboxing 온라인 세미나Amazon Web Services Korea
 
Challenges in Building a Data Pipeline
Challenges in Building a Data PipelineChallenges in Building a Data Pipeline
Challenges in Building a Data PipelineManish Kumar
 
30분만에 만드는 AWS 기반 빅데이터 분석 애플리케이션::안효빈::AWS Summit Seoul 2018
30분만에 만드는 AWS 기반 빅데이터 분석 애플리케이션::안효빈::AWS Summit Seoul 201830분만에 만드는 AWS 기반 빅데이터 분석 애플리케이션::안효빈::AWS Summit Seoul 2018
30분만에 만드는 AWS 기반 빅데이터 분석 애플리케이션::안효빈::AWS Summit Seoul 2018Amazon Web Services Korea
 
Realtime Analytics on AWS
Realtime Analytics on AWSRealtime Analytics on AWS
Realtime Analytics on AWSSungmin Kim
 
Best Practices for Building Your Data Lake on AWS
Best Practices for Building Your Data Lake on AWSBest Practices for Building Your Data Lake on AWS
Best Practices for Building Your Data Lake on AWSAmazon Web Services
 
Deep Dive: Scaling Up to Your First 10 Million Users
Deep Dive: Scaling Up to Your First 10 Million UsersDeep Dive: Scaling Up to Your First 10 Million Users
Deep Dive: Scaling Up to Your First 10 Million UsersAmazon Web Services
 
AWS Lake Formation Deep Dive
AWS Lake Formation Deep DiveAWS Lake Formation Deep Dive
AWS Lake Formation Deep DiveCobus Bernard
 
Object Storage: Amazon S3 and Amazon Glacier
Object Storage: Amazon S3 and Amazon GlacierObject Storage: Amazon S3 and Amazon Glacier
Object Storage: Amazon S3 and Amazon GlacierAmazon Web Services
 
Modern Big Data Analytics Tools: An Overview
Modern Big Data Analytics Tools: An OverviewModern Big Data Analytics Tools: An Overview
Modern Big Data Analytics Tools: An OverviewGreat Wide Open
 
Next generation intelligent data lakes, powered by GraphQL & AWS AppSync - MA...
Next generation intelligent data lakes, powered by GraphQL & AWS AppSync - MA...Next generation intelligent data lakes, powered by GraphQL & AWS AppSync - MA...
Next generation intelligent data lakes, powered by GraphQL & AWS AppSync - MA...Amazon Web Services
 

Mais procurados (20)

민첩하고 비용효율적인 Data Lake 구축 - 문종민 솔루션즈 아키텍트, AWS
민첩하고 비용효율적인 Data Lake 구축 - 문종민 솔루션즈 아키텍트, AWS민첩하고 비용효율적인 Data Lake 구축 - 문종민 솔루션즈 아키텍트, AWS
민첩하고 비용효율적인 Data Lake 구축 - 문종민 솔루션즈 아키텍트, AWS
 
Introduction to Amazon Aurora
Introduction to Amazon AuroraIntroduction to Amazon Aurora
Introduction to Amazon Aurora
 
Deep Dive on Amazon Redshift
Deep Dive on Amazon RedshiftDeep Dive on Amazon Redshift
Deep Dive on Amazon Redshift
 
Big Data and Analytics on AWS
Big Data and Analytics on AWS Big Data and Analytics on AWS
Big Data and Analytics on AWS
 
Visualizing Big Data Insights with Amazon QuickSight
Visualizing Big Data Insights with Amazon QuickSightVisualizing Big Data Insights with Amazon QuickSight
Visualizing Big Data Insights with Amazon QuickSight
 
MongoDB for Time Series Data: Schema Design
MongoDB for Time Series Data: Schema DesignMongoDB for Time Series Data: Schema Design
MongoDB for Time Series Data: Schema Design
 
AWS RDS
AWS RDSAWS RDS
AWS RDS
 
ABD318_Architecting a data lake with Amazon S3, Amazon Kinesis, AWS Glue and ...
ABD318_Architecting a data lake with Amazon S3, Amazon Kinesis, AWS Glue and ...ABD318_Architecting a data lake with Amazon S3, Amazon Kinesis, AWS Glue and ...
ABD318_Architecting a data lake with Amazon S3, Amazon Kinesis, AWS Glue and ...
 
AWS Lake Formation을 통한 손쉬운 데이터 레이크 구성 및 관리 - 윤석찬 :: AWS Unboxing 온라인 세미나
AWS Lake Formation을 통한 손쉬운 데이터 레이크 구성 및 관리 - 윤석찬 :: AWS Unboxing 온라인 세미나AWS Lake Formation을 통한 손쉬운 데이터 레이크 구성 및 관리 - 윤석찬 :: AWS Unboxing 온라인 세미나
AWS Lake Formation을 통한 손쉬운 데이터 레이크 구성 및 관리 - 윤석찬 :: AWS Unboxing 온라인 세미나
 
Challenges in Building a Data Pipeline
Challenges in Building a Data PipelineChallenges in Building a Data Pipeline
Challenges in Building a Data Pipeline
 
30분만에 만드는 AWS 기반 빅데이터 분석 애플리케이션::안효빈::AWS Summit Seoul 2018
30분만에 만드는 AWS 기반 빅데이터 분석 애플리케이션::안효빈::AWS Summit Seoul 201830분만에 만드는 AWS 기반 빅데이터 분석 애플리케이션::안효빈::AWS Summit Seoul 2018
30분만에 만드는 AWS 기반 빅데이터 분석 애플리케이션::안효빈::AWS Summit Seoul 2018
 
Realtime Analytics on AWS
Realtime Analytics on AWSRealtime Analytics on AWS
Realtime Analytics on AWS
 
Best Practices for Building Your Data Lake on AWS
Best Practices for Building Your Data Lake on AWSBest Practices for Building Your Data Lake on AWS
Best Practices for Building Your Data Lake on AWS
 
Introduction to AWS Glue
Introduction to AWS GlueIntroduction to AWS Glue
Introduction to AWS Glue
 
Deep Dive: Scaling Up to Your First 10 Million Users
Deep Dive: Scaling Up to Your First 10 Million UsersDeep Dive: Scaling Up to Your First 10 Million Users
Deep Dive: Scaling Up to Your First 10 Million Users
 
AWS Big Data Platform
AWS Big Data PlatformAWS Big Data Platform
AWS Big Data Platform
 
AWS Lake Formation Deep Dive
AWS Lake Formation Deep DiveAWS Lake Formation Deep Dive
AWS Lake Formation Deep Dive
 
Object Storage: Amazon S3 and Amazon Glacier
Object Storage: Amazon S3 and Amazon GlacierObject Storage: Amazon S3 and Amazon Glacier
Object Storage: Amazon S3 and Amazon Glacier
 
Modern Big Data Analytics Tools: An Overview
Modern Big Data Analytics Tools: An OverviewModern Big Data Analytics Tools: An Overview
Modern Big Data Analytics Tools: An Overview
 
Next generation intelligent data lakes, powered by GraphQL & AWS AppSync - MA...
Next generation intelligent data lakes, powered by GraphQL & AWS AppSync - MA...Next generation intelligent data lakes, powered by GraphQL & AWS AppSync - MA...
Next generation intelligent data lakes, powered by GraphQL & AWS AppSync - MA...
 

Semelhante a Amazon Redshift Best Practices Overview

Best Practices for Migrating Legacy Data Warehouses into Amazon Redshift
Best Practices for Migrating Legacy Data Warehouses into Amazon RedshiftBest Practices for Migrating Legacy Data Warehouses into Amazon Redshift
Best Practices for Migrating Legacy Data Warehouses into Amazon RedshiftAmazon Web Services
 
Data Warehousing with Amazon Redshift
Data Warehousing with Amazon RedshiftData Warehousing with Amazon Redshift
Data Warehousing with Amazon RedshiftAmazon Web Services
 
Data Warehousing with Amazon Redshift
Data Warehousing with Amazon RedshiftData Warehousing with Amazon Redshift
Data Warehousing with Amazon RedshiftAmazon Web Services
 
Data Warehousing with Amazon Redshift
Data Warehousing with Amazon RedshiftData Warehousing with Amazon Redshift
Data Warehousing with Amazon RedshiftAmazon Web Services
 
Data Warehousing with Amazon Redshift
Data Warehousing with Amazon RedshiftData Warehousing with Amazon Redshift
Data Warehousing with Amazon RedshiftAmazon Web Services
 
Data Warehousing with Amazon Redshift: Data Analytics Week SF
Data Warehousing with Amazon Redshift: Data Analytics Week SFData Warehousing with Amazon Redshift: Data Analytics Week SF
Data Warehousing with Amazon Redshift: Data Analytics Week SFAmazon Web Services
 
Data Warehousing with Amazon Redshift
Data Warehousing with Amazon RedshiftData Warehousing with Amazon Redshift
Data Warehousing with Amazon RedshiftAmazon Web Services
 
Data Warehousing with Amazon Redshift: Data Analytics Week at the SF Loft
Data Warehousing with Amazon Redshift: Data Analytics Week at the SF LoftData Warehousing with Amazon Redshift: Data Analytics Week at the SF Loft
Data Warehousing with Amazon Redshift: Data Analytics Week at the SF LoftAmazon Web Services
 
SRV405 Ancestry's Journey to Amazon Redshift
SRV405 Ancestry's Journey to Amazon RedshiftSRV405 Ancestry's Journey to Amazon Redshift
SRV405 Ancestry's Journey to Amazon RedshiftAmazon Web Services
 
Loading Data into Redshift: Data Analytics Week at the SF Loft
Loading Data into Redshift: Data Analytics Week at the SF LoftLoading Data into Redshift: Data Analytics Week at the SF Loft
Loading Data into Redshift: Data Analytics Week at the SF LoftAmazon Web Services
 
AWS SSA Webinar 20 - Getting Started with Data Warehouses on AWS
AWS SSA Webinar 20 - Getting Started with Data Warehouses on AWSAWS SSA Webinar 20 - Getting Started with Data Warehouses on AWS
AWS SSA Webinar 20 - Getting Started with Data Warehouses on AWSCobus Bernard
 
Loading Data into Redshift: Data Analytics Week SF
Loading Data into Redshift: Data Analytics Week SFLoading Data into Redshift: Data Analytics Week SF
Loading Data into Redshift: Data Analytics Week SFAmazon Web Services
 
Loading Data into Redshift with Lab
Loading Data into Redshift with LabLoading Data into Redshift with Lab
Loading Data into Redshift with LabAmazon Web Services
 
Loading Data into Amazon Redshift
Loading Data into Amazon RedshiftLoading Data into Amazon Redshift
Loading Data into Amazon RedshiftAmazon Web Services
 
Data Warehousing with Amazon Redshift
Data Warehousing with Amazon RedshiftData Warehousing with Amazon Redshift
Data Warehousing with Amazon RedshiftAmazon Web Services
 
Best Practices for Migrating your Data Warehouse to Amazon Redshift
Best Practices for Migrating your Data Warehouse to Amazon Redshift Best Practices for Migrating your Data Warehouse to Amazon Redshift
Best Practices for Migrating your Data Warehouse to Amazon Redshift Amazon Web Services
 

Semelhante a Amazon Redshift Best Practices Overview (20)

Deep Dive on Amazon Redshift
Deep Dive on Amazon RedshiftDeep Dive on Amazon Redshift
Deep Dive on Amazon Redshift
 
Best Practices for Migrating Legacy Data Warehouses into Amazon Redshift
Best Practices for Migrating Legacy Data Warehouses into Amazon RedshiftBest Practices for Migrating Legacy Data Warehouses into Amazon Redshift
Best Practices for Migrating Legacy Data Warehouses into Amazon Redshift
 
Data Warehousing with Amazon Redshift
Data Warehousing with Amazon RedshiftData Warehousing with Amazon Redshift
Data Warehousing with Amazon Redshift
 
Data Warehousing with Amazon Redshift
Data Warehousing with Amazon RedshiftData Warehousing with Amazon Redshift
Data Warehousing with Amazon Redshift
 
Data Warehousing with Amazon Redshift
Data Warehousing with Amazon RedshiftData Warehousing with Amazon Redshift
Data Warehousing with Amazon Redshift
 
Data Warehousing with Amazon Redshift
Data Warehousing with Amazon RedshiftData Warehousing with Amazon Redshift
Data Warehousing with Amazon Redshift
 
Data Warehousing with Amazon Redshift: Data Analytics Week SF
Data Warehousing with Amazon Redshift: Data Analytics Week SFData Warehousing with Amazon Redshift: Data Analytics Week SF
Data Warehousing with Amazon Redshift: Data Analytics Week SF
 
Data Warehousing with Amazon Redshift
Data Warehousing with Amazon RedshiftData Warehousing with Amazon Redshift
Data Warehousing with Amazon Redshift
 
Data Warehousing with Amazon Redshift: Data Analytics Week at the SF Loft
Data Warehousing with Amazon Redshift: Data Analytics Week at the SF LoftData Warehousing with Amazon Redshift: Data Analytics Week at the SF Loft
Data Warehousing with Amazon Redshift: Data Analytics Week at the SF Loft
 
SRV405 Ancestry's Journey to Amazon Redshift
SRV405 Ancestry's Journey to Amazon RedshiftSRV405 Ancestry's Journey to Amazon Redshift
SRV405 Ancestry's Journey to Amazon Redshift
 
Loading Data into Redshift
Loading Data into RedshiftLoading Data into Redshift
Loading Data into Redshift
 
Loading Data into Redshift: Data Analytics Week at the SF Loft
Loading Data into Redshift: Data Analytics Week at the SF LoftLoading Data into Redshift: Data Analytics Week at the SF Loft
Loading Data into Redshift: Data Analytics Week at the SF Loft
 
AWS SSA Webinar 20 - Getting Started with Data Warehouses on AWS
AWS SSA Webinar 20 - Getting Started with Data Warehouses on AWSAWS SSA Webinar 20 - Getting Started with Data Warehouses on AWS
AWS SSA Webinar 20 - Getting Started with Data Warehouses on AWS
 
Loading Data into Redshift
Loading Data into RedshiftLoading Data into Redshift
Loading Data into Redshift
 
Loading Data into Redshift: Data Analytics Week SF
Loading Data into Redshift: Data Analytics Week SFLoading Data into Redshift: Data Analytics Week SF
Loading Data into Redshift: Data Analytics Week SF
 
Loading Data into Redshift with Lab
Loading Data into Redshift with LabLoading Data into Redshift with Lab
Loading Data into Redshift with Lab
 
Loading Data into Redshift
Loading Data into RedshiftLoading Data into Redshift
Loading Data into Redshift
 
Loading Data into Amazon Redshift
Loading Data into Amazon RedshiftLoading Data into Amazon Redshift
Loading Data into Amazon Redshift
 
Data Warehousing with Amazon Redshift
Data Warehousing with Amazon RedshiftData Warehousing with Amazon Redshift
Data Warehousing with Amazon Redshift
 
Best Practices for Migrating your Data Warehouse to Amazon Redshift
Best Practices for Migrating your Data Warehouse to Amazon Redshift Best Practices for Migrating your Data Warehouse to Amazon Redshift
Best Practices for Migrating your Data Warehouse to Amazon Redshift
 

Mais de Amazon Web Services

Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...Amazon Web Services
 
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...Amazon Web Services
 
Esegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS FargateEsegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS FargateAmazon Web Services
 
Costruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWSCostruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWSAmazon Web Services
 
Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot Amazon Web Services
 
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...Amazon Web Services
 
OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...Amazon Web Services
 
Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows WorkloadsMicrosoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows WorkloadsAmazon Web Services
 
Database Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatareDatabase Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatareAmazon Web Services
 
Crea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJSCrea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJSAmazon Web Services
 
API moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e webAPI moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e webAmazon Web Services
 
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatareDatabase Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatareAmazon Web Services
 
Tools for building your MVP on AWS
Tools for building your MVP on AWSTools for building your MVP on AWS
Tools for building your MVP on AWSAmazon Web Services
 
How to Build a Winning Pitch Deck
How to Build a Winning Pitch DeckHow to Build a Winning Pitch Deck
How to Build a Winning Pitch DeckAmazon Web Services
 
Building a web application without servers
Building a web application without serversBuilding a web application without servers
Building a web application without serversAmazon Web Services
 
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...Amazon Web Services
 
Introduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container ServiceIntroduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container ServiceAmazon Web Services
 

Mais de Amazon Web Services (20)

Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
 
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
 
Esegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS FargateEsegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS Fargate
 
Costruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWSCostruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWS
 
Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot
 
Open banking as a service
Open banking as a serviceOpen banking as a service
Open banking as a service
 
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
 
OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...
 
Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows WorkloadsMicrosoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
 
Computer Vision con AWS
Computer Vision con AWSComputer Vision con AWS
Computer Vision con AWS
 
Database Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatareDatabase Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatare
 
Crea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJSCrea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJS
 
API moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e webAPI moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e web
 
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatareDatabase Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
 
Tools for building your MVP on AWS
Tools for building your MVP on AWSTools for building your MVP on AWS
Tools for building your MVP on AWS
 
How to Build a Winning Pitch Deck
How to Build a Winning Pitch DeckHow to Build a Winning Pitch Deck
How to Build a Winning Pitch Deck
 
Building a web application without servers
Building a web application without serversBuilding a web application without servers
Building a web application without servers
 
Fundraising Essentials
Fundraising EssentialsFundraising Essentials
Fundraising Essentials
 
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
 
Introduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container ServiceIntroduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container Service
 

Amazon Redshift Best Practices Overview

  • 1. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Best Practices for Data Warehousing with Amazon Redshift & Redshift Spectrum T o n y G i b b s , S e n i o r D a t a W a r e h o u s i n g S o l u t i o n s A r c h i t e c t AWS re:Invent N o v e m b e r 2 8 , 2 0 1 7 ABD304
  • 2. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Are you an Amazon Redshift user?
  • 3. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. • History and development • Concepts and table design • Data storage, ingestion, and ELT • Workload Management and Query Monitoring Rules • Node types and cluster sizing • Additional resources • Open Q&A Amazon Redshift Best Practices Overview
  • 4. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. History and Development
  • 5. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. PostgreSQL Columnar MPP OLAP AWS IAMAmazon VPCAmazon SWF Amazon S3 AWS KMS Amazon Route 53 Amazon CloudWatch Amazon EC2 Amazon Redshift
  • 6. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. February 2013 November 2017 > 125 Significant Patches > 165 Significant Features
  • 7. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Concepts and Table Design
  • 8. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Load Unload Backup Restore Massively parallel, shared nothing columnar architecture Leader node • SQL endpoint • Stores metadata • Coordinates parallel SQL processing Compute nodes • Local, columnar storage • Executes queries in parallel • Load, unload, backup, restore Amazon Redshift Spectrum nodes • Execute queries directly against Amazon Simple Storage Service (Amazon S3) SQL Clients/BI Tools 128GB RAM 16TB disk 16 cores JDBC/ODBC 128GB RAM 16TB disk 16 coresCompute Node 128GB RAM 16TB disk 16 coresCompute Node 128GB RAM 16TB disk 16 coresCompute Node Leader Node Amazon S3 ... 1 2 3 4 N Amazon Redshift Spectrum Load Query Amazon Redshift Architecture
  • 9. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Terminology and Concepts: Columnar Amazon Redshift uses a columnar architecture for storing data on disk Goal: reduce I/O for analytics queries Physically store data on disk by column rather than row Only read the column data that is required
  • 10. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Columnar Architecture: Example Row-based storage • Need to read everything • Unnecessary I/O aid loc dt CREATE TABLE deep_dive ( aid INT --audience_id ,loc CHAR(3) --location ,dt DATE --date ); aid loc dt 1 SFO 2017-10-20 2 JFK 2017-10-20 3 SFO 2017-04-01 4 JFK 2017-05-14 SELECT min(dt) FROM deep_dive;
  • 11. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Columnar Architecture: Example Column-based storage • Only scan blocks for relevant column CREATE TABLE deep_dive ( aid INT --audience_id ,loc CHAR(3) --location ,dt DATE --date ); aid loc dt 1 SFO 2017-10-20 2 JFK 2017-10-20 3 SFO 2017-04-01 4 JFK 2017-05-14 SELECT min(dt) FROM deep_dive; aid loc dt
  • 12. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Terminology and Concepts: Compression Goals: • Allow more data to be stored within an Amazon Redshift cluster • Improve query performance by decreasing I/O Impact: • Allows two to four times more data to be stored within the cluster By default, COPY automatically analyzes and compresses data on first load into an empty table ANALYZE COMPRESSION is a built-in command that will find the optimal compression for each column on an existing table
  • 13. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Compression: Example aid loc dt aid loc dt 1 SFO 2017-10-20 2 JFK 2017-10-20 3 SFO 2017-04-01 4 JFK 2017-05-14 Add 1 of 11 different encodings to each column CREATE TABLE deep_dive ( aid INT --audience_id ,loc CHAR(3) --location ,dt DATE --date );
  • 14. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Compression: Example More efficient compression is due to storing the same data type in the columnar architecture Columns grow and shrink independently Reduces storage requirements Reduces I/O aid loc dt CREATE TABLE deep_dive ( aid INT ENCODE ZSTD ,loc CHAR(3) ENCODE BYTEDICT ,dt DATE ENCODE RUNLENGTH ); aid loc dt 1 SFO 2017-10-20 2 JFK 2017-10-20 3 SFO 2017-04-01 4 JFK 2017-05-14
  • 15. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Best Practices: Compression Apply compression to all tables Use ANALYZE COMPRESSION command to find optimal compression • RAW (no compression) for sparse columns and small tables Changing column encoding requires a table rebuild https://github.com/awslabs/amazon-redshift-utils/tree/master/src/ColumnEncodingUtility Verifying columns are compressed: SELECT "column", type, encoding FROM pg_table_def WHERE tablename = 'deep_dive'; column | type | encoding --------+--------------+---------- aid | integer | zstd loc | character(3) | bytedict dt | date | runlength
  • 16. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Terminology and Concepts: Blocks Column data is persisted to 1 MB immutable blocks Blocks are individually encoded with 1 of 11 encodings A full block can contain millions of values
  • 17. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Terminology and Concepts: Zone Maps Goal: eliminates unnecessary I/O In-memory block metadata • Contains per-block min and max values • All blocks automatically have zone maps • Effectively prunes blocks which cannot contain data for a given query
  • 18. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Terminology and Concepts: Data Sorting Goal: make queries run faster by increasing the effectiveness of zone maps and reducing I/O Impact: enables range-restricted scans to prune blocks by leveraging zone maps Achieved with the table property SORTKEY defined on one or more columns Optimal sort key is dependent on: • Query patterns • Business requirements • Data profile
  • 19. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Sort Key: Example Add a sort key to one or more columns to physically sort the data on disk CREATE TABLE deep_dive ( aid INT --audience_id ,loc CHAR(3) --location ,dt DATE --date ) SORT KEY (dt, loc); CREATE TABLE deep_dive ( aid INT --audience_id ,loc CHAR(3) --location ,dt DATE --date ); deep_dive aid loc dt 1 SFO 2017-10-20 2 JFK 2017-10-20 3 SFO 2017-04-01 4 JFK 2017-05-14 deep_dive (sorted) aid loc dt 3 SFO 2017-04-01 4 JFK 2017-05-14 2 JFK 2017-10-20 1 SFO 2017-10-20 deep_dive (sorted) aid loc dt 3 SFO 2017-04-01 deep_dive (sorted) aid loc dt 3 SFO 2017-04-01 4 JFK 2017-05-14 deep_dive (sorted) aid loc dt 3 SFO 2017-04-01 4 JFK 2017-05-14 2 JFK 2017-10-20 deep_dive (sorted) aid loc dt 3 SFO 2017-04-01 4 JFK 2017-05-14 2 JFK 2017-10-20 1 SFO 2017-10-20
  • 20. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. SELECT count(*) FROM deep_dive WHERE dt = '06-09-2017'; MIN: 01-JUNE-2017 MAX: 06-JUNE-2017 MIN: 07-JUNE-2017 MAX: 12-JUNE-2017 MIN: 13-JUNE-2017 MAX: 21-JUNE-2017 MIN: 21-JUNE-2017 MAX: 30-JUNE-2017 Sorted by date MIN: 01-JUNE-2017 MAX: 20-JUNE-2017 MIN: 08-JUNE-2017 MAX: 30-JUNE-2017 MIN: 12-JUNE-2017 MAX: 20-JUNE-2017 MIN: 02-JUNE-2017 MAX: 25-JUNE-2017 Unsorted table Zone Maps and Sorting: Example
  • 21. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Best Practices: Sort Keys Place the sort key on columns that are frequently filtered on placing the lowest cardinality columns first • On most fact tables, the first sort key column should be a temporal column • Columns added to a sort key after a high-cardinality column are not effective With an established workload, use the following scripts to help find sort key suggestions: https://github.com/awslabs/amazon-redshift-utils/blob/master/src/AdminScripts/filter_used.sql https://github.com/awslabs/amazon-redshift-utils/blob/master/src/AdminScripts/predicate_columns.sql Design considerations: • Sort keys are less beneficial on small tables • Define four or less sort key columns—more will result in marginal gains and increased ingestion overhead
  • 22. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Terminology and Concepts: Slices A slice can be thought of like a virtual compute node • Unit of data partitioning • Parallel query processing Facts about slices: • Each compute node has either 2, 16, or 32 slices • Table rows are distributed to slices • A slice processes only its own data
  • 23. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Data Distribution Distribution style is a table property which dictates how that table’s data is distributed throughout the cluster: • KEY: value is hashed, same value goes to same location (slice) • ALL: full table data goes to the first slice of every node • EVEN: round robin ALL Node 1 Slice 1 Slice 2 Node 2 Slice 3 Slice 4 KEY Node 1 Slice 1 Slice 2 Node 2 Slice 3 Slice 4 Node 1 Slice 1 Slice 2 Node 2 Slice 3 Slice 4 EVENGoals: • Distribute data evenly for parallel processing • Minimize data movement during query processing
  • 24. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. CREATE TABLE deep_dive ( aid INT --audience_id ,loc CHAR(3) --location ,dt DATE --date ) DISTSTYLE (EVEN|KEY|ALL); Data Distribution: Example Node 1 Slice 0 Slice 1 Node 2 Slice 2 Slice 3 Table: deep_dive User Columns System Columns aid loc dt ins del row
  • 25. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Data Distribution: EVEN Example CREATE TABLE deep_dive ( aid INT --audience_id ,loc CHAR(3) --location ,dt DATE --date ) DISTSTYLE EVEN; Node 1 Slice 0 Slice 1 Node 2 Slice 2 Slice 3 INSERT INTO deep_dive VALUES (1, 'SFO', '2016-09-01'), (2, 'JFK', '2016-09-14'), (3, 'SFO', '2017-04-01'), (4, 'JFK', '2017-05-14'); Table: deep_dive User Columns System Columns aid loc dt ins del row Table: deep_dive User Columns System Columns aid loc dt ins del row Table: deep_dive User Columns System Columns aid loc dt ins del row Table: deep_dive User Columns System Columns aid loc dt ins del row Rows: 0 Rows: 0 Rows: 0 Rows: 0Rows: 1 Rows: 1 Rows: 1 Rows: 1
  • 26. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. CREATE TABLE deep_dive ( aid INT --audience_id ,loc CHAR(3) --location ,dt DATE --date ) DISTSTYLE KEY DISTKEY (loc); Data Distribution: KEY Example #1 Node 1 Slice 0 Slice 1 Node 2 Slice 2 Slice 3 INSERT INTO deep_dive VALUES (1, 'SFO', '2016-09-01'), (2, 'JFK', '2016-09-14'), (3, 'SFO', '2017-04-01'), (4, 'JFK', '2017-05-14'); Table: deep_dive User Columns System Columns aid loc dt ins del row Rows: 2 Rows: 0 Rows: 0Rows: 0Rows: 1 Table: deep_dive User Columns System Columns aid loc dt ins del row Rows: 2Rows: 0Rows: 1
  • 27. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Data Distribution: KEY Example #2 CREATE TABLE deep_dive ( aid INT --audience_id ,loc CHAR(3) --location ,dt DATE --date ) DISTSTYLE KEY DISTKEY (aid); Node 1 Slice 0 Slice 1 Node 2 Slice 2 Slice 3 INSERT INTO deep_dive VALUES (1, 'SFO', '2016-09-01'), (2, 'JFK', '2016-09-14'), (3, 'SFO', '2017-04-01'), (4, 'JFK', '2017-05-14'); Table: deep_dive User Columns System Columns aid loc dt ins del row Table: deep_dive User Columns System Columns aid loc dt ins del row Table: deep_dive User Columns System Columns aid loc dt ins del row Table: deep_dive User Columns System Columns aid loc dt ins del row Rows: 0 Rows: 0 Rows: 0 Rows: 0Rows: 1 Rows: 1 Rows: 1 Rows: 1
  • 28. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Data Distribution: ALL Example Node 1 Slice 0 Slice 1 Node 2 Slice 2 Slice 3 INSERT INTO deep_dive VALUES (1, 'SFO', '2016-09-01'), (2, 'JFK', '2016-09-14'), (3, 'SFO', '2017-04-01'), (4, 'JFK', '2017-05-14'); Rows: 0 Rows: 0 Table: deep_dive User Columns System Columns aid loc dt ins del row Rows: 0Rows: 1Rows: 2Rows: 4Rows: 3 Table: deep_dive User Columns System Columns aid loc dt ins del row Rows: 0Rows: 1Rows: 2Rows: 4Rows: 3 CREATE TABLE deep_dive ( aid INT --audience_id ,loc CHAR(3) --location ,dt DATE --date ) DISTSTYLE ALL;
  • 29. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Best Practices: Data Distribution DISTSTYLE KEY • Goals • Optimize JOIN performance between large tables • Optimize INSERT INTO SELECT performance • Optimize GROUP BY performance • The column that is being distributed on should have a high cardinality and not cause row skew: DISTSTYLE ALL • Goals • Optimize JOIN performance with dimension tables • Reduces disk usage on small tables • Small and medium size dimension tables (< 3M rows) DISTSTYLE EVEN • If neither KEY or ALL apply (or you are unsure) SELECT diststyle, skew_rows FROM svv_table_info WHERE "table" = 'deep_dive'; diststyle | skew_rows -----------+----------- KEY(aid) | 1.07  Ratio between the slice with the most and least number of rows
  • 30. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Best Practices: Table Design Summary Materialize often filtered columns from dimension tables into fact tables Materialize often calculated values into tables Avoid distribution keys on temporal columns Keep data types as wide as necessary (but no longer than necessary) • VARCHAR, CHAR, and NUMERIC Add compression to columns • Optimal compression can be found using ANALYZE COMPRESSION Add sort keys on the primary columns that are filtered on
  • 31. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Data Storage, Ingestion, and ELT
  • 32. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Terminology and Concepts: Disks Amazon Redshift utilizes locally attached storage devices • Compute nodes have 2½ to 3 times the advertised storage capacity Each disk is split into two partitions • Local data storage, accessed by local CN • Mirrored data, accessed by remote CN Partitions are raw devices • Local storage devices are ephemeral in nature • Tolerant to multiple disk failures on a single node
  • 33. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Terminology and Concepts: Redundancy Global commit ensures all permanent tables have written blocks to another node in the cluster to ensure data redundancy Asynchronously backup blocks to Amazon S3—always consistent snapshot • Every 5 GB of changed data or eight hours • User on-demand manual snapshots Temporary tables • Blocks are not mirrored to the remote partition—two-times faster write performance • Do not trigger a full commit or backups Disable backups at the table level: CREATE TABLE example(id int) BACKUP NO;
  • 34. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Terminology and Concepts: Transactions Amazon Redshift is a fully transactional, ACID compliant data warehouse • Isolation level is serializable • Two phase commits (local and global commit phases) Cluster commit statistics: https://github.com/awslabs/amazon-redshift-utils/blob/master/src/AdminScripts/commit_stats.sql Design consideration: • Because of the expense of commit overhead, limit commits by explicitly creating transactions
  • 35. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Data Ingestion: COPY Statement Ingestion throughput: • Each slice’s query processors can load one file at a time: o Streaming decompression o Parse o Distribute o Write Realizing only partial node usage as 6.25% of slices are active 0 2 4 6 8 10 12 141 3 5 7 9 11 13 15 DC2.8XL Compute Node 1 Input File
  • 36. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Number of input files should be a multiple of the number of slices Splitting the single file into 16 input files, all slices are working to maximize ingestion performance COPY continues to scale linearly as you add nodes Data Ingestion: COPY Statement 16 Input Files Recommendation is to use delimited files—1 MB to 1 GB after gzip compression 0 2 4 6 8 10 12 141 3 5 7 9 11 13 15 DC2.8XL Compute Node
  • 37. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Best Practices: COPY Ingestion Delimited files are recommend • Pick a simple delimiter '|' or ',' or tabs • Pick a simple NULL character (N) • Use double quotes and an escape character (' ') for varchars • UTF-8 varchar columns take four bytes per char Split files so there is a multiple of the number of slices Files sizes should be 1 MB–1 GB after gzip compression Useful COPY options • MAXERRORS • ACCEPTINVCHARS • NULL AS
  • 38. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Data Ingestion: Amazon Redshift Spectrum Use INSERT INTO SELECT against external Amazon S3 tables • Ingest additional file formats: Parquet, ORC, Grok • Aggregate incoming data • Select subset of columns and/or rows • Manipulate incoming column data with SQL Best practices: • Save cluster resources for querying and reporting rather than on ELT • Filtering/aggregating incoming data can improve performance over COPY Design considerations: • Repeated reads against Amazon S3 are not transactional • $5/TB of (compressed) data scanned
  • 39. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Design Considerations: Data Ingestion Designed for large writes • Batch processing system, optimized for processing massive amounts of data • 1 MB size plus immutable blocks means that we clone blocks on write so as not to introduce fragmentation • Small write (~1-10 rows) has similar cost to a larger write (~100K rows) UPDATE and DELETE • Immutable blocks means that we only logically delete rows on UPDATE or DELETE • Must VACUUM or DEEP COPY to remove ghost rows from table
  • 40. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. s3://bucket/dd.csv aid loc dt 1 SFO 2017-10-20 2 JFK 2017-10-20 5 SJC 2017-10-10 6 SEA 2017-11-29 Data Ingestion: Deduplication/UPSERT Table: deep_dive aid loc dt 1 SFO 2016-09-01 2 JFK 2016-09-14 3 SFO 2017-04-01 4 JFK 2017-05-14 Table: deep_dive aid loc dt 1 SFO 2017-10-20 2 JFK 2016-09-14 3 SFO 2017-04-01 4 JFK 2017-05-14 Table: deep_dive aid loc dt 1 SFO 2017-10-20 2 JFK 2017-10-20 3 SFO 2017-04-01 4 JFK 2017-05-14 5 SJC 2017-10-10 Table: deep_dive aid loc dt 1 SFO 2017-10-20 2 JFK 2017-10-20 3 SFO 2017-04-01 4 JFK 2017-05-14 5 SJC 2017-10-10 6 SEA 2017-11-29 Table: deep_dive aid loc dt 1 SFO 2017-10-20 2 JFK 2017-10-20 3 SFO 2017-04-01 4 JFK 2017-05-14
  • 41. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Data Ingestion: Deduplication/UPSERT 1. Load CSV data into a staging table 2. Delete duplicate data from the production table 3. Insert (or append) data from the staging into the production table Steps:
  • 42. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Data Ingestion: Deduplication/UPSERT BEGIN; CREATE TEMP TABLE staging(LIKE deep_dive); COPY staging FROM 's3://bucket/dd.csv' : ' creds ' COMPUPDATE OFF; DELETE deep_dive d USING staging s WHERE d.aid = s.aid; INSERT INTO deep_dive SELECT * FROM staging; DROP TABLE staging; COMMIT;
  • 43. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Wrap workflow/statements in an explicit transaction Consider using DROP TABLE or TRUNCATE instead of DELETE Staging Tables: • Use temporary table or permanent table with the “BACKUP NO” option • If possible use DISTSTYLE KEY on both the staging table and production table to speed up the INSERT INTO SELECT statement • Turn off automatic compression—COMPUPDATE OFF • Copy compression settings from production table or use ANALYZE COMPRESSION statement • Use CREATE TABLE LIKE or write encodings into the DDL • For copying a large number of rows (> hundreds of millions) consider using ALTER TABLE APPEND instead of INSERT INTO SELECT Best Practices: ELT
  • 44. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. VACUUM will globally sort the table and remove rows that are marked as deleted • For tables with a sort key, ingestion operations will locally sort new data and write it into the unsorted region ANALYZE collects table statistics for optimal query planning Best Practices: • VACUUM should be run only as necessary • Typically nightly or weekly • Consider Deep Copy (recreating and copying data) for larger or wide tables • ANALYZE can be run periodically after ingestion on just the columns that WHERE predicates are filtered on • Utility to VACUUM and ANALYZE all the tables in the cluster: https://github.com/awslabs/amazon-redshift-utils/tree/master/src/AnalyzeVacuumUtility Vacuum and Analyze
  • 45. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Workload Management and Query Monitoring Rules
  • 46. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Allows for the separation of different query workloads Goals • Prioritize important queries • Throttle/abort less important queries Control concurrent number of executing of queries Divide cluster memory Set query timeouts to abort long running queries Workload Management (WLM)
  • 47. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Queues • Assigned a percentage of cluster memory • SQL queries execute in queue based on • User group: which groups the user belongs to • Query group session level variable Slots • Division of memory within a WLM Queue, correlated with the number of simultaneous running queries • WLM_QUERY_SLOT_COUNT is a session level variable • Useful to increase for memory intensive operations Terminology and Concepts: WLM
  • 48. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Use case: • Light ingestion/ELT on a continuous cadence of 10 minutes • Peak reporting workload during business hours (7 a.m.–7 p.m.) • Heavy ingestion/ELT nightly (11 p.m.–3 a.m.) User types: • Business reporting and dashboards • Analysts and data science teams • Database administrators Workload Management: Example
  • 49. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. • Unallocated memory goes into a general pool that can be used by any queue • Hidden superuser queue can be used by admins, manually switched into: SET query_group TO 'superuser' • The superuser queue has a single slot, the equivalent of 5–7% memory allocation, and no timeout Workload Management: Example Queue Name Memory Slots/Concurrency Timeout (seconds) Ingestion 20% 2 None Dashboard 50% 10 120 Default (Analysts) 25% 3 None Create a queue for each workload type:
  • 50. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Extension of workload management (WLM) Allow the automatic handling of runaway (poorly written) queries Rules applied to a WLM queue allow queries to be: • LOGGED • ABORTED • HOPPED Goals • Protect against wasteful use of the cluster • Log resource-intensive queries Query Monitoring Rules (QMR)
  • 51. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Keep the number of WLM queues to a minimum, typically just three queues to avoid having unused queues https://github.com/awslabs/amazon-redshift-utils/blob/master/src/AdminScripts/wlm_apex_hourly.sql Use WLM to limit ingestion/ELT concurrency to two to three To maximize query throughput, use WLM to throttle the number of concurrent queries to 15 or less Use QMR rather than WLM to set query timeouts Use QMR to log long running queries Save the superuser queue for administration tasks and canceling queries Best Practices: WLM and QMR
  • 52. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Node Types and Cluster Sizing
  • 53. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Dense Compute—DC2 • Solid state disks Dense Storage—DS2 • Magnetic disks Instance Type Disk Type Size Memory CPUs DC2 large NVMe SSD 160 GB 16 GB 2 DC2 8xlarge NVMe SSD 2.56 TB 244 GB 32 DS2 xlarge Magnetic 2 TB 32 GB 4 DS2 8xlarge Magnetic 16 TB 244 GB 36 Terminology and Concepts: Node Types
  • 54. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Best Practices: Cluster Sizing Use at least two computes nodes (multi-node cluster) in production for data mirroring • Leader node is given for no additional cost Amazon Redshift is significantly faster in a VPC compared to EC2 Classic Maintain at least 20% free space or three times the size of the largest table • Scratch space for usage, rewriting tables • Free space is required for vacuum to re-sort table • Temporary tables used for intermediate query results The maximum number of available Amazon Redshift Spectrum nodes is a function of the number of slices in the Amazon Redshift cluster If you’re using DC1 instances, upgrade to the DC2 instance type • Same price as DC1, significantly faster • Reserved Instances do not automatically transfer over
  • 55. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Additional Resources
  • 56. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. AWS Labs on GitHub—Amazon Redshift https://github.com/awslabs/amazon-redshift-utils https://github.com/awslabs/amazon-redshift-monitoring https://github.com/awslabs/amazon-redshift-udfs Admin Scripts Collection of utilities for running diagnostics on your cluster Admin Views Collection of utilities for managing your cluster, generating schema DDL, and so on Analyze Vacuum Utility Utility that can be scheduled to vacuum and analyze the tables within your Amazon Redshift cluster Column Encoding Utility Utility that will apply optimal column encoding to an established schema with data already loaded
  • 57. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. AWS Big Data Blog—Amazon Redshift Amazon Redshift Engineering’s Advanced Table Design Playbook https://aws.amazon.com/blogs/big-data/amazon-redshift-engineerings-advanced-table-design- playbook-preamble-prerequisites-and-prioritization/ - Zach Christopherson Top 10 Performance Tuning Techniques for Amazon Redshift https://aws.amazon.com/blogs/big-data/top-10-performance-tuning-techniques-for-amazon- redshift/ - Ian Meyers and Zach Christopherson 10 Best Practices for Amazon Redshift Spectrum https://aws.amazon.com/blogs/big-data/10-best-practices-for-amazon-redshift-spectrum/ - Po Hong and Peter Dalton
  • 58. © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Thank you! T o n y G i b b s