-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add param 'connectTimeout' , 'socketTimeout' , 'retries' datavane/tis…
- Loading branch information
1 parent
7db0240
commit 1807a07
Showing
11 changed files
with
333 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
...main/java/com/qlangtech/tis/plugins/incr/flink/chunjun/doris/sink/ChunjunDorisCommon.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* <p> | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* <p> | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.qlangtech.tis.plugins.incr.flink.chunjun.doris.sink; | ||
|
||
import static com.dtstack.chunjun.connector.doris.options.DorisKeys.DORIS_REQUEST_CONNECT_TIMEOUT_MS_DEFAULT; | ||
import static com.dtstack.chunjun.connector.doris.options.DorisKeys.DORIS_REQUEST_READ_TIMEOUT_MS_DEFAULT; | ||
import static com.dtstack.chunjun.connector.doris.options.DorisKeys.DORIS_REQUEST_RETRIES_DEFAULT; | ||
|
||
/** | ||
* @author: 百岁(baisui@qlangtech.com) | ||
* @create: 2024-02-26 08:52 | ||
**/ | ||
public class ChunjunDorisCommon { | ||
public static Integer dftConnectTimeout() { | ||
return DORIS_REQUEST_CONNECT_TIMEOUT_MS_DEFAULT; | ||
} | ||
public static Integer dftSocketTimeout() { | ||
return DORIS_REQUEST_READ_TIMEOUT_MS_DEFAULT; | ||
} | ||
public static Integer dftRetries() { | ||
return DORIS_REQUEST_RETRIES_DEFAULT; | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
...esources/com/qlangtech/plugins/incr/flink/chunjun/doris/sink/ChunjunDorisSinkFactory.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"connectTimeout": { | ||
"dftVal": "com.qlangtech.tis.plugins.incr.flink.chunjun.doris.sink.ChunjunDorisCommon.dftConnectTimeout()", | ||
"help": "和服务端建立连接的超时时间,单位:ms" | ||
}, | ||
"socketTimeout": { | ||
"dftVal": "com.qlangtech.tis.plugins.incr.flink.chunjun.doris.sink.ChunjunDorisCommon.dftSocketTimeout()", | ||
"help": "从服务端读取数据的超时时间,单位:ms" | ||
}, | ||
"retries": { | ||
"dftVal": "com.qlangtech.tis.plugins.incr.flink.chunjun.doris.sink.ChunjunDorisCommon.dftRetries()", | ||
"help": "从服务端读取数据失败最大重试次数" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
...gtech/plugins/incr/flink/chunjun/doris/sink/TestChunjunDorisSinkFactoryWithoutDocker.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.qlangtech.plugins.incr.flink.chunjun.doris.sink; | ||
|
||
import com.qlangtech.tis.plugin.common.PluginDesc; | ||
import org.junit.Test; | ||
|
||
/** | ||
* @author: 百岁(baisui@qlangtech.com) | ||
* @create: 2024-02-26 08:50 | ||
**/ | ||
public class TestChunjunDorisSinkFactoryWithoutDocker { | ||
@Test | ||
public void testDescJsonGenerate(){ | ||
PluginDesc.testDescGenerate(ChunjunDorisSinkFactory.class, "chunjun-doris-sink-descriptor.json"); | ||
} | ||
} |
Oops, something went wrong.