I have some data in s3 that I want to use AWS Glue to crawl and store in a Data Catalog. The problem I have is the data itself does not have headers rows. Instead, there is a separate header file ("header.csv"). Is there a way that I can tell AWS Glue to use the header.csv file to get the column names? Otherwise, the Data Catalog will show the column names as "col0", "col1",... "coln".
i.e. I have the following data:
s3://bucket/data/animals/header.csv
"id","animaltype","age"
s3://bucket/data/animals/data.csv
"1","cat","5"
"2","dog","2"
"3","otter","7"