-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.json.template
35 lines (35 loc) · 1.06 KB
/
setup.json.template
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
{
"mysql" : {
"Database Connection URL": "<jdbc connection url for mysql>",
"Database Driver Class Name": "<jdbc driver name>",
"database-driver-locations": "<location/path of driver",
"Database User": "<user name>",
"Password": "<password>"
},
"postgre" :
{
"Database Connection URL": "<jdbc connection url for postgre>",
"Database Driver Class Name": "<jdbc driver name>",
"database-driver-locations": "<location/path of driver",
"Database User": "<user name>",
"Password": "<password>"
},
"oracle":
{
"Database Connection URL": "<jdbc connection url for oracle>",
"Database Driver Class Name": "<jdbc driver name>",
"database-driver-locations": "<location/path of driver",
"Database User": "<user name>",
"Password": "<password>"
},
"s3" : {
"Access Key" : "",
"Secret Key" : "",
"Region" : "<refer to the region cheetsheet>"
},
"hdfs" : {
"core-site" : "<path to your core-site.xml file>",
"hdfs-site" : "<path to your hdfs-site.xml file>",
"hdfs-path" : "<hdfs path>"
}
}