File tree 11 files changed +13
-20
lines changed
linkis-computation-governance/linkis-manager/linkis-label-common/src/main/java/org/apache/linkis/manager/label/conf
linkis-engineconn-plugins
jdbc/src/main/scala/org/apache/linkis/manager/engineplugin/jdbc/executor
spark/src/main/scala/org/apache/linkis/engineplugin/spark/config
11 files changed +13
-20
lines changed Original file line number Diff line number Diff line change 45
45
TAG : ${{ github.sha }}
46
46
SKIP_TEST : true
47
47
HUB : ghcr.io/apache/linkis
48
- LINKIS_VERSION : 1.6 .0
48
+ LINKIS_VERSION : 1.7 .0
49
49
steps :
50
50
- name : Free up disk space
51
51
run : |
Original file line number Diff line number Diff line change 34
34
TAG : ${{ github.sha }}
35
35
SKIP_TEST : true
36
36
HUB : ghcr.io/apache/linkis
37
- LINKIS_VERSION : 1.6 .0
37
+ LINKIS_VERSION : 1.7 .0
38
38
steps :
39
39
- name : Checkout
40
40
uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -34,10 +34,10 @@ public class LabelCommonConfig {
34
34
CommonVars .apply ("wds.linkis.label.entity.packages" , "" );
35
35
36
36
public static final CommonVars <String > SPARK_ENGINE_VERSION =
37
- CommonVars .apply ("wds.linkis.spark.engine.version" , "2.4.3 " );
37
+ CommonVars .apply ("wds.linkis.spark.engine.version" , "3.2.1 " );
38
38
39
39
public static final CommonVars <String > HIVE_ENGINE_VERSION =
40
- CommonVars .apply ("wds.linkis.hive.engine.version" , "2.3 .3" );
40
+ CommonVars .apply ("wds.linkis.hive.engine.version" , "3.1 .3" );
41
41
42
42
public static final CommonVars <String > PYTHON_ENGINE_VERSION =
43
43
CommonVars .apply ("wds.linkis.python.engine.version" , "python2" );
@@ -64,7 +64,7 @@ public class LabelCommonConfig {
64
64
CommonVars .apply ("wds.linkis.appconn.engine.version" , "1" );
65
65
66
66
public static final CommonVars <String > FLINK_ENGINE_VERSION =
67
- CommonVars .apply ("wds.linkis.flink.engine.version" , "1.12 .2" );
67
+ CommonVars .apply ("wds.linkis.flink.engine.version" , "1.16 .2" );
68
68
69
69
public static final CommonVars <String > SQOOP_ENGINE_VERSION =
70
70
CommonVars .apply ("wds.linkis.sqoop.engine.version" , "1.4.6" );
Original file line number Diff line number Diff line change @@ -167,7 +167,7 @@ export SERVER_HEAP_SIZE="512M"
167
167
# #The extended lib such mysql-connector-java-*.jar
168
168
# LINKIS_EXTENDED_LIB=/appcom/common/linkisExtendedLib
169
169
170
- LINKIS_VERSION=1.5 .0
170
+ LINKIS_VERSION=1.7 .0
171
171
172
172
# for install
173
173
LINKIS_PUBLIC_MODULE=lib/linkis-commons/public-module
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ ARG SPARK_HADOOP_VERSION=3.2
34
34
ARG FLINK_VERSION=1.12.2
35
35
ARG ZOOKEEPER_VERSION=3.5.9
36
36
37
- ARG LINKIS_VERSION=0.0 .0
37
+ ARG LINKIS_VERSION=1.7 .0
38
38
39
39
RUN useradd -r -s /bin/bash -u 100001 -g root -G wheel hadoop
40
40
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ ENV TZ="Asia/Shanghai"
56
56
# #####################################################################
57
57
FROM linkis-base as linkis
58
58
59
- ARG LINKIS_VERSION=0.0 .0
59
+ ARG LINKIS_VERSION=1.7 .0
60
60
ARG LINKIS_SYSTEM_USER="hadoop"
61
61
ARG LINKIS_SYSTEM_UID="9001"
62
62
@@ -106,7 +106,7 @@ ENTRYPOINT ["/bin/bash"]
106
106
# #####################################################################
107
107
FROM ${IMAGE_BASE_WEB} as linkis-web
108
108
109
- ARG LINKIS_VERSION=0.0 .0
109
+ ARG LINKIS_VERSION=1.7 .0
110
110
ARG LINKIS_HOME=/opt/linkis
111
111
112
112
ENV LINKIS_WEB_ROOT ${LINKIS_HOME}-web
Original file line number Diff line number Diff line change @@ -126,13 +126,6 @@ object JDBCMultiDatasourceParser extends Logging {
126
126
)
127
127
}
128
128
129
- // check dbType
130
- if (! DS_TYPES_TO_EXECUTE_TASK_BY_JDBC .contains(dbType)) {
131
- throw new JDBCGetDatasourceInfoException (
132
- UNSUPPORTED_DS_TYPE .getErrorCode,
133
- MessageFormat .format(UNSUPPORTED_DS_TYPE .getErrorDesc, dbType)
134
- )
135
- }
136
129
if (CHANGE_DS_TYPE_TO_MYSQL ) {
137
130
dbType = " mysql"
138
131
}
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ object SparkConfiguration extends Logging {
121
121
val LINKIS_SPARK_USEHIVECONTEXT = CommonVars [Boolean ](" wds.linkis.spark.useHiveContext" , true )
122
122
123
123
val DEFAULT_SPARK_JAR_NAME =
124
- CommonVars [String ](" wds.linkis.ecp.spark.default.jar" , " linkis-engineconn-core-1.3.2 .jar" )
124
+ CommonVars [String ](" wds.linkis.ecp.spark.default.jar" , " linkis-engineconn-core-1.7.0 .jar" )
125
125
126
126
val ENGINE_JAR = CommonVars [String ](" wds.linkis.enginemanager.core.jar" , getMainJarName)
127
127
Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ VUE_APP_HOST=
2
2
BACKEND_URL = http://127.0.0.1:9001
3
3
VUE_APP_MN_CONFIG_PREFIX =
4
4
VUE_APP_MN_CONFIG_SOCKET = /ws/api/entrance/connect
5
- VUE_APP_VERSION = 1.6 .0
5
+ VUE_APP_VERSION = 1.7 .0
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " linkis" ,
3
- "version" : " 1.6 .0" ,
3
+ "version" : " 1.7 .0" ,
4
4
"private" : true ,
5
5
"scripts" : {
6
6
"serve" : " vue-cli-service serve" ,
Original file line number Diff line number Diff line change 102
102
</snapshotRepository >
103
103
</distributionManagement >
104
104
<properties >
105
- <revision >1.6 .0</revision >
105
+ <revision >1.7 .0</revision >
106
106
107
107
<zookeeper .version>3.9.2</zookeeper .version>
108
108
<curator .version>4.2.0</curator .version>
You can’t perform that action at this time.
0 commit comments