28
AWS Data Stores Brock Tubre INSTRUCTOR

AWS Data Stores… · 2020. 8. 21. · AWS DATA STORES Amazon Simple Storage Service (S3) Unlimited data storage that provides object based storage for any type of data. Go to place

  • Upload
    others

  • View
    3

  • Download
    0

Embed Size (px)

Citation preview

Page 1: AWS Data Stores… · 2020. 8. 21. · AWS DATA STORES Amazon Simple Storage Service (S3) Unlimited data storage that provides object based storage for any type of data. Go to place

AWS Data Stores

Brock TubreINSTRUCTOR

Page 2: AWS Data Stores… · 2020. 8. 21. · AWS DATA STORES Amazon Simple Storage Service (S3) Unlimited data storage that provides object based storage for any type of data. Go to place

AWS Data StoresAWS DATA STORES

Page 3: AWS Data Stores… · 2020. 8. 21. · AWS DATA STORES Amazon Simple Storage Service (S3) Unlimited data storage that provides object based storage for any type of data. Go to place

S3

AWS Data StoresAWS DATA STORES

Page 4: AWS Data Stores… · 2020. 8. 21. · AWS DATA STORES Amazon Simple Storage Service (S3) Unlimited data storage that provides object based storage for any type of data. Go to place

AWS DATA STORES

Amazon Simple Storage Service (S3)Unlimited data storage that provides object based storage for any type of data.

Go to place for storing Machine Learning data. S3

What is S3?

Page 5: AWS Data Stores… · 2020. 8. 21. · AWS DATA STORES Amazon Simple Storage Service (S3) Unlimited data storage that provides object based storage for any type of data. Go to place

• Files can be from 0 bytes to 5 TB.

• There is unlimited storage.

• Files are stored into buckets (similar to folders).

• S3 is a universal namespace. That is, names must be unique globally.

• https://s3-us-east-1.amazonaws.com/machinelearningdata

• https://machinelearning.s3.amazonaws.com/

AWS DATA STORES

What is S3?

S3

Page 6: AWS Data Stores… · 2020. 8. 21. · AWS DATA STORES Amazon Simple Storage Service (S3) Unlimited data storage that provides object based storage for any type of data. Go to place

• Files can be from 0 bytes to 5 TB.

• There is unlimited storage.

• Files are stored into buckets (similar to folders).

• S3 is a universal namespace. That is, names must be unique globally.

• https://s3-us-east-1.amazonaws.com/machinelearningdata

• https://machinelearning.s3.amazonaws.com/

AWS DATA STORES

What is S3?

S3

Page 7: AWS Data Stores… · 2020. 8. 21. · AWS DATA STORES Amazon Simple Storage Service (S3) Unlimited data storage that provides object based storage for any type of data. Go to place

Get Data into S3

S3

AWS DATA STORES

Page 8: AWS Data Stores… · 2020. 8. 21. · AWS DATA STORES Amazon Simple Storage Service (S3) Unlimited data storage that provides object based storage for any type of data. Go to place

Get Data into S3AWS DATA STORES

Page 9: AWS Data Stores… · 2020. 8. 21. · AWS DATA STORES Amazon Simple Storage Service (S3) Unlimited data storage that provides object based storage for any type of data. Go to place

Relational Database Service

Data Stores

S3 RDS Dynamo DB Document DBRed Shift Timestream

AWS DATA STORES

Page 10: AWS Data Stores… · 2020. 8. 21. · AWS DATA STORES Amazon Simple Storage Service (S3) Unlimited data storage that provides object based storage for any type of data. Go to place

Relational Database ServiceAWS DATA STORES

Page 11: AWS Data Stores… · 2020. 8. 21. · AWS DATA STORES Amazon Simple Storage Service (S3) Unlimited data storage that provides object based storage for any type of data. Go to place

Relational Database ServiceAWS DATA STORES

Page 12: AWS Data Stores… · 2020. 8. 21. · AWS DATA STORES Amazon Simple Storage Service (S3) Unlimited data storage that provides object based storage for any type of data. Go to place

Dynamo DBAWS DATA STORES

Data Stores

S3 RDS Dynamo DB Document DBRed Shift Timestream

Page 13: AWS Data Stores… · 2020. 8. 21. · AWS DATA STORES Amazon Simple Storage Service (S3) Unlimited data storage that provides object based storage for any type of data. Go to place

Dynamo DBAWS DATA STORES

{ "Characters" : [

{ "ID": 1, "Name": “Luke”, "Evil": 0, “Affiliation": “Rebel”, "Weapon": “lightsaber”

}, {

"ID": 2, "Name": “Jabba the Hutt”, "Evil": 1, “Affiliation": null

} ] }

Page 14: AWS Data Stores… · 2020. 8. 21. · AWS DATA STORES Amazon Simple Storage Service (S3) Unlimited data storage that provides object based storage for any type of data. Go to place

table

Dynamo DBAWS DATA STORES

{ "Characters" : [

{ "ID": 1, "Name": “Luke”, "Evil": 0, “Affiliation": “Rebel”, "Weapon": “lightsaber”

}, {

"ID": 2, "Name": “Jabba the Hutt”, "Evil": 1, “Affiliation": null

} ] }

Page 15: AWS Data Stores… · 2020. 8. 21. · AWS DATA STORES Amazon Simple Storage Service (S3) Unlimited data storage that provides object based storage for any type of data. Go to place

{ "Characters" : [

{ "ID": 1, "Name": “Luke”, "Evil": 0, “Affiliation": “Rebel”, "Weapon": “lightsaber”

}, {

"ID": 2, "Name": “Jabba the Hutt”, "Evil": 1, “Affiliation": null

} ] }

table

table name

Dynamo DBAWS DATA STORES

Page 16: AWS Data Stores… · 2020. 8. 21. · AWS DATA STORES Amazon Simple Storage Service (S3) Unlimited data storage that provides object based storage for any type of data. Go to place

{ "Characters" : [

{ "ID": 1, "Name": “Luke”, "Evil": 0, “Affiliation": “Rebel”, "Weapon": “lightsaber”

}, {

"ID": 2, "Name": “Jabba the Hutt”, "Evil": 1, “Affiliation": null

} ] }

item

Dynamo DBAWS DATA STORES

Page 17: AWS Data Stores… · 2020. 8. 21. · AWS DATA STORES Amazon Simple Storage Service (S3) Unlimited data storage that provides object based storage for any type of data. Go to place

{ "Characters" : [

{ "ID": 1, "Name": “Luke”, "Evil": 0, “Affiliation": “Rebel”, "Weapon": “lightsaber”

}, {

"ID": 2, "Name": “Jabba the Hutt”, "Evil": 1, “Affiliation": null

} ] }

key value

Dynamo DBAWS DATA STORES

Page 18: AWS Data Stores… · 2020. 8. 21. · AWS DATA STORES Amazon Simple Storage Service (S3) Unlimited data storage that provides object based storage for any type of data. Go to place

{ "Characters" : [

{ "ID": 1, "Name": “Luke”, "Evil": 0, “Affiliation": “Rebel”, "Weapon": “lightsaber”

}, {

"ID": 2, "Name": “Jabba the Hutt”, "Evil": 1, “Affiliation": null

} ] }

attribute

Dynamo DBAWS DATA STORES

Page 19: AWS Data Stores… · 2020. 8. 21. · AWS DATA STORES Amazon Simple Storage Service (S3) Unlimited data storage that provides object based storage for any type of data. Go to place

Dynamo DBAWS DATA STORES

Page 20: AWS Data Stores… · 2020. 8. 21. · AWS DATA STORES Amazon Simple Storage Service (S3) Unlimited data storage that provides object based storage for any type of data. Go to place

Data Stores

S3 RDS Dynamo DB Document DBRedshift Timestream

RedshiftAWS DATA STORES

Page 21: AWS Data Stores… · 2020. 8. 21. · AWS DATA STORES Amazon Simple Storage Service (S3) Unlimited data storage that provides object based storage for any type of data. Go to place

SQL Client / BI / Analytics Tools

Source 1

Source 2

Source 3 Redshift

RedshiftAWS DATA STORES

Page 22: AWS Data Stores… · 2020. 8. 21. · AWS DATA STORES Amazon Simple Storage Service (S3) Unlimited data storage that provides object based storage for any type of data. Go to place

RedshiftAWS DATA STORES

Page 23: AWS Data Stores… · 2020. 8. 21. · AWS DATA STORES Amazon Simple Storage Service (S3) Unlimited data storage that provides object based storage for any type of data. Go to place

S3 QuickSightRedshiftSpectrum

Redshift SpectrumAWS DATA STORES

Page 24: AWS Data Stores… · 2020. 8. 21. · AWS DATA STORES Amazon Simple Storage Service (S3) Unlimited data storage that provides object based storage for any type of data. Go to place

Data Stores

S3 RDS Dynamo DB Document DBRed Shift Timestream

Amazon TimestreamAWS DATA STORES

Page 25: AWS Data Stores… · 2020. 8. 21. · AWS DATA STORES Amazon Simple Storage Service (S3) Unlimited data storage that provides object based storage for any type of data. Go to place

Time series data SQL Client / BI / Analytics ToolsTimestream

Amazon TimestreamAWS DATA STORES

Page 26: AWS Data Stores… · 2020. 8. 21. · AWS DATA STORES Amazon Simple Storage Service (S3) Unlimited data storage that provides object based storage for any type of data. Go to place

Document DBAWS DATA STORES

Data Stores

S3 RDS Dynamo DB Document DBRed Shift Timestream

Page 27: AWS Data Stores… · 2020. 8. 21. · AWS DATA STORES Amazon Simple Storage Service (S3) Unlimited data storage that provides object based storage for any type of data. Go to place

Document DBAWS DATA STORES

Page 28: AWS Data Stores… · 2020. 8. 21. · AWS DATA STORES Amazon Simple Storage Service (S3) Unlimited data storage that provides object based storage for any type of data. Go to place

S3

AWS Data StoresAWS DATA STORES