Upload enterprise/etl/core-site.xml
Browse files- enterprise/etl/core-site.xml +26 -0
enterprise/etl/core-site.xml
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<configuration>
|
| 2 |
+
<property>
|
| 3 |
+
<name>fs.s3a.endpoint</name>
|
| 4 |
+
<value>http://minio:9000</value>
|
| 5 |
+
</property>
|
| 6 |
+
<property>
|
| 7 |
+
<name>fs.s3a.access.key</name>
|
| 8 |
+
<value>minioadmin</value>
|
| 9 |
+
</property>
|
| 10 |
+
<property>
|
| 11 |
+
<name>fs.s3a.secret.key</name>
|
| 12 |
+
<value>minioadmin123</value>
|
| 13 |
+
</property>
|
| 14 |
+
<property>
|
| 15 |
+
<name>fs.s3a.path.style.access</name>
|
| 16 |
+
<value>true</value>
|
| 17 |
+
</property>
|
| 18 |
+
<property>
|
| 19 |
+
<name>fs.s3a.impl</name>
|
| 20 |
+
<value>org.apache.hadoop.fs.s3a.S3AFileSystem</value>
|
| 21 |
+
</property>
|
| 22 |
+
<property>
|
| 23 |
+
<name>fs.s3a.connection.ssl.enabled</name>
|
| 24 |
+
<value>false</value>
|
| 25 |
+
</property>
|
| 26 |
+
</configuration>
|