You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by ni...@apache.org on 2019/04/23 08:57:50 UTC

[kylin] branch 2.6.x updated (4286d69 -> 2d7d585)

This is an automated email from the ASF dual-hosted git repository.

nic pushed a change to branch 2.6.x
in repository https://gitbox.apache.org/repos/asf/kylin.git.


    from 4286d69  KYLIN-3929 Check satisfaction before execute cubeplanner algorithm
     new 162a98c  minor, refine logs when starting(print the hostname).
     new a99183e  KYLIN-3892 Set cubing job priority
     new c711094  KYLIN-3938 Fix can't discard OPTMIZE CHECKPOINT job
     new fcd896c  KYLIN-3950 Make optimize job algorithm configurable
     new 7d085b7  KYLIN-3788  Modify the time conversion time zone of the kafka streaming access
     new cd93993  KYLIN-3957 Fix exception cannot cast 'java.math.BigDecimal' to 'java.lang.Double'
     new 87ed932  KYLIN-3857 add configuration for quote character
     new 2d7d585  KYLIN-3960, Only update user when login in LDAP environment

The 7670 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/kylin.sh                                 |   4 +-
 .../org/apache/kylin/common/KylinConfigBase.java   |  16 ++++
 .../org/apache/kylin/common/util/DateFormat.java   |  13 +++
 .../org/apache/kylin/common/util/TimeUtil.java     |  91 ++++++++++++++++--
 .../src/main/resources/kylin-defaults.properties   |   5 +
 .../org/apache/kylin/common/util/TimeUtilTest.java | 104 +++++++++++++++++++--
 .../java/org/apache/kylin/cube/CubeManager.java    |  10 ++
 .../org/apache/kylin/engine/EngineFactory.java     |   6 +-
 .../apache/kylin/engine/IBatchCubingEngine.java    |   2 +-
 .../java/org/apache/kylin/job/JoinedFlatTable.java |  13 +--
 .../org/apache/kylin/job/dao/ExecutablePO.java     |  11 +++
 .../kylin/job/execution/AbstractExecutable.java    |  16 ++++
 .../kylin/job/execution/ExecutableManager.java     |   2 +
 .../job/impl/threadpool/DefaultFetcherRunner.java  |  25 ++---
 .../kylin/job/impl/threadpool/FetcherRunner.java   |  24 +++++
 .../job/impl/threadpool/PriorityFetcherRunner.java |  28 ++----
 .../kylin/job/util/FlatTableSqlQuoteUtils.java     |  81 ++++++++--------
 .../kylin/job/util/FlatTableSqlQuoteUtilsTest.java |  35 ++++---
 .../apache/kylin/metadata/model/FunctionDesc.java  |  10 +-
 .../kylin/metadata/model/FunctionDescTest.java     |   3 +
 .../kylin/engine/mr/BatchCubingJobBuilder2.java    |   8 +-
 .../apache/kylin/engine/mr/JobBuilderSupport.java  |   6 ++
 .../kylin/engine/mr/MRBatchCubingEngine2.java      |   4 +-
 .../engine/mr/common/StatisticsDecisionUtil.java   |   2 +-
 .../engine/spark/SparkBatchCubingEngine2.java      |   4 +-
 .../engine/spark/SparkBatchCubingJobBuilder2.java  |  10 +-
 .../kylin/rest/controller/CubeController.java      |   8 +-
 .../apache/kylin/rest/request/JobBuildRequest.java |  10 ++
 .../kylin/rest/request/JobBuildRequest2.java       |   9 ++
 .../rest/security/KylinAuthenticationProvider.java |   9 +-
 .../org/apache/kylin/rest/service/JobService.java  |  16 ++--
 .../org/apache/kylin/rest/util/AclEvaluate.java    |  10 +-
 .../kylin/source/hive/GarbageCollectionStep.java   |   8 +-
 .../apache/kylin/source/hive/HiveMRInputTest.java  |   9 +-
 .../kylin/source/jdbc/JdbcHiveInputBase.java       |   5 +-
 .../source/jdbc/extensible/JdbcHiveInputBase.java  |   5 +-
 .../apache/kylin/source/kafka/KafkaInputBase.java  |   4 +-
 .../apache/kylin/source/kafka/StreamingParser.java |  29 +++---
 .../org/apache/kylin/tool/job/CubeBuildingCLI.java |   4 +-
 39 files changed, 493 insertions(+), 166 deletions(-)