Home > Software design >  what is the structure for S3 endpoint when wiring into HIVE?
what is the structure for S3 endpoint when wiring into HIVE?

Time:09-27

I am attempting to connect HIVE to an S3 bucket containing some parquet files.. via this tutorial

enter image description here

CodePudding user response:

OKay I found the page explaining what an S3 endpoint is..

https://docs.aws.amazon.com/general/latest/gr/s3.html#s3_website_region_endpoints

and they explain the setup on this page

https://docs.aws.amazon.com/AmazonS3/latest/userguide/WebsiteEndpoints.html

Depending on your Region, your Amazon S3 website endpoint follows one of these two formats.

    s3-website dash (-) Region ‐ http://bucket-name.s3-website-Region.amazonaws.com

    s3-website dot (.) Region ‐ http://bucket-name.s3-website.Region.amazonaws.com

  • Related