|
|
|
@ -209,7 +209,22 @@ export type ConnectionJDBC = {
|
|
|
|
|
/** |
|
|
|
|
* 并行装载 |
|
|
|
|
*/ |
|
|
|
|
parallelLoad?: { |
|
|
|
|
parallelLoad?: IParallelLoad; |
|
|
|
|
/** |
|
|
|
|
* HDFS |
|
|
|
|
*/ |
|
|
|
|
hdfs?: { |
|
|
|
|
/** |
|
|
|
|
* HDFS地址 |
|
|
|
|
*/ |
|
|
|
|
hdfsAddress?: string; |
|
|
|
|
}; |
|
|
|
|
} & ConnectionDataOfSSH & ConnectionDataOfSSL; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 并行装载 |
|
|
|
|
*/ |
|
|
|
|
export interface IParallelLoad { |
|
|
|
|
/** |
|
|
|
|
* 服务器地址 |
|
|
|
|
*/ |
|
|
|
@ -230,18 +245,7 @@ export type ConnectionJDBC = {
|
|
|
|
|
* 临时文件大小限制 |
|
|
|
|
*/ |
|
|
|
|
fileSizeLimit?: string |
|
|
|
|
}; |
|
|
|
|
/** |
|
|
|
|
* HDFS |
|
|
|
|
*/ |
|
|
|
|
hdfs?: { |
|
|
|
|
/** |
|
|
|
|
* HDFS地址 |
|
|
|
|
*/ |
|
|
|
|
hdfsAddress?: string; |
|
|
|
|
}; |
|
|
|
|
} & ConnectionDataOfSSH & |
|
|
|
|
ConnectionDataOfSSL |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
export interface ContextHashtable { |
|
|
|
|
'java.naming.factory.initial': string; |
|
|
|
|