forked from sandyydk/AWS_Solutions_Architect_Associate_2018
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathredshift.txt
More file actions
47 lines (29 loc) · 1.08 KB
/
Copy pathredshift.txt
File metadata and controls
47 lines (29 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
Redshift --
* Data Warehousing database service.
* Fully managed, petabyte-scale.
* $0.25/hr with no commitments.
* It's OLAP transaction type. Online Analytics Processing.
Configuration --
* Single Node (160Gb)
* Multi Node has --
* Leader Node (manages client connections and receives queries)
* Compute Node (store data and perform queries and computations). Upto 128 Compute Nodes.
* Columnar Data Storage :
* Instead of storing data as a series of rows, it's organized by column. Column based ones are ideal for data warehousing and analytics.
* This is becasue columnar data is stored sequentially.
* Advanced Compression --
* Columnar data can be better compressed.
* Redshift has no indexes.
* massively Parallel Processing (MPP) --
* Distributes queries across nodes automatically.
Pricing --
* 1 unit/node/hr
* Not charged for leader node, only for compute nodes.
* Backup
* Data transfer
Encryption --
* Encrypted in transit SSL
* Encrypted at REST AES 256
* Only in 1 AZ.
* Can restore snapshots.
* Redshift blcok size for columnar storage -- 1024KB/ 1MB.