Database in Amazon Glue

0

Hi, I would like to know, when crawling the data from s3 in order to create a database; does the database must be a relational database ? It can have tables that no relation with other tables ?

posix
asked 2 years ago235 views
1 Answer
0

The "database" in your question is the Glue Data Catalog database. By crawling data files in S3, you are discovering the schema (metadata) from the data files and creating table(s) in a database as relational representation of the data. So, the answer is "no". It will not be a truly relational database. It is a Glue Data Catalog database object. You do not even need to pre-create the database, you may let crawler create it for you if not exist.

profile pictureAWS
jputro
answered 2 years ago
  • If i undestand, it will not neither a truly relational database on Athena ?

  • What is a truly relational database? This is not an Oracle or MySQL, etc. Athena is an SQL engine that allows you to write SQL statements and retrieve data from files in S3 (and many other data sources), including the ability to join "tables", similar to what you can do with a "true" RDBMS.

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions