merge to ddb65b69f9c788e359e191889cb31f15279c41ec (#224)

1. Apache HDFS broker support HDFS HA and Hadoop kerberos authentication.
2. New Backup and Restore function. Use Fs Broker to backup your data to HDFS or restore them from HDFS.
3. Table-Level Privileges. Grant fine-grained privileges on table-level to specified user.
4. A lot of bugs fixed.
5. Performance improvement.
This commit is contained in:
morningman
2018-08-24 17:12:26 +08:00
committed by GitHub
parent aad32ec8fc
commit cc74efb3c5
423 changed files with 25901 additions and 11040 deletions

View File

@ -77,6 +77,10 @@ Status SchemaScanNode::init(const TPlanNode& tnode, RuntimeState* state) {
_scanner_param.ip = _pool->add(new std::string(tnode.schema_scan_node.ip));
}
if (tnode.schema_scan_node.__isset.user_ip) {
_scanner_param.user_ip = _pool->add(new std::string(tnode.schema_scan_node.user_ip));
}
if (tnode.schema_scan_node.__isset.port) {
_scanner_param.port = tnode.schema_scan_node.port;
}