-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcore-site.xml.datalake.integration
79 lines (64 loc) · 1.73 KB
/
core-site.xml.datalake.integration
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<configuration>
<property>
<name>fs.defaultFS</name>
<value>dl://DATALAKE_NODE:14000/data_lake/USER_HOME_DIR</value>
</property>
<property>
<name>fs.dl.impl.defaultEndpoint</name>
<value>/data_lake/USER_HOME_DIR</value>
</property>
<property>
<name>fs.dl.impl</name>
<value>com.bigstep.datalake.DLFileSystem</value>
</property>
<property>
<name>fs.dl.impl.kerberosPrincipal</name>
<value>[email protected]</value>
</property>
<property>
<name>fs.dl.impl.kerberosKeytab</name>
<value>KEYTAB_PATH</value>
</property>
<property>
<name>fs.dl.impl.homeDirectory</name>
<value>/data_lake/USER_HOME_DIR</value>
</property>
<property>
<name>fs.dl.impl.kerberosRealm</name>
<value>integration.bigstepcloud.com</value>
</property>
<property>
<name>fs.dl.impl.kerberosRealm</name>
<value>integration.bigstepcloud.com</value>
</property>
<!-- optional -->
<property>
<name>fs.dl.impl.defaultFilePermissions</name>
<value>00640</value>
</property>
<!-- optional -->
<property>
<name>fs.dl.impl.defaultUMask</name>
<value>007</value>
</property>
<property>
<name>fs.dl.impl.transportScheme</name>
<value>http</value>
</property>
<!-- This tells the DataLake client if it should encrypt/decrypt files when
uploading/downloading. If property is missing, the default value is false. -->
<property>
<name>fs.dl.impl.shouldUseEncryption</name>
<value>ENCRYPTION</value>
</property>
<!-- The location of the AES key. The file should be exactly 16 bytes long.
This property is required if fs.fl.impl.shouldUseEncryption is set to true. -->
<property>
<name>fs.dl.impl.encryptionKeyPath</name>
<value>ENC_KEY_PATH</value>
</property>
<property>
<name>fs.dl.impl.datalakeDatanodesDomain</name>
<value>DATALAKE_DOMAIN</value>
</property>
</configuration>