incubator-griffin git commit: move hive meta refresh function to HiveMetaStoreServiceImpl

2018-03-29 Thread guoyp
Repository: incubator-griffin
Updated Branches:
  refs/heads/master 898297161 -> 85d90b3c3


move hive meta refresh function to HiveMetaStoreServiceImpl

Author: wenzhao 

Closes #245 from vzhao/master.


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/85d90b3c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/85d90b3c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/85d90b3c

Branch: refs/heads/master
Commit: 85d90b3c3603e34fde5173d2e179acb114d22eef
Parents: 8982971
Author: wenzhao 
Authored: Fri Mar 30 11:57:23 2018 +0800
Committer: Lionel Liu 
Committed: Fri Mar 30 11:57:23 2018 +0800

--
 .../griffin/core/common/CacheEvictor.java   | 47 
 .../hive/HiveMetaStoreServiceImpl.java  | 10 +
 2 files changed, 10 insertions(+), 47 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-griffin/blob/85d90b3c/service/src/main/java/org/apache/griffin/core/common/CacheEvictor.java
--
diff --git 
a/service/src/main/java/org/apache/griffin/core/common/CacheEvictor.java 
b/service/src/main/java/org/apache/griffin/core/common/CacheEvictor.java
deleted file mode 100644
index 17c0f91..000
--- a/service/src/main/java/org/apache/griffin/core/common/CacheEvictor.java
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License.  You may obtain a copy of the License at
-
-  http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied.  See the License for the
-specific language governing permissions and limitations
-under the License.
-*/
-package org.apache.griffin.core.common;
-
-import org.apache.griffin.core.metastore.hive.HiveMetaStoreService;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.cache.annotation.CacheEvict;
-import org.springframework.scheduling.annotation.Scheduled;
-import org.springframework.stereotype.Component;
-
-@Component
-public class CacheEvictor {
-private static final Logger LOGGER = 
LoggerFactory.getLogger(CacheEvictor.class);
-
-private final HiveMetaStoreService hiveMetaStoreService;
-
-@Autowired
-public CacheEvictor(HiveMetaStoreService hiveMetaStoreService) {
-this.hiveMetaStoreService = hiveMetaStoreService;
-}
-
-@Scheduled(fixedRateString = 
"${cache.evict.hive.fixedRate.in.milliseconds}")
-@CacheEvict(cacheNames = "hive", allEntries = true, beforeInvocation = 
true)
-public void evictHiveCache() {
-LOGGER.info("Evict hive cache");
-hiveMetaStoreService.getAllTable();
-LOGGER.info("After evict hive cache,automatically refresh hive tables 
cache.");
-}
-}

http://git-wip-us.apache.org/repos/asf/incubator-griffin/blob/85d90b3c/service/src/main/java/org/apache/griffin/core/metastore/hive/HiveMetaStoreServiceImpl.java
--
diff --git 
a/service/src/main/java/org/apache/griffin/core/metastore/hive/HiveMetaStoreServiceImpl.java
 
b/service/src/main/java/org/apache/griffin/core/metastore/hive/HiveMetaStoreServiceImpl.java
index e941aaa..8e265e0 100644
--- 
a/service/src/main/java/org/apache/griffin/core/metastore/hive/HiveMetaStoreServiceImpl.java
+++ 
b/service/src/main/java/org/apache/griffin/core/metastore/hive/HiveMetaStoreServiceImpl.java
@@ -27,7 +27,9 @@ import org.slf4j.LoggerFactory;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.beans.factory.annotation.Value;
 import org.springframework.cache.annotation.CacheConfig;
+import org.springframework.cache.annotation.CacheEvict;
 import org.springframework.cache.annotation.Cacheable;
+import org.springframework.scheduling.annotation.Scheduled;
 import org.springframework.stereotype.Service;
 import org.springframework.util.StringUtils;
 
@@ -140,6 +142,14 @@ public class HiveMetaStoreServiceImpl implements 
HiveMetaStoreService {
 return result;
 }
 
+@Scheduled(fixedRateString = 
"${cache.evict.hive.fixedRate.in.milliseconds}")
+@CacheEvict(cacheNames = "hive", allEntries = true, beforeInvocation = 
true)
+public void evictHiveCache()

[47/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/c0d5e997
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/c0d5e997
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/c0d5e997

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: c0d5e99711c02cb0a689c8601322a85c871512d5
Parents: b6caae1 5fc8e89
Author: Lionel Liu 
Authored: Thu Mar 29 11:18:10 2018 +0800
Committer: Lionel Liu 
Committed: Thu Mar 29 11:18:10 2018 +0800

--
 .../main/java/org/apache/griffin/core/metric/MetricStoreImpl.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--




[45/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/f11c07ab
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/f11c07ab
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/f11c07ab

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: f11c07ab8efb97c75746141f5abae4df88c5aaea
Parents: 799c443 4aab9d5
Author: Lionel Liu 
Authored: Wed Mar 28 17:41:47 2018 +0800
Committer: Lionel Liu 
Committed: Wed Mar 28 17:41:47 2018 +0800

--
 service/pom.xml |  60 +-
 .../core/config/EclipseLinkJpaConfig.java   |  41 
 .../core/interceptor/TokenInterceptor.java  |  38 ++--
 .../apache/griffin/core/job/JobInstance.java|  31 +--
 .../apache/griffin/core/job/JobServiceImpl.java |  27 ++-
 .../griffin/core/job/entity/AbstractJob.java|   6 +-
 .../griffin/core/job/entity/GriffinJob.java |  21 +-
 .../griffin/core/job/entity/JobDataSegment.java |   6 +-
 .../core/job/entity/JobInstanceBean.java|  25 ++-
 .../griffin/core/job/entity/JobSchedule.java|  41 ++--
 .../core/job/entity/SegmentPredicate.java   |  46 +++--
 .../griffin/core/job/repo/JobInstanceRepo.java  |  16 +-
 .../measure/entity/AbstractAuditableEntity.java |   2 +-
 .../core/measure/entity/DataConnector.java  |  31 ++-
 .../core/measure/entity/EvaluateRule.java   |   4 -
 .../core/measure/entity/GriffinMeasure.java |  40 ++--
 .../griffin/core/measure/entity/Measure.java|   8 +-
 .../griffin/core/measure/entity/Rule.java   | 113 ++-
 .../core/measure/repo/DataConnectorRepo.java|   2 +-
 .../main/resources/application-dev.properties   |  76 ---
 .../main/resources/application-prod.properties  |  63 --
 .../src/main/resources/application.properties   |  15 +-
 .../src/main/resources/init_quartz_postgres.sql | 203 +++
 service/src/main/resources/quartz.properties|   2 +-
 .../config/EclipseLinkJpaConfigForTest.java |  39 
 .../core/config/PropertiesConfigTest.java   |   1 -
 .../core/job/JobInstanceBeanRepoTest.java   |  28 ++-
 .../griffin/core/job/JobInstanceTest.java   |   7 +-
 .../griffin/core/job/JobServiceImplTest.java|  43 ++--
 .../core/job/repo/JobInstanceRepoTest.java  |  23 ++-
 .../griffin/core/job/repo/JobRepoTest.java  |  17 +-
 .../measure/repo/DataConnectorRepoTest.java |  24 ++-
 .../core/measure/repo/MeasureRepoTest.java  |   3 +
 .../hive/HiveMetaStoreServiceImplTest.java  |   2 +-
 .../apache/griffin/core/util/EntityHelper.java  |   6 +-
 .../src/test/resources/application.properties   |  14 +-
 service/src/test/resources/quartz.properties|   4 +-
 37 files changed, 827 insertions(+), 301 deletions(-)
--




[44/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/799c4431
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/799c4431
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/799c4431

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 799c4431acfda1d26b791c7a94698eb28ed90533
Parents: 837591c 9ae7868
Author: Lionel Liu 
Authored: Thu Mar 22 16:30:22 2018 +0800
Committer: Lionel Liu 
Committed: Thu Mar 22 16:30:22 2018 +0800

--
 .../measure/config/params/env/SparkParam.scala   |  5 -
 .../griffin/measure/process/StreamingDqProcess.scala | 15 ---
 measure/src/test/resources/env-test.json |  3 ++-
 3 files changed, 18 insertions(+), 5 deletions(-)
--




[09/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/8803a6cd
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/8803a6cd
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/8803a6cd

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 8803a6cd2a02dd810eb709f0bb526717f37e30d5
Parents: 150a13c f581db3
Author: Lionel Liu 
Authored: Thu Jan 25 12:55:59 2018 +0800
Committer: Lionel Liu 
Committed: Thu Jan 25 12:55:59 2018 +0800

--
 ui/angular/package.json |   5 +-
 ui/angular/src/app/app.module.ts|  22 +-
 .../src/app/dataasset/dataasset.component.css   |   2 +-
 .../src/app/dataasset/dataasset.component.ts|  18 +-
 ui/angular/src/app/health/health.component.ts   |  92 +---
 .../app/job/create-job/create-job.component.css |  16 +
 .../job/create-job/create-job.component.html| 149 +++---
 .../app/job/create-job/create-job.component.ts  | 484 +++
 ui/angular/src/app/job/job.component.html   |   8 +-
 ui/angular/src/app/job/job.component.ts |  58 +--
 .../measure/create-measure/ac/ac.component.html |  84 +++-
 .../measure/create-measure/ac/ac.component.ts   | 269 ---
 .../configuration/configuration.component.css   |  18 +
 .../configuration/configuration.component.html  |  61 +++
 .../configuration.component.spec.ts |  44 ++
 .../configuration/configuration.component.ts|  73 +++
 .../create-measure.component.html   |  18 +
 .../measure/create-measure/pr/pr.component.html |  82 +++-
 .../measure/create-measure/pr/pr.component.ts   | 168 +--
 .../measure-detail.component.html   |  33 +-
 .../measure-detail/measure-detail.component.ts  |  32 +-
 .../src/app/measure/measure.component.html  |  15 +-
 ui/angular/src/app/measure/measure.component.ts |  26 +-
 .../detail-metric/detail-metric.component.ts|  23 +-
 ui/angular/src/app/metric/metric.component.html |  12 +-
 ui/angular/src/app/metric/metric.component.ts   | 174 ++-
 ui/angular/src/app/service/chart.service.ts |  31 +-
 ui/angular/src/app/service/service.service.ts   |  23 +-
 .../src/app/sidebar/sidebar.component.html  |   2 +-
 ui/angular/src/app/sidebar/sidebar.component.ts |  89 +---
 ui/angular/src/main.ts  |   2 -
 ui/angular/src/styles.css   |   4 +-
 32 files changed, 1420 insertions(+), 717 deletions(-)
--




incubator-griffin git commit: [maven-release-plugin] prepare for next development iteration

2018-03-29 Thread guoyp
Repository: incubator-griffin
Updated Branches:
  refs/heads/griffin-0.2.0-incubating-rc2 5354bf854 -> dc6fa150a


[maven-release-plugin] prepare for next development iteration


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/dc6fa150
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/dc6fa150
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/dc6fa150

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: dc6fa150afd1ea6175785412ef68bc9195ebda6f
Parents: 5354bf8
Author: Lionel Liu 
Authored: Thu Mar 29 21:10:28 2018 +0800
Committer: Lionel Liu 
Committed: Thu Mar 29 21:10:28 2018 +0800

--
 measure/pom.xml | 2 +-
 pom.xml | 4 ++--
 service/pom.xml | 2 +-
 ui/pom.xml  | 2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-griffin/blob/dc6fa150/measure/pom.xml
--
diff --git a/measure/pom.xml b/measure/pom.xml
index e1f7cd2..65e520b 100644
--- a/measure/pom.xml
+++ b/measure/pom.xml
@@ -23,7 +23,7 @@ under the License.
   
 org.apache.griffin
 griffin
-0.2.0-incubating
+0.2.1-incubating-SNAPSHOT
   
 
   measure

http://git-wip-us.apache.org/repos/asf/incubator-griffin/blob/dc6fa150/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 2f2e4cc..f0f1ad6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -30,7 +30,7 @@ under the License.
 
 org.apache.griffin
 griffin
-0.2.0-incubating
+0.2.1-incubating-SNAPSHOT
 pom
 Apache Griffin ${project.version}
 http://griffin.incubator.apache.org
@@ -82,7 +82,7 @@ under the License.
 
scm:git:https://git-wip-us.apache.org/repos/asf/incubator-griffin.git
 
scm:git:https://git-wip-us.apache.org/repos/asf/incubator-griffin.git
 
https://git-wip-us.apache.org/repos/asf?p=incubator-griffin.git;a=summary
-griffin-0.2.0-incubating
+HEAD
 
 
 

http://git-wip-us.apache.org/repos/asf/incubator-griffin/blob/dc6fa150/service/pom.xml
--
diff --git a/service/pom.xml b/service/pom.xml
index 6db7574..56922a5 100644
--- a/service/pom.xml
+++ b/service/pom.xml
@@ -23,7 +23,7 @@ under the License.
 
 org.apache.griffin
 griffin
-0.2.0-incubating
+0.2.1-incubating-SNAPSHOT
 
 
 service

http://git-wip-us.apache.org/repos/asf/incubator-griffin/blob/dc6fa150/ui/pom.xml
--
diff --git a/ui/pom.xml b/ui/pom.xml
index 9681feb..14fe902 100644
--- a/ui/pom.xml
+++ b/ui/pom.xml
@@ -24,7 +24,7 @@ under the License.
 
 org.apache.griffin
 griffin
-0.2.0-incubating
+0.2.1-incubating-SNAPSHOT
 
   ui
   pom



[07/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/80074bd1
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/80074bd1
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/80074bd1

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 80074bd1af18fe289485dc0543b55770f0bbcbd9
Parents: 4d84ab0 71fcf93
Author: Lionel Liu 
Authored: Mon Jan 22 09:52:38 2018 +0800
Committer: Lionel Liu 
Committed: Mon Jan 22 09:52:38 2018 +0800

--
 README.md   |  31 +-
 griffin-doc/service/postman/griffin.json|  68 +-
 .../griffin/core/config/PropertiesConfig.java   |   4 +-
 .../griffin/core/job/FileExistPredicator.java   |   4 +-
 .../apache/griffin/core/job/JobInstance.java|  12 +-
 .../apache/griffin/core/job/JobServiceImpl.java |  65 +-
 .../griffin/core/job/entity/GriffinJob.java |   6 +-
 .../griffin/core/job/entity/JobDataSegment.java |  10 +-
 .../griffin/core/job/entity/JobSchedule.java|   8 +-
 .../core/job/entity/SegmentPredicate.java   |   5 +
 .../griffin/core/job/entity/SegmentRange.java   |   8 +
 .../measure/ExternalMeasureOperationImpl.java   |   6 +-
 .../measure/GriffinMeasureOperationImpl.java|  19 +-
 .../griffin/core/measure/MeasureOperation.java  |   2 +-
 .../griffin/core/measure/MeasureOrgService.java |   1 -
 .../core/measure/MeasureServiceImpl.java|  11 +-
 .../core/measure/entity/ExternalMeasure.java|   3 +-
 .../core/measure/entity/GriffinMeasure.java |  20 +-
 .../griffin/core/measure/entity/Measure.java|   4 +-
 .../griffin/core/measure/entity/Rule.java   |   8 +-
 .../griffin/core/measure/repo/MeasureRepo.java  |  10 -
 .../org/apache/griffin/core/util/AvroUtil.java  |  30 -
 .../org/apache/griffin/core/util/TimeUtil.java  |  44 +-
 .../src/main/resources/application.properties   |   4 +-
 service/src/main/resources/sparkJob.properties  |  16 +-
 .../core/config/PropertiesConfigTest.java   | 160 
 .../griffin/core/job/JobInstanceTest.java   | 186 
 .../griffin/core/job/JobServiceImplTest.java| 934 +++
 .../griffin/core/job/SparkSubmitJobTest.java| 179 +++-
 .../griffin/core/job/repo/JobRepoTest.java  |  94 ++
 .../core/measure/MeasureControllerTest.java |  24 +-
 .../core/measure/MeasureOrgServiceImplTest.java | 212 +++--
 .../core/measure/MeasureServiceImplTest.java| 336 +--
 .../measure/repo/DataConnectorRepoTest.java |  80 ++
 .../core/measure/repo/MeasureRepoTest.java  | 189 ++--
 .../apache/griffin/core/util/EntityHelper.java  | 167 +++-
 .../griffin/core/util/GriffinUtilTest.java  |  87 --
 .../apache/griffin/core/util/JsonUtilTest.java  |  84 ++
 .../griffin/core/util/PropertiesUtilTest.java   |  45 +
 .../apache/griffin/core/util/TimeUtilTest.java  |  94 ++
 .../src/test/resources/application.properties   |  79 +-
 service/src/test/resources/quartz.properties|   2 +-
 service/src/test/resources/sparkJob.properties  |  50 +
 43 files changed, 2332 insertions(+), 1069 deletions(-)
--




[30/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/c06caa91
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/c06caa91
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/c06caa91

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: c06caa915b787c73d7340c72d076a9d33973c63f
Parents: 5d39a54 a691f5e
Author: Lionel Liu 
Authored: Fri Feb 9 19:01:07 2018 +0800
Committer: Lionel Liu 
Committed: Fri Feb 9 19:01:07 2018 +0800

--
 .../org/apache/griffin/measure/data/connector/DataConnector.scala   | 1 +
 1 file changed, 1 insertion(+)
--




[39/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/57df9298
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/57df9298
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/57df9298

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 57df9298e36dd1360a7189e9324b37dc4a020e1a
Parents: d728138 8e183df
Author: Lionel Liu 
Authored: Tue Mar 6 15:19:22 2018 +0800
Committer: Lionel Liu 
Committed: Tue Mar 6 15:19:22 2018 +0800

--
 griffin-doc/FSD.md  |  64 +--
 griffin-doc/img/fsd/image2018-1-8 12-33-2.png   | Bin 108413 -> 128529 bytes
 griffin-doc/img/fsd/image2018-1-8 12-38-12.png  | Bin 120481 -> 123654 bytes
 griffin-doc/img/fsd/image2018-1-8 12-44-30.png  | Bin 152061 -> 169651 bytes
 griffin-doc/img/fsd/image2018-1-8 12-48-20.png  | Bin 186633 -> 137816 bytes
 griffin-doc/img/fsd/image2018-1-8 12-51-13.png  | Bin 160405 -> 150127 bytes
 griffin-doc/img/fsd/image2018-1-8 13-02-15.png  | Bin 272258 -> 238736 bytes
 griffin-doc/img/fsd/image2018-1-8 13-07-16.png  | Bin 120708 -> 128242 bytes
 griffin-doc/img/fsd/image2018-1-8 13-10-28.png  | Bin 120358 -> 142898 bytes
 griffin-doc/img/fsd/image2018-1-8 13-12-10.png  | Bin 143090 -> 113922 bytes
 griffin-doc/img/fsd/image2018-1-8 13-13-40.png  | Bin 155166 -> 139110 bytes
 griffin-doc/img/fsd/image2018-1-8 13-15-30.png  | Bin 160387 -> 133758 bytes
 griffin-doc/img/fsd/image2018-2-5 14-44-20.png  | Bin 279001 -> 210289 bytes
 griffin-doc/img/fsd/image2018-2-5 14-45-10.png  | Bin 111384 -> 127324 bytes
 griffin-doc/img/fsd/image2018-2-5 14-46-26.png  | Bin 124723 -> 118602 bytes
 griffin-doc/img/fsd/image2018-2-5 14-50-10.png  | Bin 85916 -> 72787 bytes
 griffin-doc/img/fsd/image2018-2-6 10-48-10.png  | Bin 59232 -> 80211 bytes
 griffin-doc/img/fsd/image2018-2-6 10-50-10.png  | Bin 144805 -> 100417 bytes
 griffin-doc/img/fsd/image2018-2-6 10-51-16.png  | Bin 118094 -> 170904 bytes
 griffin-doc/img/fsd/image2018-2-6 11-1-10.png   | Bin 214914 -> 213911 bytes
 griffin-doc/img/fsd/image2018-2-6 11-3-19.png   | Bin 97741 -> 97685 bytes
 griffin-doc/img/userguide/ac_partition.png  | Bin 186633 -> 137816 bytes
 griffin-doc/img/userguide/asset list.png| Bin 89272 -> 72787 bytes
 griffin-doc/img/userguide/confirm job.png   | Bin 95586 -> 97685 bytes
 griffin-doc/img/userguide/confirm measure.png   | Bin 147534 -> 150127 bytes
 griffin-doc/img/userguide/dashboard big.png | Bin 118094 -> 170904 bytes
 griffin-doc/img/userguide/job config.png| Bin 209684 -> 213911 bytes
 griffin-doc/img/userguide/mapping.png   | Bin 202146 -> 169651 bytes
 griffin-doc/img/userguide/measure info.png  | Bin 288214 -> 238736 bytes
 griffin-doc/img/userguide/metrics dashboard.png | Bin 144805 -> 100417 bytes
 griffin-doc/img/userguide/right bar.png | Bin 59232 -> 80211 bytes
 griffin-doc/img/userguide/source.PNG| Bin 122418 -> 128529 bytes
 griffin-doc/img/userguide/target.PNG| Bin 114057 -> 123654 bytes
 griffin-doc/ui/test-case.md |   2 +-
 griffin-doc/ui/user-guide.md|   6 +-
 ui/angular/src/app/service/chart.service.ts |   5 +-
 36 files changed, 50 insertions(+), 27 deletions(-)
--




[10/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/92c9f657
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/92c9f657
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/92c9f657

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 92c9f657687ae03ededf2bfbdf3d74bc1ac39647
Parents: 8803a6c 2972aa2
Author: Lionel Liu 
Authored: Fri Jan 26 14:24:43 2018 +0800
Committer: Lionel Liu 
Committed: Fri Jan 26 14:24:43 2018 +0800

--
 .../job/create-job/create-job.component.html|  73 +---
 .../app/job/create-job/create-job.component.ts  | 187 ++-
 .../measure/create-measure/ac/ac.component.html | 164 ++--
 .../measure/create-measure/ac/ac.component.ts   |  32 ++--
 .../measure/create-measure/pr/pr.component.html |  88 +
 .../measure/create-measure/pr/pr.component.ts   |  57 +++---
 .../measure-detail.component.html   |  54 +-
 .../measure-detail/measure-detail.component.ts  |  59 --
 .../src/app/measure/measure.component.html  |   6 +-
 ui/angular/src/app/service/service.service.ts   |   4 +-
 10 files changed, 330 insertions(+), 394 deletions(-)
--




[36/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/e7a9c5d7
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/e7a9c5d7
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/e7a9c5d7

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: e7a9c5d721e0cca9f6b97741824b9734e7cdf31f
Parents: 5567c67 ada0add
Author: Lionel Liu 
Authored: Thu Mar 1 16:46:49 2018 +0800
Committer: Lionel Liu 
Committed: Thu Mar 1 16:46:49 2018 +0800

--
 ui/angular/src/app/dataasset/dataasset.component.html | 2 --
 ui/angular/src/app/metric/metric.component.ts | 4 
 ui/angular/src/app/sidebar/sidebar.component.ts   | 4 
 3 files changed, 8 insertions(+), 2 deletions(-)
--




[11/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/8fbd0243
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/8fbd0243
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/8fbd0243

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 8fbd0243c239a853f1534ff940865c67a04e6b10
Parents: 92c9f65 6b1a700
Author: Lionel Liu 
Authored: Tue Jan 30 10:30:33 2018 +0800
Committer: Lionel Liu 
Committed: Tue Jan 30 10:30:33 2018 +0800

--
 griffin-doc/service/postman/griffin.json| 2457 +-
 .../core/error/exception/GriffinException.java  |   41 -
 .../exception/RuntimeExceptionHandler.java  |   62 -
 .../core/exception/GriffinException.java|   62 +
 .../core/exception/GriffinExceptionHandler.java |   52 +
 .../core/exception/GriffinExceptionMessage.java |   77 +
 .../exception/GriffinExceptionResponse.java |   82 +
 .../apache/griffin/core/job/JobController.java  |   20 +-
 .../org/apache/griffin/core/job/JobService.java |   14 +-
 .../apache/griffin/core/job/JobServiceImpl.java |  145 +-
 .../apache/griffin/core/job/SparkSubmitJob.java |7 +-
 .../measure/ExternalMeasureOperationImpl.java   |   65 +-
 .../measure/GriffinMeasureOperationImpl.java|   52 +-
 .../griffin/core/measure/MeasureController.java |   15 +-
 .../griffin/core/measure/MeasureOperation.java  |7 +-
 .../griffin/core/measure/MeasureService.java|7 +-
 .../core/measure/MeasureServiceImpl.java|   30 +-
 .../hive/HiveMetaStoreServiceImpl.java  |   10 +-
 .../griffin/core/metric/MetricController.java   |7 +-
 .../griffin/core/metric/MetricService.java  |5 +-
 .../griffin/core/metric/MetricServiceImpl.java  |   69 +-
 .../apache/griffin/core/metric/MetricStore.java |8 +-
 .../griffin/core/metric/MetricStoreImpl.java|   71 +-
 .../core/util/GriffinOperationMessage.java  |   79 -
 .../griffin/core/job/JobControllerTest.java |  122 +-
 .../griffin/core/job/JobServiceImplTest.java|  312 ++-
 .../griffin/core/job/SparkSubmitJobTest.java|   22 +-
 .../ExternalMeasureOperationImplTest.java   |  102 +
 .../GriffinMeasureOperationImplTest.java|  120 +
 .../core/measure/MeasureControllerTest.java |   93 +-
 .../core/measure/MeasureOrgControllerTest.java  |6 -
 .../core/measure/MeasureServiceImplTest.java|  259 +-
 .../core/metric/MetricControllerTest.java   |  172 ++
 .../core/metric/MetricServiceImplTest.java  |  172 ++
 .../apache/griffin/core/util/EntityHelper.java  |5 +
 .../apache/griffin/core/util/TimeUtilTest.java  |   35 +-
 36 files changed, 2741 insertions(+), 2123 deletions(-)
--




[19/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/995a4070
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/995a4070
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/995a4070

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 995a407070bc917ff3edcef3cb2216c946d16041
Parents: 933ff30 459c966
Author: Lionel Liu 
Authored: Mon Feb 5 13:03:26 2018 +0800
Committer: Lionel Liu 
Committed: Mon Feb 5 13:03:26 2018 +0800

--
 ui/angular/src/app/health/health.component.ts   |  34 
 ui/angular/src/app/job/job.component.ts |   1 +
 .../measure/create-measure/ac/ac.component.css  |   2 +-
 .../measure/create-measure/ac/ac.component.html |   2 +-
 .../measure/create-measure/pr/pr.component.ts   |  33 +++
 .../measure-detail.component.html   |   6 +-
 .../measure-detail/measure-detail.component.ts  |  16 ++--
 .../detail-metric/detail-metric.component.css   |  86 ++-
 .../detail-metric/detail-metric.component.html  |  55 
 .../detail-metric/detail-metric.component.ts|  50 +++
 ui/angular/src/app/metric/metric.component.ts   |  57 
 ui/angular/src/app/service/chart.service.ts |  11 ++-
 ui/angular/src/app/sidebar/sidebar.component.ts |  34 
 ui/angular/src/assets/img/table.png | Bin 0 -> 882 bytes
 14 files changed, 289 insertions(+), 98 deletions(-)
--




[20/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/82db484c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/82db484c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/82db484c

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 82db484c3891ec3c59a4341a81f8ba7ed974559f
Parents: 995a407 0f5d742
Author: Lionel Liu 
Authored: Tue Feb 6 10:06:11 2018 +0800
Committer: Lionel Liu 
Committed: Tue Feb 6 10:06:11 2018 +0800

--
 ui/angular/src/app/health/health.component.ts   |  26 +++---
 ui/angular/src/app/job/job.component.html   |   7 ++
 ui/angular/src/app/job/job.component.ts |   5 ++
 .../measure-detail.component.html   |   2 +-
 .../detail-metric/detail-metric.component.css   |   4 +-
 .../detail-metric/detail-metric.component.html  |  86 +++
 .../detail-metric/detail-metric.component.ts|  12 ++-
 ui/angular/src/app/metric/metric.component.ts   |  56 +---
 ui/angular/src/app/service/chart.service.ts |  22 ++---
 ui/angular/src/app/sidebar/sidebar.component.ts |  26 +++---
 ui/angular/src/assets/img/table.png | Bin 882 -> 0 bytes
 11 files changed, 113 insertions(+), 133 deletions(-)
--




[24/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/6ef8764f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/6ef8764f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/6ef8764f

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 6ef8764f313a42d132f97a9dbd38a1b87bcbe226
Parents: 922da1b d063c03
Author: Lionel Liu 
Authored: Wed Feb 7 15:13:45 2018 +0800
Committer: Lionel Liu 
Committed: Wed Feb 7 15:13:45 2018 +0800

--
 ui/angular/src/app/app.component.html   |  6 +-
 ui/angular/src/app/health/health.component.ts   |  4 +-
 .../app/job/create-job/create-job.component.ts  |  2 +-
 ui/angular/src/app/job/job.component.ts |  1 -
 .../measure/create-measure/ac/ac.component.html |  4 +-
 .../measure/create-measure/ac/ac.component.ts   |  8 +-
 .../detail-metric/detail-metric.component.css   | 91 ++--
 .../detail-metric/detail-metric.component.html  | 30 +++
 .../detail-metric/detail-metric.component.ts|  4 +-
 ui/angular/src/app/metric/metric.component.ts   |  4 +-
 ui/angular/src/app/service/chart.service.ts |  2 +-
 ui/angular/src/app/service/user.service.ts  |  1 -
 ui/angular/src/app/sidebar/sidebar.component.ts |  4 +-
 13 files changed, 80 insertions(+), 81 deletions(-)
--




[32/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/eedd1d48
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/eedd1d48
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/eedd1d48

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: eedd1d48de7d34d8845600c7f90ce477b1b32814
Parents: 169a47b b2f334a
Author: Lionel Liu 
Authored: Mon Feb 12 10:56:09 2018 +0800
Committer: Lionel Liu 
Committed: Mon Feb 12 10:56:09 2018 +0800

--
 README.md   |  225 +-
 griffin-doc/service/api-guide.md|  858 ---
 griffin-doc/service/postman/griffin.json| 2333 ++
 .../griffin/core/metric/MetricStoreImpl.java|6 +-
 4 files changed, 1983 insertions(+), 1439 deletions(-)
--




[28/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/f538b33d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/f538b33d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/f538b33d

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: f538b33db525c3d280d1af3516ea289fce8e7f8f
Parents: 41d3794 399d923
Author: Lionel Liu 
Authored: Thu Feb 8 15:42:33 2018 +0800
Committer: Lionel Liu 
Committed: Thu Feb 8 15:42:33 2018 +0800

--
 .../measure/create-measure/pr/pr.component.ts   | 41 +
 .../detail-metric/detail-metric.component.html  | 30 ++---
 .../detail-metric/detail-metric.component.ts| 47 +---
 3 files changed, 69 insertions(+), 49 deletions(-)
--




[41/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/d000dab0
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/d000dab0
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/d000dab0

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: d000dab068795fc67c9eac14c08782dd0b2e50d1
Parents: f00fc4e 07121ba
Author: Lionel Liu 
Authored: Wed Mar 21 16:05:21 2018 +0800
Committer: Lionel Liu 
Committed: Wed Mar 21 16:05:21 2018 +0800

--
 griffin-doc/FSD.md| 4 ++--
 ui/angular/src/app/login/login.component.html | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)
--




[43/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/837591c0
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/837591c0
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/837591c0

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 837591c053d6a7a1b198689ef1867b19b54b1385
Parents: df43c96 db3e6ec
Author: Lionel Liu 
Authored: Thu Mar 22 14:52:50 2018 +0800
Committer: Lionel Liu 
Committed: Thu Mar 22 14:52:50 2018 +0800

--
 service/src/main/resources/banner.txt | 5 +
 1 file changed, 5 insertions(+)
--




[37/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/25cdce97
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/25cdce97
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/25cdce97

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 25cdce972a3756e9eddc9c6cc45bb7528c53e195
Parents: e7a9c5d 4a9137d
Author: Lionel Liu 
Authored: Thu Mar 1 16:48:24 2018 +0800
Committer: Lionel Liu 
Committed: Thu Mar 1 16:48:24 2018 +0800

--
 .../core/info/GriffinInfoController.java|  2 +-
 .../apache/griffin/core/interceptor/Token.java  | 28 
 .../core/interceptor/TokenInterceptor.java  | 74 
 .../core/interceptor/WebAppConfigurer.java  | 33 +
 .../apache/griffin/core/job/JobController.java  |  2 +
 .../apache/griffin/core/job/JobInstance.java|  2 +
 .../apache/griffin/core/job/JobServiceImpl.java |  2 +
 .../apache/griffin/core/job/SparkSubmitJob.java | 14 ++--
 .../griffin/core/measure/MeasureController.java |  2 +
 .../measure/entity/AbstractAuditableEntity.java | 15 ++--
 .../griffin/core/metric/MetricServiceImpl.java  |  2 +-
 .../core/info/GriffinInfoControllerTest.java|  2 +-
 12 files changed, 160 insertions(+), 18 deletions(-)
--




[50/50] incubator-griffin git commit: [maven-release-plugin] prepare release griffin-0.2.0-incubating

2018-03-29 Thread guoyp
[maven-release-plugin] prepare release griffin-0.2.0-incubating


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/5354bf85
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/5354bf85
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/5354bf85

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 5354bf854b28d42c755f9e6900642f118d0d5daa
Parents: 6d578a3
Author: Lionel Liu 
Authored: Thu Mar 29 21:09:54 2018 +0800
Committer: Lionel Liu 
Committed: Thu Mar 29 21:09:54 2018 +0800

--
 measure/pom.xml | 2 +-
 pom.xml | 4 ++--
 service/pom.xml | 5 ++---
 ui/pom.xml  | 2 +-
 4 files changed, 6 insertions(+), 7 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-griffin/blob/5354bf85/measure/pom.xml
--
diff --git a/measure/pom.xml b/measure/pom.xml
index 8cecb71..e1f7cd2 100644
--- a/measure/pom.xml
+++ b/measure/pom.xml
@@ -23,7 +23,7 @@ under the License.
   
 org.apache.griffin
 griffin
-0.2.0-incubating-SNAPSHOT
+0.2.0-incubating
   
 
   measure

http://git-wip-us.apache.org/repos/asf/incubator-griffin/blob/5354bf85/pom.xml
--
diff --git a/pom.xml b/pom.xml
index f8686c6..2f2e4cc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -30,7 +30,7 @@ under the License.
 
 org.apache.griffin
 griffin
-0.2.0-incubating-SNAPSHOT
+0.2.0-incubating
 pom
 Apache Griffin ${project.version}
 http://griffin.incubator.apache.org
@@ -82,7 +82,7 @@ under the License.
 
scm:git:https://git-wip-us.apache.org/repos/asf/incubator-griffin.git
 
scm:git:https://git-wip-us.apache.org/repos/asf/incubator-griffin.git
 
https://git-wip-us.apache.org/repos/asf?p=incubator-griffin.git;a=summary
-HEAD
+griffin-0.2.0-incubating
 
 
 

http://git-wip-us.apache.org/repos/asf/incubator-griffin/blob/5354bf85/service/pom.xml
--
diff --git a/service/pom.xml b/service/pom.xml
index e2d96ae..6db7574 100644
--- a/service/pom.xml
+++ b/service/pom.xml
@@ -17,14 +17,13 @@ KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
 -->
-http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
 4.0.0
 
 
 org.apache.griffin
 griffin
-0.2.0-incubating-SNAPSHOT
+0.2.0-incubating
 
 
 service

http://git-wip-us.apache.org/repos/asf/incubator-griffin/blob/5354bf85/ui/pom.xml
--
diff --git a/ui/pom.xml b/ui/pom.xml
index 707f7c1..9681feb 100644
--- a/ui/pom.xml
+++ b/ui/pom.xml
@@ -24,7 +24,7 @@ under the License.
 
 org.apache.griffin
 griffin
-0.2.0-incubating-SNAPSHOT
+0.2.0-incubating
 
   ui
   pom



[27/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/41d37946
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/41d37946
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/41d37946

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 41d3794698e6c2e82c2a216c0ea972ba0ea6ba99
Parents: b4c2d36 3a5746e
Author: Lionel Liu 
Authored: Wed Feb 7 18:46:41 2018 +0800
Committer: Lionel Liu 
Committed: Wed Feb 7 18:46:41 2018 +0800

--
 .../measure/rule/trans/DistinctnessRulePlanTrans.scala| 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)
--




[48/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/07a67642
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/07a67642
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/07a67642

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 07a67642627dc610109120a34ceac964fac9eb81
Parents: c0d5e99 293217f
Author: Lionel Liu 
Authored: Thu Mar 29 14:26:27 2018 +0800
Committer: Lionel Liu 
Committed: Thu Mar 29 14:26:27 2018 +0800

--
 README.md   |  16 ++-
 griffin-doc/dev/dev-env-build.md| 144 +++
 .../docker/svc_msr/docker-compose-batch.yml |   1 +
 .../docker/svc_msr/docker-compose-streaming.yml |   1 +
 4 files changed, 159 insertions(+), 3 deletions(-)
--




[35/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/5567c674
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/5567c674
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/5567c674

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 5567c674edc93a0f28c75c748d8639fdb43673dc
Parents: 4342c6d 168ebdf
Author: Lionel Liu 
Authored: Tue Feb 27 16:16:02 2018 +0800
Committer: Lionel Liu 
Committed: Tue Feb 27 16:16:02 2018 +0800

--
 .../docker/svc_msr/docker-compose-batch.yml |  2 ++
 .../docker/svc_msr/docker-compose-streaming.yml |  2 ++
 .../rule/trans/DistinctnessRulePlanTrans.scala  | 22 +---
 3 files changed, 14 insertions(+), 12 deletions(-)
--




[13/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/5f71eee0
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/5f71eee0
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/5f71eee0

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 5f71eee0c3f51baba3eb90b635b16611066c75e7
Parents: 198b593 e703471
Author: Lionel Liu 
Authored: Wed Jan 31 16:32:46 2018 +0800
Committer: Lionel Liu 
Committed: Wed Jan 31 16:32:46 2018 +0800

--
 ui/angular/src/app/app.component.css| 167 ++--
 ui/angular/src/app/app.component.html   |   2 +-
 ui/angular/src/app/app.component.ts |  84 +-
 ui/angular/src/app/app.module.ts|   1 -
 .../src/app/dataasset/dataasset.component.css   |  26 +-
 .../src/app/dataasset/dataasset.component.ts|  17 -
 ui/angular/src/app/health/health.component.ts   | 264 ---
 .../app/job/create-job/create-job.component.css |  52 +-
 .../job/create-job/create-job.component.html|   3 +-
 .../app/job/create-job/create-job.component.ts  | 307 
 ui/angular/src/app/job/job.component.css|  42 +-
 ui/angular/src/app/job/job.component.html   |  37 +-
 ui/angular/src/app/job/job.component.ts | 179 ++---
 ui/angular/src/app/login/login.component.css|  87 ++-
 ui/angular/src/app/login/login.component.ts | 133 ++--
 .../measure/create-measure/ac/ac.component.css  | 105 +--
 .../measure/create-measure/ac/ac.component.html | 116 +--
 .../measure/create-measure/ac/ac.component.ts   | 770 ++-
 .../configuration/configuration.component.css   |   8 -
 .../configuration/configuration.component.html  |  13 +-
 .../configuration/configuration.component.ts| 124 +--
 .../create-measure/create-measure.component.css | 109 +--
 .../create-measure/create-measure.component.ts  |  51 +-
 .../measure/create-measure/pr/pr.component.css  | 166 ++--
 .../measure/create-measure/pr/pr.component.html |  89 +--
 .../measure/create-measure/pr/pr.component.ts   | 706 +
 .../create-measure/pr/rule/rule.component.css   |  44 +-
 .../create-measure/pr/rule/rule.component.ts|   1 -
 .../measure-detail.component.html   |  10 +-
 .../measure-detail/measure-detail.component.ts  |  99 +--
 .../src/app/measure/measure.component.css   | 351 -
 .../src/app/measure/measure.component.html  |  16 +-
 ui/angular/src/app/measure/measure.component.ts | 116 +--
 .../detail-metric/detail-metric.component.ts| 126 +--
 ui/angular/src/app/metric/metric.component.css  |  65 +-
 ui/angular/src/app/metric/metric.component.html |   7 -
 ui/angular/src/app/metric/metric.component.ts   | 153 ++--
 ui/angular/src/app/service/chart.service.ts | 456 +--
 ui/angular/src/app/service/service.service.ts   | 188 +++--
 ui/angular/src/app/service/user.service.ts  |  32 +-
 .../src/app/sidebar/sidebar.component.css   | 266 +++
 .../src/app/sidebar/sidebar.component.html  |   3 +-
 ui/angular/src/app/sidebar/sidebar.component.ts | 154 ++--
 ui/angular/src/app/sidebar/truncate.pipe.ts |   2 -
 ui/angular/src/styles.css   |   4 +-
 45 files changed, 2881 insertions(+), 2870 deletions(-)
--




[05/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/33ff150c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/33ff150c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/33ff150c

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 33ff150c7e54ab3affe9f2496c3b35fd3bcf8d08
Parents: 882c6ed 44eea86
Author: Lionel Liu 
Authored: Tue Jan 16 17:00:44 2018 +0800
Committer: Lionel Liu 
Committed: Tue Jan 16 17:00:44 2018 +0800

--
 griffin-doc/service/api-guide.md| 1084 +
 griffin-doc/service/postman/griffin.json| 2259 ++
 .../apache/griffin/core/job/JobController.java  |2 +-
 .../apache/griffin/core/job/JobInstance.java|3 +-
 .../org/apache/griffin/core/job/JobService.java |2 +-
 .../apache/griffin/core/job/JobServiceImpl.java |   86 +-
 .../griffin/core/job/entity/JobDataSegment.java |5 +
 .../griffin/core/job/entity/JobSchedule.java|6 +-
 .../griffin/core/login/LoginController.java |3 +-
 .../measure/ExternalMeasureOperationImpl.java   |   14 +-
 .../measure/GriffinMeasureOperationImpl.java|   12 +-
 .../core/measure/MeasureServiceImpl.java|   14 +-
 .../core/measure/entity/DataConnector.java  |   21 +-
 .../core/measure/entity/GriffinMeasure.java |8 +
 .../griffin/core/metric/MetricController.java   |5 +-
 .../griffin/core/metric/MetricService.java  |5 +-
 .../griffin/core/metric/MetricServiceImpl.java  |   20 +-
 .../griffin/core/metric/MetricStoreImpl.java|2 +-
 .../src/main/resources/application.properties   |   16 +-
 .../griffin/core/job/JobControllerTest.java |  308 +--
 .../core/job/repo/JobInstanceRepoTest.java  |   87 +
 .../core/measure/MeasureControllerTest.java |  398 ++-
 .../core/measure/MeasureOrgControllerTest.java  |1 -
 .../core/measure/MeasureOrgServiceImplTest.java |4 +-
 .../core/measure/MeasureServiceImplTest.java|6 +-
 .../griffin/core/measure/MeasureTestHelper.java |   89 -
 .../core/measure/repo/MeasureRepoTest.java  |2 +-
 .../apache/griffin/core/util/EntityHelper.java  |   89 +
 28 files changed, 3057 insertions(+), 1494 deletions(-)
--




[31/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/169a47b9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/169a47b9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/169a47b9

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 169a47b9690a2be165dac30628af831b5d461247
Parents: c06caa9 711acce
Author: Lionel Liu 
Authored: Mon Feb 12 10:52:26 2018 +0800
Committer: Lionel Liu 
Committed: Mon Feb 12 10:52:26 2018 +0800

--
 .../measure/create-measure/ac/ac.component.ts   |  8 +++---
 .../measure/create-measure/pr/pr.component.html |  2 +-
 .../measure/create-measure/pr/pr.component.ts   |  8 --
 .../detail-metric/detail-metric.component.html  | 30 ++--
 4 files changed, 25 insertions(+), 23 deletions(-)
--




[01/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Repository: incubator-griffin
Updated Branches:
  refs/heads/griffin-0.2.0-incubating-rc2 [created] 5354bf854


Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/a4f573ac
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/a4f573ac
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/a4f573ac

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: a4f573acd63b298d554578a3594df255f4e63ed9
Parents: 4e6862f fad7daf
Author: Lionel Liu 
Authored: Wed Jan 10 15:15:28 2018 +0800
Committer: Lionel Liu 
Committed: Wed Jan 10 15:15:28 2018 +0800

--
 griffin-doc/measure/dsl-guide.md|  13 +-
 .../rule/adaptor/GriffinDslAdaptor.scala| 872 +++
 .../griffin/measure/rule/dsl/DqType.scala   |   8 +-
 .../rule/dsl/analyzer/DuplicateAnalyzer.scala   |  46 -
 .../rule/dsl/analyzer/UniquenessAnalyzer.scala  |  46 +
 .../rule/dsl/expr/ClauseExpression.scala|   4 +-
 .../rule/dsl/parser/GriffinDslParser.scala  |  10 +-
 .../resources/_duplicate-batch-griffindsl.json  |  56 --
 .../_duplicate-streaming-griffindsl.json| 116 ---
 .../_duplicate-streaming-sparksql.json  | 130 ---
 .../resources/_uniqueness-batch-griffindsl.json |  58 ++
 .../_uniqueness-streaming-griffindsl.json   | 119 +++
 .../_uniqueness-streaming-sparksql.json | 130 +++
 .../rule/adaptor/GriffinDslAdaptorTest.scala|   4 +-
 14 files changed, 489 insertions(+), 1123 deletions(-)
--





[15/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/2dda957b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/2dda957b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/2dda957b

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 2dda957bbe1f0451517021453bdc1a8b4ed339f7
Parents: d8efb4b b83c587
Author: Lionel Liu 
Authored: Thu Feb 1 16:14:22 2018 +0800
Committer: Lionel Liu 
Committed: Thu Feb 1 16:14:22 2018 +0800

--
 .../measure/cache/info/TimeInfoCache.scala  |   2 +
 .../streaming/KafkaStreamingDataConnector.scala |   9 +-
 .../streaming/StreamingDataConnector.scala  |   2 +-
 .../measure/data/source/DataCacheable.scala |  76 --
 .../measure/data/source/DataSource.scala|  16 +-
 .../measure/data/source/DataSourceCache.scala   | 403 --
 .../measure/data/source/DataSourceFactory.scala |  25 +-
 .../data/source/cache/DataCacheable.scala   |  84 ++
 .../data/source/cache/DataSourceCache.scala | 333 
 .../source/cache/DataSourceCacheFactory.scala   |  58 ++
 .../data/source/cache/JsonDataSourceCache.scala |  40 +
 .../data/source/cache/OrcDataSourceCache.scala  |  40 +
 .../source/cache/ParquetDataSourceCache.scala   |  40 +
 .../griffin/measure/persist/MultiPersists.scala |   8 -
 .../measure/process/BatchDqProcess.scala|  47 +-
 .../measure/process/StreamingDqProcess.scala|   6 +-
 .../measure/process/StreamingDqThread.scala |  95 +--
 .../measure/process/engine/DqEngine.scala   |   2 +
 .../measure/process/engine/DqEngines.scala  | 307 ++--
 .../measure/process/engine/SparkDqEngine.scala  | 229 +-
 .../measure/process/temp/TimeRange.scala|   2 +-
 .../rule/adaptor/DataFrameOprAdaptor.scala  |   6 +-
 .../measure/rule/adaptor/GlobalKeys.scala   |  48 --
 .../rule/adaptor/GriffinDslAdaptor.scala| 759 +--
 .../measure/rule/adaptor/RuleAdaptor.scala  | 128 +---
 .../measure/rule/adaptor/SparkSqlAdaptor.scala  |   6 +-
 .../griffin/measure/rule/plan/DsUpdate.scala|  24 +
 .../measure/rule/plan/MetricExport.scala|   3 -
 .../measure/rule/plan/RecordExport.scala|   3 -
 .../griffin/measure/rule/plan/RuleExport.scala  |   2 -
 .../griffin/measure/rule/plan/RulePlan.scala|   9 +-
 .../rule/trans/AccuracyRulePlanTrans.scala  | 198 +
 .../rule/trans/DistinctnessRulePlanTrans.scala  | 234 ++
 .../measure/rule/trans/DsUpdateFactory.scala|  37 +
 .../rule/trans/ProfilingRulePlanTrans.scala |  98 +++
 .../measure/rule/trans/RuleExportFactory.scala  |  65 ++
 .../measure/rule/trans/RulePlanTrans.scala  |  57 ++
 .../rule/trans/TimelinessRulePlanTrans.scala| 279 +++
 .../rule/trans/UniquenessRulePlanTrans.scala| 198 +
 .../griffin/measure/rule/udf/GriffinUdafs.scala |  29 +
 .../griffin/measure/rule/udf/MeanUdaf.scala |  58 ++
 .../griffin/measure/utils/ParamUtil.scala   |  11 +
 .../_accuracy-streaming-griffindsl.json |   8 +-
 .../resources/_timeliness-batch-griffindsl.json |   6 +-
 .../_timeliness-streaming-griffindsl.json   |   4 +-
 45 files changed, 2073 insertions(+), 2021 deletions(-)
--




[incubator-griffin] Git Push Summary

2018-03-29 Thread guoyp
Repository: incubator-griffin
Updated Tags:  refs/tags/griffin-0.2.0-incubating [created] 994a097bf


[04/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/882c6eda
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/882c6eda
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/882c6eda

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 882c6edab2155e3c71c61f9c6988da3b27c392d6
Parents: 15c62ce 06f969f
Author: Lionel Liu 
Authored: Tue Jan 16 16:58:24 2018 +0800
Committer: Lionel Liu 
Committed: Tue Jan 16 16:58:24 2018 +0800

--
 .../griffin/measure/process/BatchDqProcess.scala|  4 ++--
 .../griffin/measure/process/StreamingDqThread.scala |  4 ++--
 .../griffin/measure/process/engine/DqEngine.scala   |  2 +-
 .../griffin/measure/process/engine/DqEngines.scala  | 16 
 .../measure/process/engine/SparkDqEngine.scala  |  3 +--
 5 files changed, 14 insertions(+), 15 deletions(-)
--




[03/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/15c62cef
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/15c62cef
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/15c62cef

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 15c62cef1e1456bf7fb88e51ae3c294e04382342
Parents: a89291e cbff5b4
Author: Lionel Liu 
Authored: Tue Jan 16 16:33:03 2018 +0800
Committer: Lionel Liu 
Committed: Tue Jan 16 16:33:03 2018 +0800

--
 griffin-doc/measure/measure-batch-sample.md |  64 ++--
 .../measure/measure-configuration-guide.md  |  66 ++--
 .../measure/measure-streaming-sample-old.md | 204 ---
 griffin-doc/measure/measure-streaming-sample.md | 256 ++
 .../measure/cache/info/TimeInfoCache.scala  |  24 +-
 .../measure/cache/info/ZKInfoCache.scala|   8 +-
 .../config/params/user/DataSourceParam.scala|   1 +
 .../measure/data/connector/DataConnector.scala  |   9 +-
 .../batch/AvroBatchDataConnector.scala  |   6 +-
 .../batch/HiveBatchDataConnector.scala  |   6 +-
 .../batch/TextDirBatchDataConnector.scala   |   6 +-
 .../streaming/StreamingDataConnector.scala  |   3 +-
 .../measure/data/source/DataSource.scala|  14 +-
 .../measure/data/source/DataSourceCache.scala   | 303 +
 .../measure/data/source/DataSourceFactory.scala |   2 +-
 .../measure/process/BatchDqProcess.scala|  12 +-
 .../griffin/measure/process/ExportMode.scala|  34 ++
 .../measure/process/StreamingDqThread.scala |  93 ++---
 .../measure/process/engine/DqEngine.scala   |   6 +-
 .../measure/process/engine/DqEngines.scala  |  39 ++-
 .../measure/process/engine/SparkDqEngine.scala  | 103 +++---
 .../measure/process/engine/SparkSqlEngine.scala |   3 +
 .../measure/process/temp/TimeRange.scala|  41 +++
 .../rule/adaptor/DataFrameOprAdaptor.scala  |   9 +-
 .../measure/rule/adaptor/GlobalKeys.scala   |  70 
 .../rule/adaptor/GriffinDslAdaptor.scala| 335 +--
 .../measure/rule/adaptor/InternalColumns.scala  |   4 +-
 .../measure/rule/adaptor/RuleAdaptor.scala  |  29 +-
 .../measure/rule/adaptor/RuleAdaptorGroup.scala |  12 +-
 .../measure/rule/adaptor/SparkSqlAdaptor.scala  |   9 +-
 .../griffin/measure/rule/dsl/DqType.scala   |   7 +-
 .../dsl/analyzer/DistinctnessAnalyzer.scala |  47 +++
 .../rule/dsl/expr/ClauseExpression.scala|   8 +
 .../rule/dsl/parser/GriffinDslParser.scala  |   9 +
 .../measure/rule/plan/MetricExport.scala|   8 +-
 .../measure/rule/plan/RecordExport.scala|   9 +-
 .../griffin/measure/rule/plan/RuleExport.scala  |   8 +
 .../_distinctness-batch-griffindsl.json |  57 
 .../_distinctness-batch-griffindsl1.json|  73 
 .../_distinctness-streaming-griffindsl.json |  85 +
 .../resources/_profiling-batch-griffindsl.json  |   4 +-
 measure/src/test/resources/dupdata.avro | Bin 0 -> 304 bytes
 measure/src/test/resources/empty.avro   | Bin 0 -> 215 bytes
 43 files changed, 1396 insertions(+), 690 deletions(-)
--




[06/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/4d84ab03
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/4d84ab03
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/4d84ab03

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 4d84ab03ddb1453799ecc7f5f409349d74570661
Parents: 33ff150 87e59a5
Author: Lionel Liu 
Authored: Tue Jan 16 17:45:10 2018 +0800
Committer: Lionel Liu 
Committed: Tue Jan 16 17:45:10 2018 +0800

--
 .../measure/measure-configuration-guide.md  | 27 +---
 1 file changed, 23 insertions(+), 4 deletions(-)
--




[38/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/d7281386
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/d7281386
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/d7281386

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: d7281386589c1f39a6a0bde0499d8028a637c9be
Parents: 25cdce9 d6854bb
Author: Lionel Liu 
Authored: Mon Mar 5 14:44:26 2018 +0800
Committer: Lionel Liu 
Committed: Mon Mar 5 14:44:26 2018 +0800

--
 README.md   |  51 
 griffin-doc/FSD.md  | 103 +++
 griffin-doc/docker/measure-demo-docker.md   |  63 --
 griffin-doc/img/fsd/image2016-6-30 13-19-2.png  | Bin 1488742 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-16-21.png | Bin 20438 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-17-5.png  | Bin 19039 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-17-52.png | Bin 21143 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-18-20.png | Bin 22061 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-18-52.png | Bin 22155 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-20-34.png | Bin 20628 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-20-53.png | Bin 27396 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-21-16.png | Bin 20685 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-21-49.png | Bin 15985 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-22-53.png | Bin 20997 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-23-11.png | Bin 98790 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-23-32.png | Bin 20743 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-24-7.png  | Bin 49240 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-25-12.png | Bin 30162 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-25-42.png | Bin 26276 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-31-26.png | Bin 27621 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-33-44.png | Bin 34354 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-34-58.png | Bin 11806 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-35-18.png | Bin 17774 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-35-57.png | Bin 23956 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-36-48.png | Bin 14428 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-37-48.png | Bin 22925 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-39-17.png | Bin 13047 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-39-37.png | Bin 64162 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-40-14.png | Bin 10365 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-41-5.png  | Bin 12937 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-41-57.png | Bin 34047 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-42-16.png | Bin 66432 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-44-15.png | Bin 47475 -> 0 bytes
 griffin-doc/img/fsd/image2018-1-8 12-27-53.png  | Bin 0 -> 180417 bytes
 griffin-doc/img/fsd/image2018-1-8 12-33-2.png   | Bin 0 -> 108413 bytes
 griffin-doc/img/fsd/image2018-1-8 12-38-12.png  | Bin 0 -> 120481 bytes
 griffin-doc/img/fsd/image2018-1-8 12-44-30.png  | Bin 0 -> 152061 bytes
 griffin-doc/img/fsd/image2018-1-8 12-48-20.png  | Bin 0 -> 186633 bytes
 griffin-doc/img/fsd/image2018-1-8 12-51-13.png  | Bin 0 -> 160405 bytes
 griffin-doc/img/fsd/image2018-1-8 13-02-15.png  | Bin 0 -> 272258 bytes
 griffin-doc/img/fsd/image2018-1-8 13-07-16.png  | Bin 0 -> 120708 bytes
 griffin-doc/img/fsd/image2018-1-8 13-10-28.png  | Bin 0 -> 120358 bytes
 griffin-doc/img/fsd/image2018-1-8 13-12-10.png  | Bin 0 -> 143090 bytes
 griffin-doc/img/fsd/image2018-1-8 13-13-40.png  | Bin 0 -> 155166 bytes
 griffin-doc/img/fsd/image2018-1-8 13-15-30.png  | Bin 0 -> 160387 bytes
 griffin-doc/img/fsd/image2018-2-5 14-44-20.png  | Bin 0 -> 279001 bytes
 griffin-doc/img/fsd/image2018-2-5 14-45-10.png  | Bin 0 -> 111384 bytes
 griffin-doc/img/fsd/image2018-2-5 14-46-26.png  | Bin 0 -> 124723 bytes
 griffin-doc/img/fsd/image2018-2-5 14-50-10.png  | Bin 0 -> 85916 bytes
 griffin-doc/img/fsd/image2018-2-6 10-10-15.png  | Bin 0 -> 82679 bytes
 griffin-doc/img/fsd/image2018-2-6 10-48-10.png  | Bin 0 -> 59232 bytes
 griffin-doc/img/fsd/image2018-2-6 10-50-10.png  | Bin 0 -> 144805 bytes
 griffin-doc/img/fsd/image2018-2-6 10-51-16.png  | Bin 0 -> 118094 bytes
 griffin-doc/img/fsd/image2018-2-6 10-54-15.png  | Bin 0 -> 139184 bytes
 griffin-doc/img/fsd/image2018-2-6 10-57-20.png  | Bin 0 -> 264629 bytes
 griffin-doc/img/fsd/image2018-2-6 10-58-24.png  | Bin 0 -> 92768 bytes
 griffin-doc/img/fsd/image2018-2-6 11-1-10.png   | Bin 0 -> 214914 bytes
 griffin-doc/img/fsd/image2018-2-6 11-3-19.png   | Bin 0 -> 97741 bytes
 griffin-doc/img/userguide/1.PNG | Bin 12742 -> 0 bytes
 griffin-doc/img/userguide/1

[25/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/e72cea84
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/e72cea84
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/e72cea84

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: e72cea84e28f67b5e72bb24deb41f4919fd97f7e
Parents: 6ef8764 fdcd7f7
Author: Lionel Liu 
Authored: Wed Feb 7 16:18:52 2018 +0800
Committer: Lionel Liu 
Committed: Wed Feb 7 16:18:52 2018 +0800

--
 griffin-doc/docker/griffin-docker-guide.md |  2 +-
 .../org/apache/griffin/core/job/JobInstance.java   | 17 -
 .../apache/griffin/core/job/JobServiceImpl.java|  2 +-
 .../apache/griffin/core/job/SparkSubmitJob.java| 14 +++---
 .../griffin/core/job/entity/JobDataSegment.java|  2 +-
 .../griffin/core/job/entity/JobSchedule.java   |  6 +++---
 .../griffin/core/measure/entity/DataConnector.java |  2 +-
 .../org/apache/griffin/core/util/TimeUtil.java |  4 ++--
 8 files changed, 24 insertions(+), 25 deletions(-)
--




[33/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/6d684017
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/6d684017
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/6d684017

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 6d684017f1269980202734112ec91507b6bc000f
Parents: eedd1d4 9e7fdfa
Author: Lionel Liu 
Authored: Mon Feb 12 16:40:37 2018 +0800
Committer: Lionel Liu 
Committed: Mon Feb 12 16:40:37 2018 +0800

--
 measure/pom.xml |  2 +-
 pom.xml |  2 +-
 service/pom.xml |  2 +-
 .../app/job/create-job/create-job.component.ts  | 28 +++-
 .../measure/create-measure/pr/pr.component.ts   |  4 +--
 ui/pom.xml  |  2 +-
 6 files changed, 28 insertions(+), 12 deletions(-)
--




[46/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/b6caae1b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/b6caae1b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/b6caae1b

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: b6caae1b72a0880b5c6a0e5b98a1270008ac68b1
Parents: f11c07a 5a92b65
Author: Lionel Liu 
Authored: Wed Mar 28 19:10:47 2018 +0800
Committer: Lionel Liu 
Committed: Wed Mar 28 19:10:47 2018 +0800

--
 KEYS|  58 +++
 LICENSE | 356 +---
 NOTICE  |   4 +-
 licenses/BSD-2-Clause   |  22 +
 licenses/BSD-3-Clause   |  26 ++
 licenses/CDDL-1.0   | 363 
 licenses/CDDL-1.1   | 362 
 licenses/EPL|  86 
 licenses/JSON   |  26 ++
 licenses/MIT|  19 +
 licenses/PostgreSQL |  12 +
 licenses/SIL-OFL-1.1|  84 
 licenses/WTFPL  |  13 +
 measure/src/main/resources/META-INF/LICENSE | 256 
 pom.xml | 117 +++---
 .../core/config/EclipseLinkJpaConfig.java   |  19 +
 service/src/main/resources/Init_quartz.sql  | 190 -
 .../src/main/resources/Init_quartz_derby.sql| 343 +++
 .../main/resources/Init_quartz_derby.sql.bak| 187 +
 .../src/main/resources/Init_quartz_mysql.sql| 190 +
 .../src/main/resources/Init_quartz_postgres.sql | 203 +
 service/src/main/resources/META-INF/LICENSE | 414 +++
 .../src/main/resources/init_quartz_postgres.sql | 203 -
 .../config/EclipseLinkJpaConfigForTest.java |  19 +
 ui/LICENSE  | 310 ++
 25 files changed, 3104 insertions(+), 778 deletions(-)
--




[02/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/a89291ed
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/a89291ed
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/a89291ed

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: a89291eda1c50975a98513548982120e7749cc8e
Parents: a4f573a e704da6
Author: Lionel Liu 
Authored: Mon Jan 15 14:01:16 2018 +0800
Committer: Lionel Liu 
Committed: Mon Jan 15 14:01:16 2018 +0800

--
 .../apache/griffin/core/config/LoginConfig.java |  56 +++
 .../griffin/core/login/LoginController.java |   7 -
 .../apache/griffin/core/login/LoginService.java |   6 -
 .../core/login/LoginServiceDefaultImpl.java |  44 ++
 .../griffin/core/login/LoginServiceImpl.java| 157 ---
 .../core/login/LoginServiceLdapImpl.java| 107 +
 .../griffin/core/metric/MetricController.java   |   7 +-
 .../griffin/core/metric/MetricService.java  |   3 +-
 .../griffin/core/metric/MetricServiceImpl.java  |  57 +--
 .../griffin/core/metric/MetricStoreImpl.java|  26 ++-
 .../griffin/core/metric/model/Metric.java   |  22 +--
 .../core/util/GriffinOperationMessage.java  |   6 +-
 .../src/main/resources/application.properties   |  17 +-
 13 files changed, 286 insertions(+), 229 deletions(-)
--




[21/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/eab1854f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/eab1854f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/eab1854f

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: eab1854fc4fe85b70f30c937d21e40423d1f9d0f
Parents: 82db484 fd31809
Author: Lionel Liu 
Authored: Tue Feb 6 10:36:54 2018 +0800
Committer: Lionel Liu 
Committed: Tue Feb 6 10:36:54 2018 +0800

--
 .../apache/griffin/measure/util/MailUtil.java   |  20 ++--
 .../griffin/core/common/CacheEvictor.java   |   6 +-
 .../griffin/core/config/PropertiesConfig.java   |  49 ++---
 .../griffin/core/config/SchedulerConfig.java|   7 +-
 .../core/exception/GriffinExceptionMessage.java |   1 +
 .../griffin/core/job/FileExistPredicator.java   |  10 +-
 .../apache/griffin/core/job/JobController.java  |   5 +
 .../apache/griffin/core/job/JobInstance.java|  77 +++--
 .../org/apache/griffin/core/job/JobService.java |   2 +
 .../apache/griffin/core/job/JobServiceImpl.java | 110 +++
 .../apache/griffin/core/job/SparkSubmitJob.java |  24 ++--
 .../griffin/core/job/entity/JobSchedule.java|  10 +-
 .../core/job/entity/SegmentPredicate.java   |  10 +-
 .../griffin/core/job/entity/SegmentRange.java   |   2 +-
 .../core/job/factory/PredicatorFactory.java |   4 +
 .../griffin/core/job/repo/JobInstanceRepo.java  |   2 +-
 .../griffin/core/job/repo/JobScheduleRepo.java  |   2 +
 .../measure/ExternalMeasureOperationImpl.java   |  15 +--
 .../measure/GriffinMeasureOperationImpl.java|  55 ++
 .../griffin/core/measure/MeasureController.java |   6 +
 .../griffin/core/measure/MeasureService.java|  10 +-
 .../core/measure/MeasureServiceImpl.java|   9 ++
 .../core/measure/entity/DataConnector.java  |  27 -
 .../core/measure/entity/GriffinMeasure.java |  41 ++-
 .../griffin/core/measure/entity/Rule.java   |  87 ---
 .../core/metastore/hive/HiveMetaStoreProxy.java |   2 +-
 .../hive/HiveMetaStoreServiceImpl.java  |  25 +++--
 .../griffin/core/metric/MetricStoreImpl.java|   7 +-
 .../apache/griffin/core/util/MeasureUtil.java   |  76 +
 .../griffin/core/util/PropertiesUtil.java   |  52 +
 .../org/apache/griffin/core/util/TimeUtil.java  |  81 +-
 service/src/main/resources/sparkJob.properties  |  15 ++-
 .../core/config/PropertiesConfigTest.java   |  48 +++-
 .../griffin/core/job/JobControllerTest.java |   3 +-
 .../griffin/core/job/JobInstanceTest.java   |   8 +-
 .../griffin/core/job/JobServiceImplTest.java|  42 +++
 .../GriffinMeasureOperationImplTest.java|  11 --
 .../core/measure/MeasureControllerTest.java |  33 +-
 .../core/measure/MeasureServiceImplTest.java|  46 +++-
 .../griffin/core/util/PropertiesUtilTest.java   |  38 ++-
 .../apache/griffin/core/util/TimeUtilTest.java  |  27 ++---
 service/src/test/resources/sparkJob.properties  |  21 ++--
 42 files changed, 723 insertions(+), 403 deletions(-)
--




[26/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/b4c2d366
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/b4c2d366
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/b4c2d366

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: b4c2d36679004f08ac7804acfe6ba188e05dc0ec
Parents: e72cea8 9a6dc4b
Author: Lionel Liu 
Authored: Wed Feb 7 18:23:27 2018 +0800
Committer: Lionel Liu 
Committed: Wed Feb 7 18:23:27 2018 +0800

--
 .../source/cache/ParquetDataSourceCache.scala   |  2 +-
 .../griffin/measure/rule/udf/GriffinUdfs.scala  | 13 +++--
 .../resources/_profiling-batch-griffindsl.json  | 14 --
 .../measure/rule/udf/GriffinUdfsTest.scala  | 50 
 4 files changed, 71 insertions(+), 8 deletions(-)
--




[34/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/4342c6d8
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/4342c6d8
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/4342c6d8

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 4342c6d8c2a9d120e4729ec143daa546c25fed97
Parents: 6d68401 5507f57
Author: Lionel Liu 
Authored: Mon Feb 12 17:24:59 2018 +0800
Committer: Lionel Liu 
Committed: Mon Feb 12 17:24:59 2018 +0800

--
 .../java/org/apache/griffin/core/metric/MetricStoreImpl.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--




[42/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/df43c963
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/df43c963
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/df43c963

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: df43c963aa6fa0439a13b80c7805e638a4fbf6a8
Parents: d000dab a4f4f24
Author: Lionel Liu 
Authored: Wed Mar 21 16:11:01 2018 +0800
Committer: Lionel Liu 
Committed: Wed Mar 21 16:11:01 2018 +0800

--
 .../data/connector/DataConnectorFactory.scala   |   3 -
 .../streaming/KafkaStreamingDataConnector.scala |  38 ++--
 .../KafkaStreamingStringDataConnector.scala |   4 +-
 .../streaming/StreamingDataConnector.scala  |   5 +-
 .../measure/data/source/DataSource.scala|  51 +++---
 .../data/source/cache/DataSourceCache.scala |  51 --
 .../measure/data/source/cache/WithFanIn.scala   |  57 ++
 .../measure/process/engine/SparkSqlEngine.scala |   2 +-
 .../measure/rule/adaptor/InternalColumns.scala  |   4 +-
 .../dsl/analyzer/DistinctnessAnalyzer.scala |   2 +-
 .../rule/dsl/expr/ClauseExpression.scala|  28 ++-
 .../griffin/measure/rule/dsl/expr/Expr.scala|   2 +-
 .../griffin/measure/rule/dsl/expr/ExprTag.scala |  23 +++
 .../measure/rule/dsl/parser/BasicParser.scala   |  10 +-
 .../rule/dsl/parser/GriffinDslParser.scala  |  12 +-
 .../rule/trans/DistinctnessRulePlanTrans.scala  | 173 ++-
 .../griffin/measure/utils/DataFrameUtil.scala   |  41 +
 .../_distinctness-batch-griffindsl1.json|   2 +-
 .../_distinctness-batch-griffindsl2.json|  74 
 19 files changed, 467 insertions(+), 115 deletions(-)
--




[17/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/e1f5b04c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/e1f5b04c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/e1f5b04c

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: e1f5b04c996dd52bd2b24dc7e98023b5ae49b7dc
Parents: 3d48ade a926972
Author: Lionel Liu 
Authored: Fri Feb 2 18:22:17 2018 +0800
Committer: Lionel Liu 
Committed: Fri Feb 2 18:22:17 2018 +0800

--
 .../apache/griffin/core/job/JobController.java  |  7 +++-
 .../org/apache/griffin/core/job/JobService.java |  7 +++-
 .../apache/griffin/core/job/JobServiceImpl.java |  5 +--
 .../core/measure/entity/GriffinMeasure.java | 12 --
 .../griffin/core/measure/entity/Measure.java| 20 +++--
 .../griffin/core/metric/MetricServiceImpl.java  |  2 +-
 .../griffin/core/metric/MetricStoreImpl.java| 43 
 .../griffin/core/metric/model/Metric.java   | 12 +-
 .../griffin/core/job/JobControllerTest.java |  5 +--
 .../griffin/core/job/JobServiceImplTest.java|  4 +-
 .../core/metric/MetricControllerTest.java   |  2 +-
 .../core/metric/MetricStoreImplTest.java| 19 +
 12 files changed, 89 insertions(+), 49 deletions(-)
--




[49/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/6d578a39
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/6d578a39
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/6d578a39

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 6d578a39c07f722b5e83eee964897426b06b546e
Parents: 07a6764 8982971
Author: Lionel Liu 
Authored: Thu Mar 29 16:09:04 2018 +0800
Committer: Lionel Liu 
Committed: Thu Mar 29 16:09:04 2018 +0800

--
 licenses/NOTICE-Jackson| 20 +
 licenses/NOTICE-Tomcat | 55 +
 measure/src/main/resources/META-INF/NOTICE | 10 +
 service/src/main/resources/META-INF/NOTICE | 15 +++
 ui/NOTICE  |  5 +++
 5 files changed, 105 insertions(+)
--




[29/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/5d39a543
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/5d39a543
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/5d39a543

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 5d39a543214d83ab9d2293169be9cadbd55049a8
Parents: f538b33 7026ab5
Author: Lionel Liu 
Authored: Fri Feb 9 11:59:42 2018 +0800
Committer: Lionel Liu 
Committed: Fri Feb 9 11:59:42 2018 +0800

--
 griffin-doc/docker/griffin-docker-guide.md  |  4 +-
 .../docker/svc_msr/docker-compose-batch.yml |  2 +-
 .../docker/svc_msr/docker-compose-streaming.yml |  2 +-
 .../data/source/cache/DataSourceCache.scala | 47 +---
 .../rule/trans/DistinctnessRulePlanTrans.scala  | 15 ++-
 .../resources/_profiling-batch-griffindsl.json  |  4 +-
 .../measure/rule/udf/GriffinUdfsTest.scala  | 10 +++--
 7 files changed, 56 insertions(+), 28 deletions(-)
--




[08/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/150a13c3
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/150a13c3
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/150a13c3

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 150a13c3b9887eabab0d53d1356360e2596a98c7
Parents: 80074bd a0b130a
Author: Lionel Liu 
Authored: Wed Jan 24 10:57:54 2018 +0800
Committer: Lionel Liu 
Committed: Wed Jan 24 10:57:54 2018 +0800

--
 .../measure/cache/info/ZKInfoCache.scala|   2 +
 .../measure/rule/adaptor/GlobalKeys.scala   |   5 +
 .../rule/adaptor/GriffinDslAdaptor.scala| 110 +--
 .../apache/griffin/measure/utils/TimeUtil.scala |  67 +++
 .../resources/_timeliness-batch-griffindsl.json |   5 +-
 .../_timeliness-streaming-griffindsl.json   |  11 +-
 .../griffin/measure/utils/TimeUtilTest.scala|  38 +++
 7 files changed, 208 insertions(+), 30 deletions(-)
--




[40/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/f00fc4e4
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/f00fc4e4
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/f00fc4e4

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: f00fc4e40e44099e34c450a33f512472ab118881
Parents: 57df929 fe3cde1
Author: Lionel Liu 
Authored: Tue Mar 6 18:33:45 2018 +0800
Committer: Lionel Liu 
Committed: Tue Mar 6 18:33:45 2018 +0800

--
 .../measure/process/temp/DataFrameCaches.scala| 18 ++
 1 file changed, 18 insertions(+)
--




[16/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/3d48ade0
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/3d48ade0
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/3d48ade0

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 3d48ade08c97ef0866918850e8dec0a903951a9c
Parents: 2dda957 a723f47
Author: Lionel Liu 
Authored: Fri Feb 2 18:20:59 2018 +0800
Committer: Lionel Liu 
Committed: Fri Feb 2 18:20:59 2018 +0800

--
 .../measure/cache/info/TimeInfoCache.scala  | 33 ---
 .../measure/data/connector/DataConnector.scala  |  4 +-
 .../data/source/cache/DataSourceCache.scala |  4 +-
 .../measure/process/temp/TimeRange.scala|  9 +-
 .../rule/adaptor/GriffinDslAdaptor.scala| 10 +-
 .../rule/trans/AccuracyRulePlanTrans.scala  |  4 +-
 .../rule/trans/DistinctnessRulePlanTrans.scala  | 18 +++-
 .../rule/trans/ProfilingRulePlanTrans.scala |  4 +-
 .../measure/rule/trans/RulePlanTrans.scala  |  8 +-
 .../rule/trans/TimelinessRulePlanTrans.scala| 99 +---
 .../rule/trans/UniquenessRulePlanTrans.scala|  4 +-
 11 files changed, 92 insertions(+), 105 deletions(-)
--




[22/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/1675c934
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/1675c934
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/1675c934

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 1675c934b0c2ea65a33609e6b356872a2eab994d
Parents: eab1854 f690644
Author: Lionel Liu 
Authored: Tue Feb 6 10:43:24 2018 +0800
Committer: Lionel Liu 
Committed: Tue Feb 6 10:43:24 2018 +0800

--
 ui/angular/src/app/health/health.component.ts   | 2 +-
 ui/angular/src/app/metric/metric.component.ts   | 2 +-
 ui/angular/src/app/sidebar/sidebar.component.ts | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
--




[18/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/933ff308
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/933ff308
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/933ff308

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 933ff3083d4aa823214e05164741f7d1f425b964
Parents: e1f5b04 d707517
Author: Lionel Liu 
Authored: Mon Feb 5 13:01:53 2018 +0800
Committer: Lionel Liu 
Committed: Mon Feb 5 13:01:53 2018 +0800

--
 .../data/source/cache/DataSourceCache.scala | 35 +---
 .../measure/process/StreamingDqThread.scala |  2 +-
 .../rule/trans/DistinctnessRulePlanTrans.scala  |  5 +--
 3 files changed, 25 insertions(+), 17 deletions(-)
--




[23/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/922da1b4
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/922da1b4
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/922da1b4

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 922da1b487e0360bbc6466fd7451d54a1b5724a4
Parents: 1675c93 d8193a0
Author: Lionel Liu 
Authored: Wed Feb 7 11:16:47 2018 +0800
Committer: Lionel Liu 
Committed: Wed Feb 7 11:16:47 2018 +0800

--
 .../griffin/core/measure/MeasureController.java |  4 ++--
 .../apache/griffin/core/measure/MeasureService.java |  2 +-
 .../griffin/core/measure/MeasureServiceImpl.java| 13 -
 .../griffin/core/metric/MetricController.java   |  5 +++--
 .../apache/griffin/core/metric/MetricService.java   |  2 +-
 .../griffin/core/metric/MetricServiceImpl.java  |  6 +++---
 .../org/apache/griffin/core/metric/MetricStore.java |  2 +-
 .../apache/griffin/core/metric/MetricStoreImpl.java | 16 +++-
 .../griffin/core/measure/MeasureControllerTest.java |  8 +---
 .../core/measure/MeasureServiceImplTest.java|  5 ++---
 .../griffin/core/metric/MetricControllerTest.java   |  4 ++--
 .../griffin/core/metric/MetricServiceImplTest.java  | 12 ++--
 12 files changed, 49 insertions(+), 30 deletions(-)
--




[14/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/d8efb4b9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/d8efb4b9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/d8efb4b9

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: d8efb4b99b0a475a09a24c35a5b0c94653e35940
Parents: 5f71eee 530c2da
Author: Lionel Liu 
Authored: Thu Feb 1 16:01:21 2018 +0800
Committer: Lionel Liu 
Committed: Thu Feb 1 16:01:21 2018 +0800

--
 .../griffin/core/metric/MetricStoreImpl.java| 36 
 .../src/main/resources/application.properties   |  5 ++-
 .../core/metric/MetricStoreImplTest.java| 20 +++
 .../src/test/resources/application.properties   |  5 ++-
 4 files changed, 57 insertions(+), 9 deletions(-)
--




[12/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/198b5933
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/198b5933
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/198b5933

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 198b59339ef9163f66527fbd430a7c211d2140d7
Parents: 8fbd024 fb569ad
Author: Lionel Liu 
Authored: Tue Jan 30 10:35:20 2018 +0800
Committer: Lionel Liu 
Committed: Tue Jan 30 10:35:20 2018 +0800

--
 .../measure/create-measure/ac/ac.component.html   | 16 
 .../app/measure/create-measure/ac/ac.component.ts | 11 +++
 .../configuration/configuration.component.css | 10 +-
 .../configuration/configuration.component.html| 13 +
 .../configuration/configuration.component.ts  | 13 +
 .../measure/create-measure/pr/pr.component.html   | 18 +-
 .../app/measure/create-measure/pr/pr.component.ts |  5 +
 .../measure-detail/measure-detail.component.html  | 16 
 .../measure-detail/measure-detail.component.ts|  6 +-
 9 files changed, 101 insertions(+), 7 deletions(-)
--




[incubator-griffin] Git Push Summary

2018-03-29 Thread guoyp
Repository: incubator-griffin
Updated Branches:
  refs/heads/griffin-0.2.0-incubating-rc2 [deleted] abcdfa387


[29/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/5d39a543
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/5d39a543
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/5d39a543

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 5d39a543214d83ab9d2293169be9cadbd55049a8
Parents: f538b33 7026ab5
Author: Lionel Liu 
Authored: Fri Feb 9 11:59:42 2018 +0800
Committer: Lionel Liu 
Committed: Fri Feb 9 11:59:42 2018 +0800

--
 griffin-doc/docker/griffin-docker-guide.md  |  4 +-
 .../docker/svc_msr/docker-compose-batch.yml |  2 +-
 .../docker/svc_msr/docker-compose-streaming.yml |  2 +-
 .../data/source/cache/DataSourceCache.scala | 47 +---
 .../rule/trans/DistinctnessRulePlanTrans.scala  | 15 ++-
 .../resources/_profiling-batch-griffindsl.json  |  4 +-
 .../measure/rule/udf/GriffinUdfsTest.scala  | 10 +++--
 7 files changed, 56 insertions(+), 28 deletions(-)
--




[28/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/f538b33d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/f538b33d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/f538b33d

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: f538b33db525c3d280d1af3516ea289fce8e7f8f
Parents: 41d3794 399d923
Author: Lionel Liu 
Authored: Thu Feb 8 15:42:33 2018 +0800
Committer: Lionel Liu 
Committed: Thu Feb 8 15:42:33 2018 +0800

--
 .../measure/create-measure/pr/pr.component.ts   | 41 +
 .../detail-metric/detail-metric.component.html  | 30 ++---
 .../detail-metric/detail-metric.component.ts| 47 +---
 3 files changed, 69 insertions(+), 49 deletions(-)
--




[30/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/c06caa91
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/c06caa91
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/c06caa91

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: c06caa915b787c73d7340c72d076a9d33973c63f
Parents: 5d39a54 a691f5e
Author: Lionel Liu 
Authored: Fri Feb 9 19:01:07 2018 +0800
Committer: Lionel Liu 
Committed: Fri Feb 9 19:01:07 2018 +0800

--
 .../org/apache/griffin/measure/data/connector/DataConnector.scala   | 1 +
 1 file changed, 1 insertion(+)
--




[09/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/8803a6cd
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/8803a6cd
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/8803a6cd

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 8803a6cd2a02dd810eb709f0bb526717f37e30d5
Parents: 150a13c f581db3
Author: Lionel Liu 
Authored: Thu Jan 25 12:55:59 2018 +0800
Committer: Lionel Liu 
Committed: Thu Jan 25 12:55:59 2018 +0800

--
 ui/angular/package.json |   5 +-
 ui/angular/src/app/app.module.ts|  22 +-
 .../src/app/dataasset/dataasset.component.css   |   2 +-
 .../src/app/dataasset/dataasset.component.ts|  18 +-
 ui/angular/src/app/health/health.component.ts   |  92 +---
 .../app/job/create-job/create-job.component.css |  16 +
 .../job/create-job/create-job.component.html| 149 +++---
 .../app/job/create-job/create-job.component.ts  | 484 +++
 ui/angular/src/app/job/job.component.html   |   8 +-
 ui/angular/src/app/job/job.component.ts |  58 +--
 .../measure/create-measure/ac/ac.component.html |  84 +++-
 .../measure/create-measure/ac/ac.component.ts   | 269 ---
 .../configuration/configuration.component.css   |  18 +
 .../configuration/configuration.component.html  |  61 +++
 .../configuration.component.spec.ts |  44 ++
 .../configuration/configuration.component.ts|  73 +++
 .../create-measure.component.html   |  18 +
 .../measure/create-measure/pr/pr.component.html |  82 +++-
 .../measure/create-measure/pr/pr.component.ts   | 168 +--
 .../measure-detail.component.html   |  33 +-
 .../measure-detail/measure-detail.component.ts  |  32 +-
 .../src/app/measure/measure.component.html  |  15 +-
 ui/angular/src/app/measure/measure.component.ts |  26 +-
 .../detail-metric/detail-metric.component.ts|  23 +-
 ui/angular/src/app/metric/metric.component.html |  12 +-
 ui/angular/src/app/metric/metric.component.ts   | 174 ++-
 ui/angular/src/app/service/chart.service.ts |  31 +-
 ui/angular/src/app/service/service.service.ts   |  23 +-
 .../src/app/sidebar/sidebar.component.html  |   2 +-
 ui/angular/src/app/sidebar/sidebar.component.ts |  89 +---
 ui/angular/src/main.ts  |   2 -
 ui/angular/src/styles.css   |   4 +-
 32 files changed, 1420 insertions(+), 717 deletions(-)
--




[08/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/150a13c3
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/150a13c3
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/150a13c3

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 150a13c3b9887eabab0d53d1356360e2596a98c7
Parents: 80074bd a0b130a
Author: Lionel Liu 
Authored: Wed Jan 24 10:57:54 2018 +0800
Committer: Lionel Liu 
Committed: Wed Jan 24 10:57:54 2018 +0800

--
 .../measure/cache/info/ZKInfoCache.scala|   2 +
 .../measure/rule/adaptor/GlobalKeys.scala   |   5 +
 .../rule/adaptor/GriffinDslAdaptor.scala| 110 +--
 .../apache/griffin/measure/utils/TimeUtil.scala |  67 +++
 .../resources/_timeliness-batch-griffindsl.json |   5 +-
 .../_timeliness-streaming-griffindsl.json   |  11 +-
 .../griffin/measure/utils/TimeUtilTest.scala|  38 +++
 7 files changed, 208 insertions(+), 30 deletions(-)
--




[31/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/169a47b9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/169a47b9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/169a47b9

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 169a47b9690a2be165dac30628af831b5d461247
Parents: c06caa9 711acce
Author: Lionel Liu 
Authored: Mon Feb 12 10:52:26 2018 +0800
Committer: Lionel Liu 
Committed: Mon Feb 12 10:52:26 2018 +0800

--
 .../measure/create-measure/ac/ac.component.ts   |  8 +++---
 .../measure/create-measure/pr/pr.component.html |  2 +-
 .../measure/create-measure/pr/pr.component.ts   |  8 --
 .../detail-metric/detail-metric.component.html  | 30 ++--
 4 files changed, 25 insertions(+), 23 deletions(-)
--




[11/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/8fbd0243
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/8fbd0243
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/8fbd0243

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 8fbd0243c239a853f1534ff940865c67a04e6b10
Parents: 92c9f65 6b1a700
Author: Lionel Liu 
Authored: Tue Jan 30 10:30:33 2018 +0800
Committer: Lionel Liu 
Committed: Tue Jan 30 10:30:33 2018 +0800

--
 griffin-doc/service/postman/griffin.json| 2457 +-
 .../core/error/exception/GriffinException.java  |   41 -
 .../exception/RuntimeExceptionHandler.java  |   62 -
 .../core/exception/GriffinException.java|   62 +
 .../core/exception/GriffinExceptionHandler.java |   52 +
 .../core/exception/GriffinExceptionMessage.java |   77 +
 .../exception/GriffinExceptionResponse.java |   82 +
 .../apache/griffin/core/job/JobController.java  |   20 +-
 .../org/apache/griffin/core/job/JobService.java |   14 +-
 .../apache/griffin/core/job/JobServiceImpl.java |  145 +-
 .../apache/griffin/core/job/SparkSubmitJob.java |7 +-
 .../measure/ExternalMeasureOperationImpl.java   |   65 +-
 .../measure/GriffinMeasureOperationImpl.java|   52 +-
 .../griffin/core/measure/MeasureController.java |   15 +-
 .../griffin/core/measure/MeasureOperation.java  |7 +-
 .../griffin/core/measure/MeasureService.java|7 +-
 .../core/measure/MeasureServiceImpl.java|   30 +-
 .../hive/HiveMetaStoreServiceImpl.java  |   10 +-
 .../griffin/core/metric/MetricController.java   |7 +-
 .../griffin/core/metric/MetricService.java  |5 +-
 .../griffin/core/metric/MetricServiceImpl.java  |   69 +-
 .../apache/griffin/core/metric/MetricStore.java |8 +-
 .../griffin/core/metric/MetricStoreImpl.java|   71 +-
 .../core/util/GriffinOperationMessage.java  |   79 -
 .../griffin/core/job/JobControllerTest.java |  122 +-
 .../griffin/core/job/JobServiceImplTest.java|  312 ++-
 .../griffin/core/job/SparkSubmitJobTest.java|   22 +-
 .../ExternalMeasureOperationImplTest.java   |  102 +
 .../GriffinMeasureOperationImplTest.java|  120 +
 .../core/measure/MeasureControllerTest.java |   93 +-
 .../core/measure/MeasureOrgControllerTest.java  |6 -
 .../core/measure/MeasureServiceImplTest.java|  259 +-
 .../core/metric/MetricControllerTest.java   |  172 ++
 .../core/metric/MetricServiceImplTest.java  |  172 ++
 .../apache/griffin/core/util/EntityHelper.java  |5 +
 .../apache/griffin/core/util/TimeUtilTest.java  |   35 +-
 36 files changed, 2741 insertions(+), 2123 deletions(-)
--




[22/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/1675c934
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/1675c934
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/1675c934

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 1675c934b0c2ea65a33609e6b356872a2eab994d
Parents: eab1854 f690644
Author: Lionel Liu 
Authored: Tue Feb 6 10:43:24 2018 +0800
Committer: Lionel Liu 
Committed: Tue Feb 6 10:43:24 2018 +0800

--
 ui/angular/src/app/health/health.component.ts   | 2 +-
 ui/angular/src/app/metric/metric.component.ts   | 2 +-
 ui/angular/src/app/sidebar/sidebar.component.ts | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
--




[04/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/882c6eda
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/882c6eda
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/882c6eda

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 882c6edab2155e3c71c61f9c6988da3b27c392d6
Parents: 15c62ce 06f969f
Author: Lionel Liu 
Authored: Tue Jan 16 16:58:24 2018 +0800
Committer: Lionel Liu 
Committed: Tue Jan 16 16:58:24 2018 +0800

--
 .../griffin/measure/process/BatchDqProcess.scala|  4 ++--
 .../griffin/measure/process/StreamingDqThread.scala |  4 ++--
 .../griffin/measure/process/engine/DqEngine.scala   |  2 +-
 .../griffin/measure/process/engine/DqEngines.scala  | 16 
 .../measure/process/engine/SparkDqEngine.scala  |  3 +--
 5 files changed, 14 insertions(+), 15 deletions(-)
--




[35/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/5567c674
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/5567c674
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/5567c674

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 5567c674edc93a0f28c75c748d8639fdb43673dc
Parents: 4342c6d 168ebdf
Author: Lionel Liu 
Authored: Tue Feb 27 16:16:02 2018 +0800
Committer: Lionel Liu 
Committed: Tue Feb 27 16:16:02 2018 +0800

--
 .../docker/svc_msr/docker-compose-batch.yml |  2 ++
 .../docker/svc_msr/docker-compose-streaming.yml |  2 ++
 .../rule/trans/DistinctnessRulePlanTrans.scala  | 22 +---
 3 files changed, 14 insertions(+), 12 deletions(-)
--




[07/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/80074bd1
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/80074bd1
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/80074bd1

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 80074bd1af18fe289485dc0543b55770f0bbcbd9
Parents: 4d84ab0 71fcf93
Author: Lionel Liu 
Authored: Mon Jan 22 09:52:38 2018 +0800
Committer: Lionel Liu 
Committed: Mon Jan 22 09:52:38 2018 +0800

--
 README.md   |  31 +-
 griffin-doc/service/postman/griffin.json|  68 +-
 .../griffin/core/config/PropertiesConfig.java   |   4 +-
 .../griffin/core/job/FileExistPredicator.java   |   4 +-
 .../apache/griffin/core/job/JobInstance.java|  12 +-
 .../apache/griffin/core/job/JobServiceImpl.java |  65 +-
 .../griffin/core/job/entity/GriffinJob.java |   6 +-
 .../griffin/core/job/entity/JobDataSegment.java |  10 +-
 .../griffin/core/job/entity/JobSchedule.java|   8 +-
 .../core/job/entity/SegmentPredicate.java   |   5 +
 .../griffin/core/job/entity/SegmentRange.java   |   8 +
 .../measure/ExternalMeasureOperationImpl.java   |   6 +-
 .../measure/GriffinMeasureOperationImpl.java|  19 +-
 .../griffin/core/measure/MeasureOperation.java  |   2 +-
 .../griffin/core/measure/MeasureOrgService.java |   1 -
 .../core/measure/MeasureServiceImpl.java|  11 +-
 .../core/measure/entity/ExternalMeasure.java|   3 +-
 .../core/measure/entity/GriffinMeasure.java |  20 +-
 .../griffin/core/measure/entity/Measure.java|   4 +-
 .../griffin/core/measure/entity/Rule.java   |   8 +-
 .../griffin/core/measure/repo/MeasureRepo.java  |  10 -
 .../org/apache/griffin/core/util/AvroUtil.java  |  30 -
 .../org/apache/griffin/core/util/TimeUtil.java  |  44 +-
 .../src/main/resources/application.properties   |   4 +-
 service/src/main/resources/sparkJob.properties  |  16 +-
 .../core/config/PropertiesConfigTest.java   | 160 
 .../griffin/core/job/JobInstanceTest.java   | 186 
 .../griffin/core/job/JobServiceImplTest.java| 934 +++
 .../griffin/core/job/SparkSubmitJobTest.java| 179 +++-
 .../griffin/core/job/repo/JobRepoTest.java  |  94 ++
 .../core/measure/MeasureControllerTest.java |  24 +-
 .../core/measure/MeasureOrgServiceImplTest.java | 212 +++--
 .../core/measure/MeasureServiceImplTest.java| 336 +--
 .../measure/repo/DataConnectorRepoTest.java |  80 ++
 .../core/measure/repo/MeasureRepoTest.java  | 189 ++--
 .../apache/griffin/core/util/EntityHelper.java  | 167 +++-
 .../griffin/core/util/GriffinUtilTest.java  |  87 --
 .../apache/griffin/core/util/JsonUtilTest.java  |  84 ++
 .../griffin/core/util/PropertiesUtilTest.java   |  45 +
 .../apache/griffin/core/util/TimeUtilTest.java  |  94 ++
 .../src/test/resources/application.properties   |  79 +-
 service/src/test/resources/quartz.properties|   2 +-
 service/src/test/resources/sparkJob.properties  |  50 +
 43 files changed, 2332 insertions(+), 1069 deletions(-)
--




[38/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/d7281386
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/d7281386
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/d7281386

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: d7281386589c1f39a6a0bde0499d8028a637c9be
Parents: 25cdce9 d6854bb
Author: Lionel Liu 
Authored: Mon Mar 5 14:44:26 2018 +0800
Committer: Lionel Liu 
Committed: Mon Mar 5 14:44:26 2018 +0800

--
 README.md   |  51 
 griffin-doc/FSD.md  | 103 +++
 griffin-doc/docker/measure-demo-docker.md   |  63 --
 griffin-doc/img/fsd/image2016-6-30 13-19-2.png  | Bin 1488742 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-16-21.png | Bin 20438 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-17-5.png  | Bin 19039 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-17-52.png | Bin 21143 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-18-20.png | Bin 22061 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-18-52.png | Bin 22155 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-20-34.png | Bin 20628 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-20-53.png | Bin 27396 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-21-16.png | Bin 20685 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-21-49.png | Bin 15985 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-22-53.png | Bin 20997 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-23-11.png | Bin 98790 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-23-32.png | Bin 20743 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-24-7.png  | Bin 49240 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-25-12.png | Bin 30162 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-25-42.png | Bin 26276 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-31-26.png | Bin 27621 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-33-44.png | Bin 34354 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-34-58.png | Bin 11806 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-35-18.png | Bin 17774 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-35-57.png | Bin 23956 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-36-48.png | Bin 14428 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-37-48.png | Bin 22925 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-39-17.png | Bin 13047 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-39-37.png | Bin 64162 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-40-14.png | Bin 10365 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-41-5.png  | Bin 12937 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-41-57.png | Bin 34047 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-42-16.png | Bin 66432 -> 0 bytes
 griffin-doc/img/fsd/image2016-6-30 16-44-15.png | Bin 47475 -> 0 bytes
 griffin-doc/img/fsd/image2018-1-8 12-27-53.png  | Bin 0 -> 180417 bytes
 griffin-doc/img/fsd/image2018-1-8 12-33-2.png   | Bin 0 -> 108413 bytes
 griffin-doc/img/fsd/image2018-1-8 12-38-12.png  | Bin 0 -> 120481 bytes
 griffin-doc/img/fsd/image2018-1-8 12-44-30.png  | Bin 0 -> 152061 bytes
 griffin-doc/img/fsd/image2018-1-8 12-48-20.png  | Bin 0 -> 186633 bytes
 griffin-doc/img/fsd/image2018-1-8 12-51-13.png  | Bin 0 -> 160405 bytes
 griffin-doc/img/fsd/image2018-1-8 13-02-15.png  | Bin 0 -> 272258 bytes
 griffin-doc/img/fsd/image2018-1-8 13-07-16.png  | Bin 0 -> 120708 bytes
 griffin-doc/img/fsd/image2018-1-8 13-10-28.png  | Bin 0 -> 120358 bytes
 griffin-doc/img/fsd/image2018-1-8 13-12-10.png  | Bin 0 -> 143090 bytes
 griffin-doc/img/fsd/image2018-1-8 13-13-40.png  | Bin 0 -> 155166 bytes
 griffin-doc/img/fsd/image2018-1-8 13-15-30.png  | Bin 0 -> 160387 bytes
 griffin-doc/img/fsd/image2018-2-5 14-44-20.png  | Bin 0 -> 279001 bytes
 griffin-doc/img/fsd/image2018-2-5 14-45-10.png  | Bin 0 -> 111384 bytes
 griffin-doc/img/fsd/image2018-2-5 14-46-26.png  | Bin 0 -> 124723 bytes
 griffin-doc/img/fsd/image2018-2-5 14-50-10.png  | Bin 0 -> 85916 bytes
 griffin-doc/img/fsd/image2018-2-6 10-10-15.png  | Bin 0 -> 82679 bytes
 griffin-doc/img/fsd/image2018-2-6 10-48-10.png  | Bin 0 -> 59232 bytes
 griffin-doc/img/fsd/image2018-2-6 10-50-10.png  | Bin 0 -> 144805 bytes
 griffin-doc/img/fsd/image2018-2-6 10-51-16.png  | Bin 0 -> 118094 bytes
 griffin-doc/img/fsd/image2018-2-6 10-54-15.png  | Bin 0 -> 139184 bytes
 griffin-doc/img/fsd/image2018-2-6 10-57-20.png  | Bin 0 -> 264629 bytes
 griffin-doc/img/fsd/image2018-2-6 10-58-24.png  | Bin 0 -> 92768 bytes
 griffin-doc/img/fsd/image2018-2-6 11-1-10.png   | Bin 0 -> 214914 bytes
 griffin-doc/img/fsd/image2018-2-6 11-3-19.png   | Bin 0 -> 97741 bytes
 griffin-doc/img/userguide/1.PNG | Bin 12742 -> 0 bytes
 griffin-doc/img/userguide/1

[16/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/3d48ade0
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/3d48ade0
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/3d48ade0

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 3d48ade08c97ef0866918850e8dec0a903951a9c
Parents: 2dda957 a723f47
Author: Lionel Liu 
Authored: Fri Feb 2 18:20:59 2018 +0800
Committer: Lionel Liu 
Committed: Fri Feb 2 18:20:59 2018 +0800

--
 .../measure/cache/info/TimeInfoCache.scala  | 33 ---
 .../measure/data/connector/DataConnector.scala  |  4 +-
 .../data/source/cache/DataSourceCache.scala |  4 +-
 .../measure/process/temp/TimeRange.scala|  9 +-
 .../rule/adaptor/GriffinDslAdaptor.scala| 10 +-
 .../rule/trans/AccuracyRulePlanTrans.scala  |  4 +-
 .../rule/trans/DistinctnessRulePlanTrans.scala  | 18 +++-
 .../rule/trans/ProfilingRulePlanTrans.scala |  4 +-
 .../measure/rule/trans/RulePlanTrans.scala  |  8 +-
 .../rule/trans/TimelinessRulePlanTrans.scala| 99 +---
 .../rule/trans/UniquenessRulePlanTrans.scala|  4 +-
 11 files changed, 92 insertions(+), 105 deletions(-)
--




[46/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/b6caae1b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/b6caae1b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/b6caae1b

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: b6caae1b72a0880b5c6a0e5b98a1270008ac68b1
Parents: f11c07a 5a92b65
Author: Lionel Liu 
Authored: Wed Mar 28 19:10:47 2018 +0800
Committer: Lionel Liu 
Committed: Wed Mar 28 19:10:47 2018 +0800

--
 KEYS|  58 +++
 LICENSE | 356 +---
 NOTICE  |   4 +-
 licenses/BSD-2-Clause   |  22 +
 licenses/BSD-3-Clause   |  26 ++
 licenses/CDDL-1.0   | 363 
 licenses/CDDL-1.1   | 362 
 licenses/EPL|  86 
 licenses/JSON   |  26 ++
 licenses/MIT|  19 +
 licenses/PostgreSQL |  12 +
 licenses/SIL-OFL-1.1|  84 
 licenses/WTFPL  |  13 +
 measure/src/main/resources/META-INF/LICENSE | 256 
 pom.xml | 117 +++---
 .../core/config/EclipseLinkJpaConfig.java   |  19 +
 service/src/main/resources/Init_quartz.sql  | 190 -
 .../src/main/resources/Init_quartz_derby.sql| 343 +++
 .../main/resources/Init_quartz_derby.sql.bak| 187 +
 .../src/main/resources/Init_quartz_mysql.sql| 190 +
 .../src/main/resources/Init_quartz_postgres.sql | 203 +
 service/src/main/resources/META-INF/LICENSE | 414 +++
 .../src/main/resources/init_quartz_postgres.sql | 203 -
 .../config/EclipseLinkJpaConfigForTest.java |  19 +
 ui/LICENSE  | 310 ++
 25 files changed, 3104 insertions(+), 778 deletions(-)
--




[36/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/e7a9c5d7
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/e7a9c5d7
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/e7a9c5d7

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: e7a9c5d721e0cca9f6b97741824b9734e7cdf31f
Parents: 5567c67 ada0add
Author: Lionel Liu 
Authored: Thu Mar 1 16:46:49 2018 +0800
Committer: Lionel Liu 
Committed: Thu Mar 1 16:46:49 2018 +0800

--
 ui/angular/src/app/dataasset/dataasset.component.html | 2 --
 ui/angular/src/app/metric/metric.component.ts | 4 
 ui/angular/src/app/sidebar/sidebar.component.ts   | 4 
 3 files changed, 8 insertions(+), 2 deletions(-)
--




[37/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/25cdce97
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/25cdce97
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/25cdce97

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 25cdce972a3756e9eddc9c6cc45bb7528c53e195
Parents: e7a9c5d 4a9137d
Author: Lionel Liu 
Authored: Thu Mar 1 16:48:24 2018 +0800
Committer: Lionel Liu 
Committed: Thu Mar 1 16:48:24 2018 +0800

--
 .../core/info/GriffinInfoController.java|  2 +-
 .../apache/griffin/core/interceptor/Token.java  | 28 
 .../core/interceptor/TokenInterceptor.java  | 74 
 .../core/interceptor/WebAppConfigurer.java  | 33 +
 .../apache/griffin/core/job/JobController.java  |  2 +
 .../apache/griffin/core/job/JobInstance.java|  2 +
 .../apache/griffin/core/job/JobServiceImpl.java |  2 +
 .../apache/griffin/core/job/SparkSubmitJob.java | 14 ++--
 .../griffin/core/measure/MeasureController.java |  2 +
 .../measure/entity/AbstractAuditableEntity.java | 15 ++--
 .../griffin/core/metric/MetricServiceImpl.java  |  2 +-
 .../core/info/GriffinInfoControllerTest.java|  2 +-
 12 files changed, 160 insertions(+), 18 deletions(-)
--




[49/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/6d578a39
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/6d578a39
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/6d578a39

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 6d578a39c07f722b5e83eee964897426b06b546e
Parents: 07a6764 8982971
Author: Lionel Liu 
Authored: Thu Mar 29 16:09:04 2018 +0800
Committer: Lionel Liu 
Committed: Thu Mar 29 16:09:04 2018 +0800

--
 licenses/NOTICE-Jackson| 20 +
 licenses/NOTICE-Tomcat | 55 +
 measure/src/main/resources/META-INF/NOTICE | 10 +
 service/src/main/resources/META-INF/NOTICE | 15 +++
 ui/NOTICE  |  5 +++
 5 files changed, 105 insertions(+)
--




[06/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/4d84ab03
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/4d84ab03
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/4d84ab03

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 4d84ab03ddb1453799ecc7f5f409349d74570661
Parents: 33ff150 87e59a5
Author: Lionel Liu 
Authored: Tue Jan 16 17:45:10 2018 +0800
Committer: Lionel Liu 
Committed: Tue Jan 16 17:45:10 2018 +0800

--
 .../measure/measure-configuration-guide.md  | 27 +---
 1 file changed, 23 insertions(+), 4 deletions(-)
--




[20/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/82db484c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/82db484c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/82db484c

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 82db484c3891ec3c59a4341a81f8ba7ed974559f
Parents: 995a407 0f5d742
Author: Lionel Liu 
Authored: Tue Feb 6 10:06:11 2018 +0800
Committer: Lionel Liu 
Committed: Tue Feb 6 10:06:11 2018 +0800

--
 ui/angular/src/app/health/health.component.ts   |  26 +++---
 ui/angular/src/app/job/job.component.html   |   7 ++
 ui/angular/src/app/job/job.component.ts |   5 ++
 .../measure-detail.component.html   |   2 +-
 .../detail-metric/detail-metric.component.css   |   4 +-
 .../detail-metric/detail-metric.component.html  |  86 +++
 .../detail-metric/detail-metric.component.ts|  12 ++-
 ui/angular/src/app/metric/metric.component.ts   |  56 +---
 ui/angular/src/app/service/chart.service.ts |  22 ++---
 ui/angular/src/app/sidebar/sidebar.component.ts |  26 +++---
 ui/angular/src/assets/img/table.png | Bin 882 -> 0 bytes
 11 files changed, 113 insertions(+), 133 deletions(-)
--




[45/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/f11c07ab
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/f11c07ab
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/f11c07ab

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: f11c07ab8efb97c75746141f5abae4df88c5aaea
Parents: 799c443 4aab9d5
Author: Lionel Liu 
Authored: Wed Mar 28 17:41:47 2018 +0800
Committer: Lionel Liu 
Committed: Wed Mar 28 17:41:47 2018 +0800

--
 service/pom.xml |  60 +-
 .../core/config/EclipseLinkJpaConfig.java   |  41 
 .../core/interceptor/TokenInterceptor.java  |  38 ++--
 .../apache/griffin/core/job/JobInstance.java|  31 +--
 .../apache/griffin/core/job/JobServiceImpl.java |  27 ++-
 .../griffin/core/job/entity/AbstractJob.java|   6 +-
 .../griffin/core/job/entity/GriffinJob.java |  21 +-
 .../griffin/core/job/entity/JobDataSegment.java |   6 +-
 .../core/job/entity/JobInstanceBean.java|  25 ++-
 .../griffin/core/job/entity/JobSchedule.java|  41 ++--
 .../core/job/entity/SegmentPredicate.java   |  46 +++--
 .../griffin/core/job/repo/JobInstanceRepo.java  |  16 +-
 .../measure/entity/AbstractAuditableEntity.java |   2 +-
 .../core/measure/entity/DataConnector.java  |  31 ++-
 .../core/measure/entity/EvaluateRule.java   |   4 -
 .../core/measure/entity/GriffinMeasure.java |  40 ++--
 .../griffin/core/measure/entity/Measure.java|   8 +-
 .../griffin/core/measure/entity/Rule.java   | 113 ++-
 .../core/measure/repo/DataConnectorRepo.java|   2 +-
 .../main/resources/application-dev.properties   |  76 ---
 .../main/resources/application-prod.properties  |  63 --
 .../src/main/resources/application.properties   |  15 +-
 .../src/main/resources/init_quartz_postgres.sql | 203 +++
 service/src/main/resources/quartz.properties|   2 +-
 .../config/EclipseLinkJpaConfigForTest.java |  39 
 .../core/config/PropertiesConfigTest.java   |   1 -
 .../core/job/JobInstanceBeanRepoTest.java   |  28 ++-
 .../griffin/core/job/JobInstanceTest.java   |   7 +-
 .../griffin/core/job/JobServiceImplTest.java|  43 ++--
 .../core/job/repo/JobInstanceRepoTest.java  |  23 ++-
 .../griffin/core/job/repo/JobRepoTest.java  |  17 +-
 .../measure/repo/DataConnectorRepoTest.java |  24 ++-
 .../core/measure/repo/MeasureRepoTest.java  |   3 +
 .../hive/HiveMetaStoreServiceImplTest.java  |   2 +-
 .../apache/griffin/core/util/EntityHelper.java  |   6 +-
 .../src/test/resources/application.properties   |  14 +-
 service/src/test/resources/quartz.properties|   4 +-
 37 files changed, 827 insertions(+), 301 deletions(-)
--




[13/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/5f71eee0
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/5f71eee0
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/5f71eee0

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 5f71eee0c3f51baba3eb90b635b16611066c75e7
Parents: 198b593 e703471
Author: Lionel Liu 
Authored: Wed Jan 31 16:32:46 2018 +0800
Committer: Lionel Liu 
Committed: Wed Jan 31 16:32:46 2018 +0800

--
 ui/angular/src/app/app.component.css| 167 ++--
 ui/angular/src/app/app.component.html   |   2 +-
 ui/angular/src/app/app.component.ts |  84 +-
 ui/angular/src/app/app.module.ts|   1 -
 .../src/app/dataasset/dataasset.component.css   |  26 +-
 .../src/app/dataasset/dataasset.component.ts|  17 -
 ui/angular/src/app/health/health.component.ts   | 264 ---
 .../app/job/create-job/create-job.component.css |  52 +-
 .../job/create-job/create-job.component.html|   3 +-
 .../app/job/create-job/create-job.component.ts  | 307 
 ui/angular/src/app/job/job.component.css|  42 +-
 ui/angular/src/app/job/job.component.html   |  37 +-
 ui/angular/src/app/job/job.component.ts | 179 ++---
 ui/angular/src/app/login/login.component.css|  87 ++-
 ui/angular/src/app/login/login.component.ts | 133 ++--
 .../measure/create-measure/ac/ac.component.css  | 105 +--
 .../measure/create-measure/ac/ac.component.html | 116 +--
 .../measure/create-measure/ac/ac.component.ts   | 770 ++-
 .../configuration/configuration.component.css   |   8 -
 .../configuration/configuration.component.html  |  13 +-
 .../configuration/configuration.component.ts| 124 +--
 .../create-measure/create-measure.component.css | 109 +--
 .../create-measure/create-measure.component.ts  |  51 +-
 .../measure/create-measure/pr/pr.component.css  | 166 ++--
 .../measure/create-measure/pr/pr.component.html |  89 +--
 .../measure/create-measure/pr/pr.component.ts   | 706 +
 .../create-measure/pr/rule/rule.component.css   |  44 +-
 .../create-measure/pr/rule/rule.component.ts|   1 -
 .../measure-detail.component.html   |  10 +-
 .../measure-detail/measure-detail.component.ts  |  99 +--
 .../src/app/measure/measure.component.css   | 351 -
 .../src/app/measure/measure.component.html  |  16 +-
 ui/angular/src/app/measure/measure.component.ts | 116 +--
 .../detail-metric/detail-metric.component.ts| 126 +--
 ui/angular/src/app/metric/metric.component.css  |  65 +-
 ui/angular/src/app/metric/metric.component.html |   7 -
 ui/angular/src/app/metric/metric.component.ts   | 153 ++--
 ui/angular/src/app/service/chart.service.ts | 456 +--
 ui/angular/src/app/service/service.service.ts   | 188 +++--
 ui/angular/src/app/service/user.service.ts  |  32 +-
 .../src/app/sidebar/sidebar.component.css   | 266 +++
 .../src/app/sidebar/sidebar.component.html  |   3 +-
 ui/angular/src/app/sidebar/sidebar.component.ts | 154 ++--
 ui/angular/src/app/sidebar/truncate.pipe.ts |   2 -
 ui/angular/src/styles.css   |   4 +-
 45 files changed, 2881 insertions(+), 2870 deletions(-)
--




[50/50] incubator-griffin git commit: [maven-release-plugin] prepare release griffin-0.2.0-incubating

2018-03-29 Thread guoyp
[maven-release-plugin] prepare release griffin-0.2.0-incubating


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/abcdfa38
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/abcdfa38
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/abcdfa38

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: abcdfa387552348d53f7d1489d4dbbcdab4a14a9
Parents: 6d578a3
Author: Lionel Liu 
Authored: Thu Mar 29 20:43:58 2018 +0800
Committer: Lionel Liu 
Committed: Thu Mar 29 20:43:58 2018 +0800

--
 measure/pom.xml | 2 +-
 pom.xml | 4 ++--
 service/pom.xml | 5 ++---
 ui/pom.xml  | 2 +-
 4 files changed, 6 insertions(+), 7 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-griffin/blob/abcdfa38/measure/pom.xml
--
diff --git a/measure/pom.xml b/measure/pom.xml
index 8cecb71..e1f7cd2 100644
--- a/measure/pom.xml
+++ b/measure/pom.xml
@@ -23,7 +23,7 @@ under the License.
   
 org.apache.griffin
 griffin
-0.2.0-incubating-SNAPSHOT
+0.2.0-incubating
   
 
   measure

http://git-wip-us.apache.org/repos/asf/incubator-griffin/blob/abcdfa38/pom.xml
--
diff --git a/pom.xml b/pom.xml
index f8686c6..2f2e4cc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -30,7 +30,7 @@ under the License.
 
 org.apache.griffin
 griffin
-0.2.0-incubating-SNAPSHOT
+0.2.0-incubating
 pom
 Apache Griffin ${project.version}
 http://griffin.incubator.apache.org
@@ -82,7 +82,7 @@ under the License.
 
scm:git:https://git-wip-us.apache.org/repos/asf/incubator-griffin.git
 
scm:git:https://git-wip-us.apache.org/repos/asf/incubator-griffin.git
 
https://git-wip-us.apache.org/repos/asf?p=incubator-griffin.git;a=summary
-HEAD
+griffin-0.2.0-incubating
 
 
 

http://git-wip-us.apache.org/repos/asf/incubator-griffin/blob/abcdfa38/service/pom.xml
--
diff --git a/service/pom.xml b/service/pom.xml
index e2d96ae..6db7574 100644
--- a/service/pom.xml
+++ b/service/pom.xml
@@ -17,14 +17,13 @@ KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
 -->
-http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
 4.0.0
 
 
 org.apache.griffin
 griffin
-0.2.0-incubating-SNAPSHOT
+0.2.0-incubating
 
 
 service

http://git-wip-us.apache.org/repos/asf/incubator-griffin/blob/abcdfa38/ui/pom.xml
--
diff --git a/ui/pom.xml b/ui/pom.xml
index 707f7c1..9681feb 100644
--- a/ui/pom.xml
+++ b/ui/pom.xml
@@ -24,7 +24,7 @@ under the License.
 
 org.apache.griffin
 griffin
-0.2.0-incubating-SNAPSHOT
+0.2.0-incubating
 
   ui
   pom



[23/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/922da1b4
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/922da1b4
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/922da1b4

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 922da1b487e0360bbc6466fd7451d54a1b5724a4
Parents: 1675c93 d8193a0
Author: Lionel Liu 
Authored: Wed Feb 7 11:16:47 2018 +0800
Committer: Lionel Liu 
Committed: Wed Feb 7 11:16:47 2018 +0800

--
 .../griffin/core/measure/MeasureController.java |  4 ++--
 .../apache/griffin/core/measure/MeasureService.java |  2 +-
 .../griffin/core/measure/MeasureServiceImpl.java| 13 -
 .../griffin/core/metric/MetricController.java   |  5 +++--
 .../apache/griffin/core/metric/MetricService.java   |  2 +-
 .../griffin/core/metric/MetricServiceImpl.java  |  6 +++---
 .../org/apache/griffin/core/metric/MetricStore.java |  2 +-
 .../apache/griffin/core/metric/MetricStoreImpl.java | 16 +++-
 .../griffin/core/measure/MeasureControllerTest.java |  8 +---
 .../core/measure/MeasureServiceImplTest.java|  5 ++---
 .../griffin/core/metric/MetricControllerTest.java   |  4 ++--
 .../griffin/core/metric/MetricServiceImplTest.java  | 12 ++--
 12 files changed, 49 insertions(+), 30 deletions(-)
--




[18/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/933ff308
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/933ff308
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/933ff308

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 933ff3083d4aa823214e05164741f7d1f425b964
Parents: e1f5b04 d707517
Author: Lionel Liu 
Authored: Mon Feb 5 13:01:53 2018 +0800
Committer: Lionel Liu 
Committed: Mon Feb 5 13:01:53 2018 +0800

--
 .../data/source/cache/DataSourceCache.scala | 35 +---
 .../measure/process/StreamingDqThread.scala |  2 +-
 .../rule/trans/DistinctnessRulePlanTrans.scala  |  5 +--
 3 files changed, 25 insertions(+), 17 deletions(-)
--




[02/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/a89291ed
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/a89291ed
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/a89291ed

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: a89291eda1c50975a98513548982120e7749cc8e
Parents: a4f573a e704da6
Author: Lionel Liu 
Authored: Mon Jan 15 14:01:16 2018 +0800
Committer: Lionel Liu 
Committed: Mon Jan 15 14:01:16 2018 +0800

--
 .../apache/griffin/core/config/LoginConfig.java |  56 +++
 .../griffin/core/login/LoginController.java |   7 -
 .../apache/griffin/core/login/LoginService.java |   6 -
 .../core/login/LoginServiceDefaultImpl.java |  44 ++
 .../griffin/core/login/LoginServiceImpl.java| 157 ---
 .../core/login/LoginServiceLdapImpl.java| 107 +
 .../griffin/core/metric/MetricController.java   |   7 +-
 .../griffin/core/metric/MetricService.java  |   3 +-
 .../griffin/core/metric/MetricServiceImpl.java  |  57 +--
 .../griffin/core/metric/MetricStoreImpl.java|  26 ++-
 .../griffin/core/metric/model/Metric.java   |  22 +--
 .../core/util/GriffinOperationMessage.java  |   6 +-
 .../src/main/resources/application.properties   |  17 +-
 13 files changed, 286 insertions(+), 229 deletions(-)
--




[32/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/eedd1d48
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/eedd1d48
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/eedd1d48

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: eedd1d48de7d34d8845600c7f90ce477b1b32814
Parents: 169a47b b2f334a
Author: Lionel Liu 
Authored: Mon Feb 12 10:56:09 2018 +0800
Committer: Lionel Liu 
Committed: Mon Feb 12 10:56:09 2018 +0800

--
 README.md   |  225 +-
 griffin-doc/service/api-guide.md|  858 ---
 griffin-doc/service/postman/griffin.json| 2333 ++
 .../griffin/core/metric/MetricStoreImpl.java|6 +-
 4 files changed, 1983 insertions(+), 1439 deletions(-)
--




[21/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/eab1854f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/eab1854f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/eab1854f

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: eab1854fc4fe85b70f30c937d21e40423d1f9d0f
Parents: 82db484 fd31809
Author: Lionel Liu 
Authored: Tue Feb 6 10:36:54 2018 +0800
Committer: Lionel Liu 
Committed: Tue Feb 6 10:36:54 2018 +0800

--
 .../apache/griffin/measure/util/MailUtil.java   |  20 ++--
 .../griffin/core/common/CacheEvictor.java   |   6 +-
 .../griffin/core/config/PropertiesConfig.java   |  49 ++---
 .../griffin/core/config/SchedulerConfig.java|   7 +-
 .../core/exception/GriffinExceptionMessage.java |   1 +
 .../griffin/core/job/FileExistPredicator.java   |  10 +-
 .../apache/griffin/core/job/JobController.java  |   5 +
 .../apache/griffin/core/job/JobInstance.java|  77 +++--
 .../org/apache/griffin/core/job/JobService.java |   2 +
 .../apache/griffin/core/job/JobServiceImpl.java | 110 +++
 .../apache/griffin/core/job/SparkSubmitJob.java |  24 ++--
 .../griffin/core/job/entity/JobSchedule.java|  10 +-
 .../core/job/entity/SegmentPredicate.java   |  10 +-
 .../griffin/core/job/entity/SegmentRange.java   |   2 +-
 .../core/job/factory/PredicatorFactory.java |   4 +
 .../griffin/core/job/repo/JobInstanceRepo.java  |   2 +-
 .../griffin/core/job/repo/JobScheduleRepo.java  |   2 +
 .../measure/ExternalMeasureOperationImpl.java   |  15 +--
 .../measure/GriffinMeasureOperationImpl.java|  55 ++
 .../griffin/core/measure/MeasureController.java |   6 +
 .../griffin/core/measure/MeasureService.java|  10 +-
 .../core/measure/MeasureServiceImpl.java|   9 ++
 .../core/measure/entity/DataConnector.java  |  27 -
 .../core/measure/entity/GriffinMeasure.java |  41 ++-
 .../griffin/core/measure/entity/Rule.java   |  87 ---
 .../core/metastore/hive/HiveMetaStoreProxy.java |   2 +-
 .../hive/HiveMetaStoreServiceImpl.java  |  25 +++--
 .../griffin/core/metric/MetricStoreImpl.java|   7 +-
 .../apache/griffin/core/util/MeasureUtil.java   |  76 +
 .../griffin/core/util/PropertiesUtil.java   |  52 +
 .../org/apache/griffin/core/util/TimeUtil.java  |  81 +-
 service/src/main/resources/sparkJob.properties  |  15 ++-
 .../core/config/PropertiesConfigTest.java   |  48 +++-
 .../griffin/core/job/JobControllerTest.java |   3 +-
 .../griffin/core/job/JobInstanceTest.java   |   8 +-
 .../griffin/core/job/JobServiceImplTest.java|  42 +++
 .../GriffinMeasureOperationImplTest.java|  11 --
 .../core/measure/MeasureControllerTest.java |  33 +-
 .../core/measure/MeasureServiceImplTest.java|  46 +++-
 .../griffin/core/util/PropertiesUtilTest.java   |  38 ++-
 .../apache/griffin/core/util/TimeUtilTest.java  |  27 ++---
 service/src/test/resources/sparkJob.properties  |  21 ++--
 42 files changed, 723 insertions(+), 403 deletions(-)
--




[48/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/07a67642
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/07a67642
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/07a67642

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 07a67642627dc610109120a34ceac964fac9eb81
Parents: c0d5e99 293217f
Author: Lionel Liu 
Authored: Thu Mar 29 14:26:27 2018 +0800
Committer: Lionel Liu 
Committed: Thu Mar 29 14:26:27 2018 +0800

--
 README.md   |  16 ++-
 griffin-doc/dev/dev-env-build.md| 144 +++
 .../docker/svc_msr/docker-compose-batch.yml |   1 +
 .../docker/svc_msr/docker-compose-streaming.yml |   1 +
 4 files changed, 159 insertions(+), 3 deletions(-)
--




[05/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/33ff150c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/33ff150c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/33ff150c

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 33ff150c7e54ab3affe9f2496c3b35fd3bcf8d08
Parents: 882c6ed 44eea86
Author: Lionel Liu 
Authored: Tue Jan 16 17:00:44 2018 +0800
Committer: Lionel Liu 
Committed: Tue Jan 16 17:00:44 2018 +0800

--
 griffin-doc/service/api-guide.md| 1084 +
 griffin-doc/service/postman/griffin.json| 2259 ++
 .../apache/griffin/core/job/JobController.java  |2 +-
 .../apache/griffin/core/job/JobInstance.java|3 +-
 .../org/apache/griffin/core/job/JobService.java |2 +-
 .../apache/griffin/core/job/JobServiceImpl.java |   86 +-
 .../griffin/core/job/entity/JobDataSegment.java |5 +
 .../griffin/core/job/entity/JobSchedule.java|6 +-
 .../griffin/core/login/LoginController.java |3 +-
 .../measure/ExternalMeasureOperationImpl.java   |   14 +-
 .../measure/GriffinMeasureOperationImpl.java|   12 +-
 .../core/measure/MeasureServiceImpl.java|   14 +-
 .../core/measure/entity/DataConnector.java  |   21 +-
 .../core/measure/entity/GriffinMeasure.java |8 +
 .../griffin/core/metric/MetricController.java   |5 +-
 .../griffin/core/metric/MetricService.java  |5 +-
 .../griffin/core/metric/MetricServiceImpl.java  |   20 +-
 .../griffin/core/metric/MetricStoreImpl.java|2 +-
 .../src/main/resources/application.properties   |   16 +-
 .../griffin/core/job/JobControllerTest.java |  308 +--
 .../core/job/repo/JobInstanceRepoTest.java  |   87 +
 .../core/measure/MeasureControllerTest.java |  398 ++-
 .../core/measure/MeasureOrgControllerTest.java  |1 -
 .../core/measure/MeasureOrgServiceImplTest.java |4 +-
 .../core/measure/MeasureServiceImplTest.java|6 +-
 .../griffin/core/measure/MeasureTestHelper.java |   89 -
 .../core/measure/repo/MeasureRepoTest.java  |2 +-
 .../apache/griffin/core/util/EntityHelper.java  |   89 +
 28 files changed, 3057 insertions(+), 1494 deletions(-)
--




[14/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/d8efb4b9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/d8efb4b9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/d8efb4b9

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: d8efb4b99b0a475a09a24c35a5b0c94653e35940
Parents: 5f71eee 530c2da
Author: Lionel Liu 
Authored: Thu Feb 1 16:01:21 2018 +0800
Committer: Lionel Liu 
Committed: Thu Feb 1 16:01:21 2018 +0800

--
 .../griffin/core/metric/MetricStoreImpl.java| 36 
 .../src/main/resources/application.properties   |  5 ++-
 .../core/metric/MetricStoreImplTest.java| 20 +++
 .../src/test/resources/application.properties   |  5 ++-
 4 files changed, 57 insertions(+), 9 deletions(-)
--




[43/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/837591c0
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/837591c0
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/837591c0

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 837591c053d6a7a1b198689ef1867b19b54b1385
Parents: df43c96 db3e6ec
Author: Lionel Liu 
Authored: Thu Mar 22 14:52:50 2018 +0800
Committer: Lionel Liu 
Committed: Thu Mar 22 14:52:50 2018 +0800

--
 service/src/main/resources/banner.txt | 5 +
 1 file changed, 5 insertions(+)
--




[47/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/c0d5e997
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/c0d5e997
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/c0d5e997

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: c0d5e99711c02cb0a689c8601322a85c871512d5
Parents: b6caae1 5fc8e89
Author: Lionel Liu 
Authored: Thu Mar 29 11:18:10 2018 +0800
Committer: Lionel Liu 
Committed: Thu Mar 29 11:18:10 2018 +0800

--
 .../main/java/org/apache/griffin/core/metric/MetricStoreImpl.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--




[17/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/e1f5b04c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/e1f5b04c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/e1f5b04c

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: e1f5b04c996dd52bd2b24dc7e98023b5ae49b7dc
Parents: 3d48ade a926972
Author: Lionel Liu 
Authored: Fri Feb 2 18:22:17 2018 +0800
Committer: Lionel Liu 
Committed: Fri Feb 2 18:22:17 2018 +0800

--
 .../apache/griffin/core/job/JobController.java  |  7 +++-
 .../org/apache/griffin/core/job/JobService.java |  7 +++-
 .../apache/griffin/core/job/JobServiceImpl.java |  5 +--
 .../core/measure/entity/GriffinMeasure.java | 12 --
 .../griffin/core/measure/entity/Measure.java| 20 +++--
 .../griffin/core/metric/MetricServiceImpl.java  |  2 +-
 .../griffin/core/metric/MetricStoreImpl.java| 43 
 .../griffin/core/metric/model/Metric.java   | 12 +-
 .../griffin/core/job/JobControllerTest.java |  5 +--
 .../griffin/core/job/JobServiceImplTest.java|  4 +-
 .../core/metric/MetricControllerTest.java   |  2 +-
 .../core/metric/MetricStoreImplTest.java| 19 +
 12 files changed, 89 insertions(+), 49 deletions(-)
--




[10/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/92c9f657
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/92c9f657
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/92c9f657

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 92c9f657687ae03ededf2bfbdf3d74bc1ac39647
Parents: 8803a6c 2972aa2
Author: Lionel Liu 
Authored: Fri Jan 26 14:24:43 2018 +0800
Committer: Lionel Liu 
Committed: Fri Jan 26 14:24:43 2018 +0800

--
 .../job/create-job/create-job.component.html|  73 +---
 .../app/job/create-job/create-job.component.ts  | 187 ++-
 .../measure/create-measure/ac/ac.component.html | 164 ++--
 .../measure/create-measure/ac/ac.component.ts   |  32 ++--
 .../measure/create-measure/pr/pr.component.html |  88 +
 .../measure/create-measure/pr/pr.component.ts   |  57 +++---
 .../measure-detail.component.html   |  54 +-
 .../measure-detail/measure-detail.component.ts  |  59 --
 .../src/app/measure/measure.component.html  |   6 +-
 ui/angular/src/app/service/service.service.ts   |   4 +-
 10 files changed, 330 insertions(+), 394 deletions(-)
--




[39/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/57df9298
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/57df9298
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/57df9298

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 57df9298e36dd1360a7189e9324b37dc4a020e1a
Parents: d728138 8e183df
Author: Lionel Liu 
Authored: Tue Mar 6 15:19:22 2018 +0800
Committer: Lionel Liu 
Committed: Tue Mar 6 15:19:22 2018 +0800

--
 griffin-doc/FSD.md  |  64 +--
 griffin-doc/img/fsd/image2018-1-8 12-33-2.png   | Bin 108413 -> 128529 bytes
 griffin-doc/img/fsd/image2018-1-8 12-38-12.png  | Bin 120481 -> 123654 bytes
 griffin-doc/img/fsd/image2018-1-8 12-44-30.png  | Bin 152061 -> 169651 bytes
 griffin-doc/img/fsd/image2018-1-8 12-48-20.png  | Bin 186633 -> 137816 bytes
 griffin-doc/img/fsd/image2018-1-8 12-51-13.png  | Bin 160405 -> 150127 bytes
 griffin-doc/img/fsd/image2018-1-8 13-02-15.png  | Bin 272258 -> 238736 bytes
 griffin-doc/img/fsd/image2018-1-8 13-07-16.png  | Bin 120708 -> 128242 bytes
 griffin-doc/img/fsd/image2018-1-8 13-10-28.png  | Bin 120358 -> 142898 bytes
 griffin-doc/img/fsd/image2018-1-8 13-12-10.png  | Bin 143090 -> 113922 bytes
 griffin-doc/img/fsd/image2018-1-8 13-13-40.png  | Bin 155166 -> 139110 bytes
 griffin-doc/img/fsd/image2018-1-8 13-15-30.png  | Bin 160387 -> 133758 bytes
 griffin-doc/img/fsd/image2018-2-5 14-44-20.png  | Bin 279001 -> 210289 bytes
 griffin-doc/img/fsd/image2018-2-5 14-45-10.png  | Bin 111384 -> 127324 bytes
 griffin-doc/img/fsd/image2018-2-5 14-46-26.png  | Bin 124723 -> 118602 bytes
 griffin-doc/img/fsd/image2018-2-5 14-50-10.png  | Bin 85916 -> 72787 bytes
 griffin-doc/img/fsd/image2018-2-6 10-48-10.png  | Bin 59232 -> 80211 bytes
 griffin-doc/img/fsd/image2018-2-6 10-50-10.png  | Bin 144805 -> 100417 bytes
 griffin-doc/img/fsd/image2018-2-6 10-51-16.png  | Bin 118094 -> 170904 bytes
 griffin-doc/img/fsd/image2018-2-6 11-1-10.png   | Bin 214914 -> 213911 bytes
 griffin-doc/img/fsd/image2018-2-6 11-3-19.png   | Bin 97741 -> 97685 bytes
 griffin-doc/img/userguide/ac_partition.png  | Bin 186633 -> 137816 bytes
 griffin-doc/img/userguide/asset list.png| Bin 89272 -> 72787 bytes
 griffin-doc/img/userguide/confirm job.png   | Bin 95586 -> 97685 bytes
 griffin-doc/img/userguide/confirm measure.png   | Bin 147534 -> 150127 bytes
 griffin-doc/img/userguide/dashboard big.png | Bin 118094 -> 170904 bytes
 griffin-doc/img/userguide/job config.png| Bin 209684 -> 213911 bytes
 griffin-doc/img/userguide/mapping.png   | Bin 202146 -> 169651 bytes
 griffin-doc/img/userguide/measure info.png  | Bin 288214 -> 238736 bytes
 griffin-doc/img/userguide/metrics dashboard.png | Bin 144805 -> 100417 bytes
 griffin-doc/img/userguide/right bar.png | Bin 59232 -> 80211 bytes
 griffin-doc/img/userguide/source.PNG| Bin 122418 -> 128529 bytes
 griffin-doc/img/userguide/target.PNG| Bin 114057 -> 123654 bytes
 griffin-doc/ui/test-case.md |   2 +-
 griffin-doc/ui/user-guide.md|   6 +-
 ui/angular/src/app/service/chart.service.ts |   5 +-
 36 files changed, 50 insertions(+), 27 deletions(-)
--




[15/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/2dda957b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/2dda957b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/2dda957b

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 2dda957bbe1f0451517021453bdc1a8b4ed339f7
Parents: d8efb4b b83c587
Author: Lionel Liu 
Authored: Thu Feb 1 16:14:22 2018 +0800
Committer: Lionel Liu 
Committed: Thu Feb 1 16:14:22 2018 +0800

--
 .../measure/cache/info/TimeInfoCache.scala  |   2 +
 .../streaming/KafkaStreamingDataConnector.scala |   9 +-
 .../streaming/StreamingDataConnector.scala  |   2 +-
 .../measure/data/source/DataCacheable.scala |  76 --
 .../measure/data/source/DataSource.scala|  16 +-
 .../measure/data/source/DataSourceCache.scala   | 403 --
 .../measure/data/source/DataSourceFactory.scala |  25 +-
 .../data/source/cache/DataCacheable.scala   |  84 ++
 .../data/source/cache/DataSourceCache.scala | 333 
 .../source/cache/DataSourceCacheFactory.scala   |  58 ++
 .../data/source/cache/JsonDataSourceCache.scala |  40 +
 .../data/source/cache/OrcDataSourceCache.scala  |  40 +
 .../source/cache/ParquetDataSourceCache.scala   |  40 +
 .../griffin/measure/persist/MultiPersists.scala |   8 -
 .../measure/process/BatchDqProcess.scala|  47 +-
 .../measure/process/StreamingDqProcess.scala|   6 +-
 .../measure/process/StreamingDqThread.scala |  95 +--
 .../measure/process/engine/DqEngine.scala   |   2 +
 .../measure/process/engine/DqEngines.scala  | 307 ++--
 .../measure/process/engine/SparkDqEngine.scala  | 229 +-
 .../measure/process/temp/TimeRange.scala|   2 +-
 .../rule/adaptor/DataFrameOprAdaptor.scala  |   6 +-
 .../measure/rule/adaptor/GlobalKeys.scala   |  48 --
 .../rule/adaptor/GriffinDslAdaptor.scala| 759 +--
 .../measure/rule/adaptor/RuleAdaptor.scala  | 128 +---
 .../measure/rule/adaptor/SparkSqlAdaptor.scala  |   6 +-
 .../griffin/measure/rule/plan/DsUpdate.scala|  24 +
 .../measure/rule/plan/MetricExport.scala|   3 -
 .../measure/rule/plan/RecordExport.scala|   3 -
 .../griffin/measure/rule/plan/RuleExport.scala  |   2 -
 .../griffin/measure/rule/plan/RulePlan.scala|   9 +-
 .../rule/trans/AccuracyRulePlanTrans.scala  | 198 +
 .../rule/trans/DistinctnessRulePlanTrans.scala  | 234 ++
 .../measure/rule/trans/DsUpdateFactory.scala|  37 +
 .../rule/trans/ProfilingRulePlanTrans.scala |  98 +++
 .../measure/rule/trans/RuleExportFactory.scala  |  65 ++
 .../measure/rule/trans/RulePlanTrans.scala  |  57 ++
 .../rule/trans/TimelinessRulePlanTrans.scala| 279 +++
 .../rule/trans/UniquenessRulePlanTrans.scala| 198 +
 .../griffin/measure/rule/udf/GriffinUdafs.scala |  29 +
 .../griffin/measure/rule/udf/MeanUdaf.scala |  58 ++
 .../griffin/measure/utils/ParamUtil.scala   |  11 +
 .../_accuracy-streaming-griffindsl.json |   8 +-
 .../resources/_timeliness-batch-griffindsl.json |   6 +-
 .../_timeliness-streaming-griffindsl.json   |   4 +-
 45 files changed, 2073 insertions(+), 2021 deletions(-)
--




[24/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/6ef8764f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/6ef8764f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/6ef8764f

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 6ef8764f313a42d132f97a9dbd38a1b87bcbe226
Parents: 922da1b d063c03
Author: Lionel Liu 
Authored: Wed Feb 7 15:13:45 2018 +0800
Committer: Lionel Liu 
Committed: Wed Feb 7 15:13:45 2018 +0800

--
 ui/angular/src/app/app.component.html   |  6 +-
 ui/angular/src/app/health/health.component.ts   |  4 +-
 .../app/job/create-job/create-job.component.ts  |  2 +-
 ui/angular/src/app/job/job.component.ts |  1 -
 .../measure/create-measure/ac/ac.component.html |  4 +-
 .../measure/create-measure/ac/ac.component.ts   |  8 +-
 .../detail-metric/detail-metric.component.css   | 91 ++--
 .../detail-metric/detail-metric.component.html  | 30 +++
 .../detail-metric/detail-metric.component.ts|  4 +-
 ui/angular/src/app/metric/metric.component.ts   |  4 +-
 ui/angular/src/app/service/chart.service.ts |  2 +-
 ui/angular/src/app/service/user.service.ts  |  1 -
 ui/angular/src/app/sidebar/sidebar.component.ts |  4 +-
 13 files changed, 80 insertions(+), 81 deletions(-)
--




[33/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/6d684017
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/6d684017
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/6d684017

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 6d684017f1269980202734112ec91507b6bc000f
Parents: eedd1d4 9e7fdfa
Author: Lionel Liu 
Authored: Mon Feb 12 16:40:37 2018 +0800
Committer: Lionel Liu 
Committed: Mon Feb 12 16:40:37 2018 +0800

--
 measure/pom.xml |  2 +-
 pom.xml |  2 +-
 service/pom.xml |  2 +-
 .../app/job/create-job/create-job.component.ts  | 28 +++-
 .../measure/create-measure/pr/pr.component.ts   |  4 +--
 ui/pom.xml  |  2 +-
 6 files changed, 28 insertions(+), 12 deletions(-)
--




[41/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/d000dab0
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/d000dab0
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/d000dab0

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: d000dab068795fc67c9eac14c08782dd0b2e50d1
Parents: f00fc4e 07121ba
Author: Lionel Liu 
Authored: Wed Mar 21 16:05:21 2018 +0800
Committer: Lionel Liu 
Committed: Wed Mar 21 16:05:21 2018 +0800

--
 griffin-doc/FSD.md| 4 ++--
 ui/angular/src/app/login/login.component.html | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)
--




[19/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/995a4070
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/995a4070
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/995a4070

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 995a407070bc917ff3edcef3cb2216c946d16041
Parents: 933ff30 459c966
Author: Lionel Liu 
Authored: Mon Feb 5 13:03:26 2018 +0800
Committer: Lionel Liu 
Committed: Mon Feb 5 13:03:26 2018 +0800

--
 ui/angular/src/app/health/health.component.ts   |  34 
 ui/angular/src/app/job/job.component.ts |   1 +
 .../measure/create-measure/ac/ac.component.css  |   2 +-
 .../measure/create-measure/ac/ac.component.html |   2 +-
 .../measure/create-measure/pr/pr.component.ts   |  33 +++
 .../measure-detail.component.html   |   6 +-
 .../measure-detail/measure-detail.component.ts  |  16 ++--
 .../detail-metric/detail-metric.component.css   |  86 ++-
 .../detail-metric/detail-metric.component.html  |  55 
 .../detail-metric/detail-metric.component.ts|  50 +++
 ui/angular/src/app/metric/metric.component.ts   |  57 
 ui/angular/src/app/service/chart.service.ts |  11 ++-
 ui/angular/src/app/sidebar/sidebar.component.ts |  34 
 ui/angular/src/assets/img/table.png | Bin 0 -> 882 bytes
 14 files changed, 289 insertions(+), 98 deletions(-)
--




[03/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/15c62cef
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/15c62cef
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/15c62cef

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 15c62cef1e1456bf7fb88e51ae3c294e04382342
Parents: a89291e cbff5b4
Author: Lionel Liu 
Authored: Tue Jan 16 16:33:03 2018 +0800
Committer: Lionel Liu 
Committed: Tue Jan 16 16:33:03 2018 +0800

--
 griffin-doc/measure/measure-batch-sample.md |  64 ++--
 .../measure/measure-configuration-guide.md  |  66 ++--
 .../measure/measure-streaming-sample-old.md | 204 ---
 griffin-doc/measure/measure-streaming-sample.md | 256 ++
 .../measure/cache/info/TimeInfoCache.scala  |  24 +-
 .../measure/cache/info/ZKInfoCache.scala|   8 +-
 .../config/params/user/DataSourceParam.scala|   1 +
 .../measure/data/connector/DataConnector.scala  |   9 +-
 .../batch/AvroBatchDataConnector.scala  |   6 +-
 .../batch/HiveBatchDataConnector.scala  |   6 +-
 .../batch/TextDirBatchDataConnector.scala   |   6 +-
 .../streaming/StreamingDataConnector.scala  |   3 +-
 .../measure/data/source/DataSource.scala|  14 +-
 .../measure/data/source/DataSourceCache.scala   | 303 +
 .../measure/data/source/DataSourceFactory.scala |   2 +-
 .../measure/process/BatchDqProcess.scala|  12 +-
 .../griffin/measure/process/ExportMode.scala|  34 ++
 .../measure/process/StreamingDqThread.scala |  93 ++---
 .../measure/process/engine/DqEngine.scala   |   6 +-
 .../measure/process/engine/DqEngines.scala  |  39 ++-
 .../measure/process/engine/SparkDqEngine.scala  | 103 +++---
 .../measure/process/engine/SparkSqlEngine.scala |   3 +
 .../measure/process/temp/TimeRange.scala|  41 +++
 .../rule/adaptor/DataFrameOprAdaptor.scala  |   9 +-
 .../measure/rule/adaptor/GlobalKeys.scala   |  70 
 .../rule/adaptor/GriffinDslAdaptor.scala| 335 +--
 .../measure/rule/adaptor/InternalColumns.scala  |   4 +-
 .../measure/rule/adaptor/RuleAdaptor.scala  |  29 +-
 .../measure/rule/adaptor/RuleAdaptorGroup.scala |  12 +-
 .../measure/rule/adaptor/SparkSqlAdaptor.scala  |   9 +-
 .../griffin/measure/rule/dsl/DqType.scala   |   7 +-
 .../dsl/analyzer/DistinctnessAnalyzer.scala |  47 +++
 .../rule/dsl/expr/ClauseExpression.scala|   8 +
 .../rule/dsl/parser/GriffinDslParser.scala  |   9 +
 .../measure/rule/plan/MetricExport.scala|   8 +-
 .../measure/rule/plan/RecordExport.scala|   9 +-
 .../griffin/measure/rule/plan/RuleExport.scala  |   8 +
 .../_distinctness-batch-griffindsl.json |  57 
 .../_distinctness-batch-griffindsl1.json|  73 
 .../_distinctness-streaming-griffindsl.json |  85 +
 .../resources/_profiling-batch-griffindsl.json  |   4 +-
 measure/src/test/resources/dupdata.avro | Bin 0 -> 304 bytes
 measure/src/test/resources/empty.avro   | Bin 0 -> 215 bytes
 43 files changed, 1396 insertions(+), 690 deletions(-)
--




[12/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/198b5933
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/198b5933
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/198b5933

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 198b59339ef9163f66527fbd430a7c211d2140d7
Parents: 8fbd024 fb569ad
Author: Lionel Liu 
Authored: Tue Jan 30 10:35:20 2018 +0800
Committer: Lionel Liu 
Committed: Tue Jan 30 10:35:20 2018 +0800

--
 .../measure/create-measure/ac/ac.component.html   | 16 
 .../app/measure/create-measure/ac/ac.component.ts | 11 +++
 .../configuration/configuration.component.css | 10 +-
 .../configuration/configuration.component.html| 13 +
 .../configuration/configuration.component.ts  | 13 +
 .../measure/create-measure/pr/pr.component.html   | 18 +-
 .../app/measure/create-measure/pr/pr.component.ts |  5 +
 .../measure-detail/measure-detail.component.html  | 16 
 .../measure-detail/measure-detail.component.ts|  6 +-
 9 files changed, 101 insertions(+), 7 deletions(-)
--




[25/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/e72cea84
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/e72cea84
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/e72cea84

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: e72cea84e28f67b5e72bb24deb41f4919fd97f7e
Parents: 6ef8764 fdcd7f7
Author: Lionel Liu 
Authored: Wed Feb 7 16:18:52 2018 +0800
Committer: Lionel Liu 
Committed: Wed Feb 7 16:18:52 2018 +0800

--
 griffin-doc/docker/griffin-docker-guide.md |  2 +-
 .../org/apache/griffin/core/job/JobInstance.java   | 17 -
 .../apache/griffin/core/job/JobServiceImpl.java|  2 +-
 .../apache/griffin/core/job/SparkSubmitJob.java| 14 +++---
 .../griffin/core/job/entity/JobDataSegment.java|  2 +-
 .../griffin/core/job/entity/JobSchedule.java   |  6 +++---
 .../griffin/core/measure/entity/DataConnector.java |  2 +-
 .../org/apache/griffin/core/util/TimeUtil.java |  4 ++--
 8 files changed, 24 insertions(+), 25 deletions(-)
--




[44/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/799c4431
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/799c4431
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/799c4431

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 799c4431acfda1d26b791c7a94698eb28ed90533
Parents: 837591c 9ae7868
Author: Lionel Liu 
Authored: Thu Mar 22 16:30:22 2018 +0800
Committer: Lionel Liu 
Committed: Thu Mar 22 16:30:22 2018 +0800

--
 .../measure/config/params/env/SparkParam.scala   |  5 -
 .../griffin/measure/process/StreamingDqProcess.scala | 15 ---
 measure/src/test/resources/env-test.json |  3 ++-
 3 files changed, 18 insertions(+), 5 deletions(-)
--




[40/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/f00fc4e4
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/f00fc4e4
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/f00fc4e4

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: f00fc4e40e44099e34c450a33f512472ab118881
Parents: 57df929 fe3cde1
Author: Lionel Liu 
Authored: Tue Mar 6 18:33:45 2018 +0800
Committer: Lionel Liu 
Committed: Tue Mar 6 18:33:45 2018 +0800

--
 .../measure/process/temp/DataFrameCaches.scala| 18 ++
 1 file changed, 18 insertions(+)
--




[27/50] incubator-griffin git commit: Merge branch 'master' of https://github.com/apache/incubator-griffin into apache-master

2018-03-29 Thread guoyp
Merge branch 'master' of https://github.com/apache/incubator-griffin into 
apache-master


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/41d37946
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/41d37946
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/41d37946

Branch: refs/heads/griffin-0.2.0-incubating-rc2
Commit: 41d3794698e6c2e82c2a216c0ea972ba0ea6ba99
Parents: b4c2d36 3a5746e
Author: Lionel Liu 
Authored: Wed Feb 7 18:46:41 2018 +0800
Committer: Lionel Liu 
Committed: Wed Feb 7 18:46:41 2018 +0800

--
 .../measure/rule/trans/DistinctnessRulePlanTrans.scala| 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)
--




  1   2   >