--- title: S3 Filesystem (experimental) keywords: sql hive s3 spark presto sidebar: mydoc_sidebar permalink: s3_hoodie.html toc: false summary: In this page, we go over how to configure hoodie with S3 filesystem. --- Hoodie works with HDFS by default. There is an experimental work going on Hoodie-S3 compatibility. ## S3 configs Add the required configs in your core-site.xml from where Hoodie can fetch them. Replace the `fs.defaultFS` with your S3 bucket name and Hoodie should be able to read/write from the bucket. ``` fs.defaultFS s3://ysharma fs.s3.impl org.apache.hadoop.fs.s3native.NativeS3FileSystem fs.s3.awsAccessKeyId AWS_KEY fs.s3.awsSecretAccessKey AWS_SECRET fs.s3n.awsAccessKeyId AWS_KEY fs.s3n.awsSecretAccessKey AWS_SECRET ```