...
Code Block |
---|
GET /v3/version
|
CDAP Configurations
To retrieve all the configurations used by CDAP, issue an HTTP GET request:
Code Block |
---|
GET /v3/config/cdap[?format=<type>]
|
Parameter | Description |
---|---|
| Optional format for returned type, either |
...
Code Block |
---|
[
{
"name": "log.process.pipeline.logger.cache.expiration.ms",
"value": "300000",
"source": "cdap-default.xml"
},
{
"name": "http.service.exec.threads",
"value": "20",
"source": "cdap-default.xml"
},
{
"name": "flow.retry.policy.base.delay.ms",
"value": "100",
"source": "cdap-default.xml"
},
{
"name": "dashboard.ssl.bind.port",
"value": "9443",
"source": "cdap-default.xml"
},
...
]
|
HBase Configurations
To retrieve all the configurations used by HBase, issue an HTTP GET request:
Code Block |
---|
GET /v3/config/hbase[?format=<type>]
|
Parameter | Description |
---|---|
| Optional format for returned type, either |
...