File tree Expand file tree Collapse 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 Expand file tree Collapse file tree 11 files changed +13
-20
lines changed Original file line number Diff line number Diff line change 4545 TAG : ${{ github.sha }}
4646 SKIP_TEST : true
4747 HUB : ghcr.io/apache/linkis
48- LINKIS_VERSION : 1.6 .0
48+ LINKIS_VERSION : 1.7 .0
4949 steps :
5050 - name : Free up disk space
5151 run : |
Original file line number Diff line number Diff line change 3434 TAG : ${{ github.sha }}
3535 SKIP_TEST : true
3636 HUB : ghcr.io/apache/linkis
37- LINKIS_VERSION : 1.6 .0
37+ LINKIS_VERSION : 1.7 .0
3838 steps :
3939 - name : Checkout
4040 uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -34,10 +34,10 @@ public class LabelCommonConfig {
3434 CommonVars .apply ("wds.linkis.label.entity.packages" , "" );
3535
3636 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 " );
3838
3939 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" );
4141
4242 public static final CommonVars <String > PYTHON_ENGINE_VERSION =
4343 CommonVars .apply ("wds.linkis.python.engine.version" , "python2" );
@@ -64,7 +64,7 @@ public class LabelCommonConfig {
6464 CommonVars .apply ("wds.linkis.appconn.engine.version" , "1" );
6565
6666 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" );
6868
6969 public static final CommonVars <String > SQOOP_ENGINE_VERSION =
7070 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"
167167# #The extended lib such mysql-connector-java-*.jar
168168# LINKIS_EXTENDED_LIB=/appcom/common/linkisExtendedLib
169169
170- LINKIS_VERSION=1.5 .0
170+ LINKIS_VERSION=1.7 .0
171171
172172# for install
173173LINKIS_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
3434ARG FLINK_VERSION=1.12.2
3535ARG ZOOKEEPER_VERSION=3.5.9
3636
37- ARG LINKIS_VERSION=0.0 .0
37+ ARG LINKIS_VERSION=1.7 .0
3838
3939RUN useradd -r -s /bin/bash -u 100001 -g root -G wheel hadoop
4040
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ ENV TZ="Asia/Shanghai"
5656# #####################################################################
5757FROM linkis-base as linkis
5858
59- ARG LINKIS_VERSION=0.0 .0
59+ ARG LINKIS_VERSION=1.7 .0
6060ARG LINKIS_SYSTEM_USER="hadoop"
6161ARG LINKIS_SYSTEM_UID="9001"
6262
@@ -106,7 +106,7 @@ ENTRYPOINT ["/bin/bash"]
106106# #####################################################################
107107FROM ${IMAGE_BASE_WEB} as linkis-web
108108
109- ARG LINKIS_VERSION=0.0 .0
109+ ARG LINKIS_VERSION=1.7 .0
110110ARG LINKIS_HOME=/opt/linkis
111111
112112ENV LINKIS_WEB_ROOT ${LINKIS_HOME}-web
Original file line number Diff line number Diff line change @@ -126,13 +126,6 @@ object JDBCMultiDatasourceParser extends Logging {
126126 )
127127 }
128128
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- }
136129 if (CHANGE_DS_TYPE_TO_MYSQL ) {
137130 dbType = " mysql"
138131 }
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ object SparkConfiguration extends Logging {
121121 val LINKIS_SPARK_USEHIVECONTEXT = CommonVars [Boolean ](" wds.linkis.spark.useHiveContext" , true )
122122
123123 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" )
125125
126126 val ENGINE_JAR = CommonVars [String ](" wds.linkis.enginemanager.core.jar" , getMainJarName)
127127
Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ VUE_APP_HOST=
22BACKEND_URL = http://127.0.0.1:9001
33VUE_APP_MN_CONFIG_PREFIX =
44VUE_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 11{
22 "name" : " linkis" ,
3- "version" : " 1.6 .0" ,
3+ "version" : " 1.7 .0" ,
44 "private" : true ,
55 "scripts" : {
66 "serve" : " vue-cli-service serve" ,
You can’t perform that action at this time.
0 commit comments