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 1175527 KYLIN-1716 UI Location Change Bug Fix
new f940526 #4238 Fix kylin_streaming_model broken when changing
kylin.source.hive.database-for-flattable to non-default value
new 472f8c2 KYLIN-4280 SegmenPruner support 'OR' and 'NOT'
new b6b2e16 KYLIN-4287 segmenPruner satisfy "IN" filter bug
new 09074e1 KYLIN-4166 Case when return null when SQL no GROUP BY
new 9d2007f KYLIN-4226: Skip current unavailable tables when updating
hbase coprocessor
new 6d7cf02 KYLIN-4290 Add file lock to kylin startup script to avoid
starting multiple instances on one node
new 51dcec3 KYLIN-4225 close hive session manually
new fe762b1 KYLIN-4304 Project list cannot be correctly sorted by 'Create
Time'
new a578105 KYLIN-4252 Fix the error "Cannot read property 'index' of
null" in visualization page
new 8f49194 KYLIN-3609 KYLIN-3409 KYLIN-4161 CubeSegmentStatisticsMap
exist only on OLAPQuery.EnumeratorTypeEnum.OLAP query type. (#942)
new 786728e KYLIN-4309 Fixed bug that failed to send to one mailbox will
caused other mailboxes have no chance to send
new 2634a7e KYLIN-4080 Project schema update event casues error reload
NEW DataModelDesc
new bc11001 Collect information of NumberFormatException
new ae63d70 Set repository sites to https
The 14 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 | 10 ++
build/bin/sample.sh | 13 +-
.../org/apache/kylin/common/util/MailService.java | 23 ++-
.../apache/kylin/cube/common/SegmentPruner.java | 56 +++----
.../apache/kylin/cube/common/TupleFilterNode.java | 76 +++++++++
.../kylin/cube/common/SegmentPrunerTest.java | 176 +++++++++++++++++++++
.../apache/kylin/metadata/model/DataModelDesc.java | 12 ++
.../kylin/metadata/model/DataModelManager.java | 29 ++--
.../kylin/metrics/lib/impl/hive/HiveProducer.java | 12 +-
pom.xml | 6 +-
.../apache/kylin/query/relnode/OLAPProjectRel.java | 32 ++--
.../org/apache/kylin/query/util/QueryUtil.java | 5 +
.../kylin/rest/controller/ModelController.java | 1 +
.../kylin/rest/metrics/QueryMetricsFacade.java | 47 +++---
.../storage/hbase/util/DeployCoprocessorCLI.java | 7 +
webapp/app/js/controllers/query.js | 4 +-
webapp/app/js/model/projectConfig.js | 2 +-
17 files changed, 403 insertions(+), 108 deletions(-)
create mode 100644
core-cube/src/main/java/org/apache/kylin/cube/common/TupleFilterNode.java