This is an automated email from the ASF dual-hosted git repository. xxyu pushed a change to branch kylin5 in repository https://gitbox.apache.org/repos/asf/kylin.git
from 9501464d6b Update new d7269e7641 fix ts query pushdown after force ts new 4b859f88c9 KYLIN-5314 fix bean can not be autowired new 0e83e2291a KYLIN-5355 support constant query like `select max(1) from t` new 01bac4ea3b KYLIN-5350 Update spark to 3.2.0-kylin-4.6.1.0-SNAPSHOT to fix high risk vulnerability new 21c31f4556 KYLIN-5351 minor fix of KYLIN-5333 new 4ab0273f45 KYLIN-5352 updating healthy model no need set id of the simplified measure new 466263216e KYLIN-5353 fix model saving failure when there are CCs of timestampdiff/timestampadd function new b7fff5be2a KYLIN-5354 change 'server.max-http-header-size' from 5MB to 32KB new cfcf97183e KYLIN-5366 Ignore conf/*.template files when upgrade new e23c37715b KYLIN-5365 given an incorrect query queue, check-1700-spark-kystorage.sh prints the detail error message new 03c6a0f4ea KYLIN-5364 Support case-insensitive when using table reloading api new 28f684b6f9 add connect timeout and ext config from yml new 39f87aa8a7 fix query NPE of fusion model new 6cb5d889e7 KYLIN-5363 Fix the problem of job metadata change when the number of segments in parallel build is too large new 76d574818f KYLIN-5362 Editing agg-groups doesn't produce extra meaningless indexes The 15 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: build/bin/upgrade.sh | 321 +++++++++++++++++++++ pom.xml | 2 +- .../src/main/resources/application.yaml | 2 +- .../org/apache/kylin/common/KylinConfigBase.java | 1 - .../org/apache/kylin/job/dao/NExecutableDao.java | 25 ++ .../kylin/job/execution/NExecutableManager.java | 17 +- .../kylin/job/execution/DagExecutableTest.java | 4 + .../kylin/metadata/cube/model/RuleBasedIndex.java | 2 +- .../cube/model/RuleBasedCuboidDescTest.java | 25 ++ .../src/main/resources/application.yaml | 2 +- .../kylin/rest/controller/v2/JobControllerV2.java | 4 + .../org/apache/kylin/rest/service/JobService.java | 1 + .../kylin/rest/service/DagJobServiceTest.java | 4 + .../apache/kylin/rest/service/TableService.java | 4 +- .../apache/kylin/rest/service/JobErrorTest.java | 4 +- .../apache/kylin/rest/service/JobServiceTest.java | 27 +- .../org/apache/kylin/rest/service/StageTest.java | 47 +++ .../kylin/rest/service/AbstractModelService.java | 8 +- .../kylin/rest/service/ModelSemanticHelper.java | 87 +++--- .../service/ModelServiceSemanticUpdateTest.java | 133 +++++++-- .../kylin/rest/service/TableReloadServiceTest.java | 96 +++--- .../src/main/resources/application.yaml | 2 +- .../apache/kylin/query/relnode/OLAPJoinRel.java | 4 +- .../kylin/rest/service/QueryServiceTest.java | 3 +- .../engine/exec/calcite/CalciteQueryPlanExec.java | 3 - .../engine/exec/sparder/SparderQueryPlanExec.java | 21 +- .../kap/newten/clickhouse/ClickHouseUtils.java | 4 +- .../kap/secondstorage/SecondStorageLockTest.java | 50 +++- .../kap/clickhouse/ClickHouseStorage.java | 7 + .../kyligence/kap/clickhouse/job/ClickHouse.java | 11 +- .../management/ClickHouseConfigLoader.java | 2 + .../kap/clickhouse/MockSecondStorage.java | 2 + .../kap/secondstorage/config/ClusterInfo.java | 24 +- src/server/src/main/resources/application.yaml | 2 +- .../kylin/engine/spark/job/NSparkExecutable.java | 5 +- .../engine/spark/NLocalWithSparkSessionTest.java | 68 +++-- .../utils/HiveTransactionTableHelperTest.java | 17 +- src/spark-project/sparder/pom.xml | 5 + .../apache/spark/sql/KylinDataFrameManager.scala | 31 +- .../kylin/query/sql/KylinDataFrameManagerTest.java | 116 ++++++++ .../apache/kylin/tool/setup/KapGetClusterInfo.java | 9 +- .../kylin/tool/setup/YarnResourceInfoTool.java | 5 + 42 files changed, 1012 insertions(+), 195 deletions(-) create mode 100644 build/bin/upgrade.sh create mode 100644 src/spark-project/sparder/src/test/java/org/apache/kylin/query/sql/KylinDataFrameManagerTest.java