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

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


 discard 94bf32d  remove htable toUpperCase, for HBase tableName is case 
sensitive
 discard 9d6b384  [maven-release-plugin] prepare release kylin-2.6.3
 discard 431c630  fix beeline meta data parser on partition information
 discard 9b2fb3c  KYLIN-2565 Fix use of HBaseAdmin
 discard 98f2386  KYLIN-3537
 discard 939cb74  KYLIN-2565 upgrade to hadoop 3.0 hbase 2.0, pass UT
     add 3b2e57b  minor update on ODBC driver readme
     add ee91a28  KYLIN-4099: Using no blocking RDD unpersist in spark cubing 
job
     add 91fa4ac  KYLIN-4106 fix Illegal partition for SelfDefineSortableKey
     add 37ee3a8  KYLIN-4046 Refine JDBC Source(source.default=8)
     add 9650c8d  KYLIN-4047 Use push-down query when division dynamic column 
cube query is not supported (#689)
     add d192bcd  KYLIN-4013 Only show the cubes under one model
     add 53bcf44  Kylin-4037 Fix can't Cleanup Data in Hbase's HDFS Storage 
When Deploy Apache Kylin with Standalone HBase Cluster (#687)
     add 6703c7c  KYLIN-3628 Fix unexpected exception for select from Lookup 
Table
     add 4a30ba4  [KYLIN-4066] Fix No planner for not ROLE_ADMIN user
     add 063456b  KYLIN-4115 Always  load kafkaConsumerProperties
     add 13e8e9b  KYLIN-1856 Clean up old error in step output immediately 
after resume job
     add b767f4c  KYLIN-4057 Don't merge the job that has been discarded 
manually before.
     add 93da88d  KYLIN-4093: Slow query pages should be open to all users of 
the project
     add 75179ab  KYLIN-4121 Cleanup hive view intermediate tables after job be 
finished
     add 7045db1  Revert "KYLIN-4046 Refine JDBC Source(source.default=8)"
     add 26b0588  KYLIN-3797 Too many or filters may break Kylin server when 
flatting filter
     add 8bd6bed  KYLIN-4131 Fix Broadcaster memory leak
     add 560deef  KYLIN-4034 Table not in Insight when user have no access to 
the table
     add 8494e3a  minor, change kyligence nexus repository port to 80[D
     add 9349e4a  KYLIN-4153 Delete marker if real file not exists
     add 32ad065  KYLIN-4055 cube quey and ad-hoc query return different meta 
info
     add 699158a  KYLIN-4157 When using PrepareStatement query, functions 
within WHERE will cause InternalErrorException
     add 8083437  KYLIN-4154 Sync all events in broadcaster before closing
     add 1a733c9  #KYLIN-4158, limit not push down to storage scan level if 
group by is an expression
     add 8698f53  KYLIN-4103: Make the user string in granting operation of 
project is case insensitive
     add c6cfbff  KYLIN-3628 Fix regression bug
     new 64fd808  KYLIN-2565 upgrade to hadoop 3.0 hbase 2.0, pass UT
     new a2d1d04  KYLIN-3537
     new bf8aa79  KYLIN-2565 Fix use of HBaseAdmin
     new 5520624  fix beeline meta data parser on partition information
     new f0f17a1  [maven-release-plugin] prepare release kylin-2.6.3
     new e54200a  remove htable toUpperCase, for HBase tableName is case 
sensitive

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (94bf32d)
            \
             N -- N -- N   refs/heads/2.6.x-hadoop3.1 (e54200a)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 6 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:
 .../java/org/apache/kylin/common/Closeable.java    |   8 +-
 .../java/org/apache/kylin/common/KylinConfig.java  |  15 +++
 .../org/apache/kylin/common/KylinConfigBase.java   |   4 +
 .../common/persistence/PushdownResourceStore.java  |  29 +++---
 .../kylin/common/persistence/ResourceStore.java    |  91 ++++++-----------
 .../java/org/apache/kylin/cube/CubeManager.java    |  64 +++++++++---
 .../kylin/job/execution/ExecutableManager.java     |   2 +-
 .../kylin/exception/QueryOnCubeException.java      |  22 +++--
 .../org/apache/kylin/metadata/acl/TableACL.java    |   6 ++
 .../kylin/metadata/cachesync/Broadcaster.java      |  29 +++++-
 .../metadata/expression/BinaryTupleExpression.java |   5 +-
 .../apache/kylin/metadata/filter/TupleFilter.java  |  30 ++++--
 .../metadata/expression/TupleExpressionTest.java   |   9 +-
 .../kylin/metadata/filter/TupleFilterTest.java     |  64 ++++++++++++
 .../storage/gtrecord/GTCubeStorageQueryBase.java   |  13 ++-
 .../java/org/apache/kylin/engine/mr/CubingJob.java |   5 +
 .../steps/FactDistinctColumnsReducerMapping.java   |   2 +-
 .../kylin/engine/spark/SparkCubingByLayer.java     |   4 +-
 .../sql_casewhen/{query55.sql => query57.sql}      |   1 +
 odbc/README.md                                     |   2 +-
 pom.xml                                            |   2 +-
 .../kylin/query/adhoc/PushDownRunnerJdbcImpl.java  |   4 +-
 .../query/enumerator/LookupTableEnumerator.java    |   2 +-
 .../apache/kylin/query/relnode/OLAPContext.java    |  17 +++-
 .../org/apache/kylin/query/util/PushDownUtil.java  |   4 +-
 .../kylin/rest/controller/QueryController.java     |   4 +-
 .../apache/kylin/rest/job/MetadataCleanupJob.java  |   2 +-
 .../apache/kylin/rest/job/StorageCleanupJob.java   | 108 ++++++++++++---------
 .../apache/kylin/rest/service/AccessService.java   |   4 +-
 .../org/apache/kylin/rest/service/CubeService.java |  18 +++-
 .../apache/kylin/rest/service/QueryService.java    |   8 ++
 .../apache/kylin/rest/service/TableACLService.java |  44 +++++++++
 .../kylin/rest/job/StorageCleanupJobTest.java      |   8 +-
 .../kylin/rest/controller/QueryControllerTest.java |   4 +-
 .../kylin/rest/service/AccessServiceTest.java      |  31 ++++++
 .../kylin/source/hive/GarbageCollectionStep.java   |  10 +-
 .../org/apache/kylin/source/kafka/KafkaSource.java |   5 +-
 .../kylin/source/kafka/util/KafkaClient.java       |  10 +-
 .../kylin/storage/hbase/HBaseConnection.java       |   9 ++
 webapp/app/js/controllers/models.js                |  30 +++++-
 webapp/app/partials/cubes/cube_detail.html         |   2 +-
 webapp/app/partials/jobs/jobs.html                 |   3 +-
 webapp/app/partials/models/models_tree.html        |   1 +
 43 files changed, 537 insertions(+), 198 deletions(-)
 copy dev-support/checkstyle-apache-header.txt => 
core-common/src/main/java/org/apache/kylin/common/Closeable.java (90%)
 copy 
core-job/src/main/java/org/apache/kylin/job/exception/ExecuteException.java => 
core-metadata/src/main/java/org/apache/kylin/exception/QueryOnCubeException.java
 (69%)
 copy kylin-it/src/test/resources/query/sql_casewhen/{query55.sql => 
query57.sql} (99%)

Reply via email to