[GitHub] incubator-griffin pull request #452: [GRIFFIN-209] update param util, add UT...

2018-11-13 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/452

[GRIFFIN-209] update param util, add UT for param util



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin param-util

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/452.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #452


commit f60106a957289b2e09fd50ae5453755c366376ea
Author: Lionel Liu 
Date:   2018-11-13T13:58:06Z

[GRIFFIN-209] update param util, add UT for param util




---


[GitHub] incubator-griffin pull request #448: [GRIFFIN-208] log exception details whe...

2018-10-26 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on a diff in the pull request:

https://github.com/apache/incubator-griffin/pull/448#discussion_r228469933
  
--- Diff: 
measure/src/main/scala/org/apache/griffin/measure/Application.scala ---
@@ -104,12 +106,16 @@ object Application extends Loggable {
   case Success(_) =>
 info("process end success")
   case Failure(ex) =>
-error(s"process end error: ${ex.getMessage}")
+error(s"process end error: ${ex.getMessage}", ex)
 shutdown
 sys.exit(-5)
 }
 
 shutdown
+
+if (!success) {
+  sys.exit(-5)
+}
--- End diff --

If any rule step fails, explicitly break down the application can let the 
spark application shut down with a FAILED state. It makes sense.
Actually, we can think about how to get the job state. Through livy or 
yarn, we can only get the lifecycle state of spark job, we still need to check 
logs to address the detailed error, and it would be much more difficult for 
common users. We can define some job states in calculation, like `starting`, 
`loading data source`, `pre-processing`, `rule step N success`, and let spark 
job report its state by configured notify method like http request to service 
side or something else. In such a way, service can manage states of job 
instances.

I think job state management is the final solution, explicitly exit the 
application could work as a temporary solution at current.


---


[GitHub] incubator-griffin pull request #442: Support "cache" field on rules in servi...

2018-10-25 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on a diff in the pull request:

https://github.com/apache/incubator-griffin/pull/442#discussion_r228215711
  
--- Diff: 
service/src/main/java/org/apache/griffin/core/measure/entity/Rule.java ---
@@ -81,6 +81,9 @@ Licensed to the Apache Software Foundation (ASF) under one
 @Column(name = "\"out\"")
 private String out;
 
+@JsonInclude(JsonInclude.Include.NON_NULL)
--- End diff --

This parameter `cache` in rule configuration indicates spark will cache the 
output data frame, to avoid redundant calculation of the same data frame if it 
is used twice or more. 
In "griffin-dsl" mode, the rule will be translated internally, and the 
`cache` parameter would be filled by the translator. That's why it only works 
in "spark-sql" and "df-ops" mode.
In the current versions, UI doesn't support user defined "spark-sql" rules 
or "df-ops" rules, the `cache` parameter seems confusing for users either. But 
if we want to support user defined "spark-sql" rules, no matter through UI or 
service, it would be better to make the parameters configurable. It's ok to set 
it optional, I prefer to set it `false` by default.


---


[GitHub] incubator-griffin pull request #438: update measure documents

2018-10-15 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/438

update measure documents



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin doc-update

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/438.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #438


commit d7fe97fb600c7887c296fbac6e09f97ac87a44ac
Author: Lionel Liu 
Date:   2018-10-15T08:37:43Z

update measure documents




---


[GitHub] incubator-griffin pull request #434: Griffin-205: accuracy matched fraction

2018-10-13 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on a diff in the pull request:

https://github.com/apache/incubator-griffin/pull/434#discussion_r224957455
  
--- Diff: 
measure/src/main/scala/org/apache/griffin/measure/step/builder/dsl/transform/AccuracyExpr2DQSteps.scala
 ---
@@ -125,14 +126,20 @@ case class AccuracyExpr2DQSteps(context: DQContext,
   // 4. accuracy metric
   val accuracyTableName = ruleParam.getOutDfName()
   val matchedColName = details.getStringOrKey(_matched)
+  val matchedFractionColName = details.getStringOrKey(_matchedFraction)
--- End diff --

As I know, UI calculates the matched fraction by total and matched count, 
in ES the metrics are just persisted in JSON format, it's OK to add a field 
here.


---


[GitHub] incubator-griffin-site pull request #11: update committer list and contribut...

2018-10-09 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin-site/pull/11

update committer list and contributor list



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin-site update-list

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin-site/pull/11.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #11


commit 23fc9245e7bfd3657a7f3cc95bdf5c2d5e614cf7
Author: Lionel Liu 
Date:   2018-10-10T02:56:49Z

update committer list and contributor list




---


[GitHub] incubator-griffin issue #431: [GRIFFIN-195] Don't list all tables from UI

2018-10-07 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on the issue:

https://github.com/apache/incubator-griffin/pull/431
  
Cool, seems good to me, I can merge it now.


---


[GitHub] incubator-griffin issue #431: [GRIFFIN-195] Don't list all tables from UI

2018-10-07 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on the issue:

https://github.com/apache/incubator-griffin/pull/431
  
I've tested this PR, the filtering feature works good, but only in 
profiling creation step. Would you add it in accuracy creation steps as well?


---


[GitHub] incubator-griffin issue #420: Fix doc issue.

2018-10-07 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on the issue:

https://github.com/apache/incubator-griffin/pull/420
  
Thanks @toyboxman , we can merge this PR.


---


[GitHub] incubator-griffin issue #420: Fix doc issue.

2018-09-27 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on the issue:

https://github.com/apache/incubator-griffin/pull/420
  
Actually, Distinctness fits more use cases in common, I prefer to keep 
Distinctness other than Uniqueness.


---


[GitHub] incubator-griffin-site pull request #9: profiling

2018-09-18 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin-site/pull/9

profiling



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin-site profiling

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin-site/pull/9.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #9


commit ce45b1dd3fbf6f9cf18c5995ab5d6cfcaa37827e
Author: Lionel Liu 
Date:   2018-09-18T07:33:57Z

profiling




---


[GitHub] incubator-griffin-site pull request #8: streaming use case

2018-09-17 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin-site/pull/8

streaming use case



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin-site streaming

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin-site/pull/8.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #8


commit 6b5057a354098eaf0054a9a46714b44681c2cc18
Author: Lionel Liu 
Date:   2018-09-18T02:41:00Z

streaming use case




---


[GitHub] incubator-griffin-site pull request #5: update quickstart

2018-09-13 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin-site/pull/5

update quickstart



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin-site quickstart

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin-site/pull/5.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #5


commit 7c926c570c7c2b70055cc028c264ba54eab7a9ff
Author: Lionel Liu 
Date:   2018-09-14T01:20:42Z

update quickstart




---


[GitHub] incubator-griffin issue #409: Support for HDP

2018-09-04 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on the issue:

https://github.com/apache/incubator-griffin/pull/409
  
I've tested the code, it works in docker.
"X-Requested-By" could be set as any value, is it appropriate to hardcode 
it as "admin"?


---


[GitHub] incubator-griffin pull request #408: update docker document for zookeeper im...

2018-09-03 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/408

update docker document for zookeeper image unaccessable in china



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin docker-doc

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/408.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #408


commit 9199da136823a02398742a0935308c957bc2948c
Author: Lionel Liu 
Date:   2018-09-03T06:10:28Z

update docker document for zookeeper image unaccessable in china




---


[GitHub] incubator-griffin pull request #403: update docker image source and docker c...

2018-08-29 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/403

update docker image source and docker compose file

we've transferred the docker image to docker hub of apachegriffin

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin docker-update

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/403.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #403


commit 06ec47ed95fb7c40770702c269e8429dfa002046
Author: Lionel Liu 
Date:   2018-08-29T07:27:08Z

update docker image source and docker compose file




---


[GitHub] incubator-griffin pull request #400: fix bugs of measure and service module ...

2018-08-22 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/400

fix bugs of measure and service module for new json format



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin json-update-new

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/400.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #400


commit 6260e2bacc6fc55286e4a4e584e990a07a6a4b57
Author: Lionel Liu 
Date:   2018-08-22T07:39:51Z

fix bugs of measure and service module after json format update




---


[GitHub] incubator-griffin pull request #399: Fix bugs of measure and service module ...

2018-08-22 Thread bhlx3lyx7
Github user bhlx3lyx7 closed the pull request at:

https://github.com/apache/incubator-griffin/pull/399


---


[GitHub] incubator-griffin pull request #399: Fix bugs of measure and service module ...

2018-08-20 Thread bhlx3lyx7
GitHub user bhlx3lyx7 reopened a pull request:

https://github.com/apache/incubator-griffin/pull/399

Fix bugs of measure and service module after docker image test



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin json-update

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/399.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #399


commit d82489bb9cd934acd546a84700074d5e033d23e8
Author: Lionel Liu 
Date:   2017-06-08T08:26:57Z

log persist

commit c5a799372abd49209de9e5d9bacaf1e92ed0764e
Author: Lionel Liu 
Date:   2017-06-08T08:30:11Z

persist

commit b34048a52dbcc9a43bb60b724988adfd4f10d202
Author: Lionel Liu 
Date:   2017-06-12T01:57:49Z

Merge branch 'apache-master'

commit 07dc994caf1761e9c3fe4c915cbaee950cb060a0
Author: Lionel Liu 
Date:   2017-06-12T05:17:32Z

Merge branch 'apache-master'

commit caeae99f292cbaadabe08eebae163229eb9379d0
Author: Lionel Liu 
Date:   2017-06-13T04:53:12Z

Merge branch 'apache-master'

commit a4dae7351fd0295f3a523a56a62fe79b60049a63
Author: Lionel Liu 
Date:   2017-06-13T08:55:13Z

Merge branch 'apache-master'

commit 19177dfeb3fb79b21c3493dfc0378ee42f72b66e
Author: Lionel Liu 
Date:   2017-06-13T08:59:00Z

rm -0700

commit b01c2381b1a995774fb0e0b077f1d7670ccd7fd5
Author: Lionel Liu 
Date:   2017-06-14T01:26:28Z

Merge branch 'apache-master'

commit ca5631a64365f703476223b88f55067af5229537
Author: Lionel Liu 
Date:   2017-06-14T01:28:34Z

license of file

commit 930a1b15b3680590cf771454d3a1961725b6d315
Author: Lionel Liu 
Date:   2017-06-14T01:30:49Z

Merge branch 'apache-master'

commit 7ea177ae8ac39062914339131dd0cd7bd520c3cc
Author: Lionel Liu 
Date:   2017-06-14T06:46:22Z

Merge branch 'apache-master'

commit 1955bb741410077428745be52b87bfac416bdf70
Author: Lionel Liu 
Date:   2017-06-14T07:32:14Z

Merge branch 'apache-master'

commit e0acd70246ec84e94b824d4d8b25e9664406af76
Author: Lionel Liu 
Date:   2017-06-18T08:39:05Z

Merge branch 'apache-master'

commit 3163579df2330b60c530c6983de0b4bfe9bb03fa
Author: Lionel Liu 
Date:   2017-06-26T06:58:25Z

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

commit 4ac2128af80fdd8b4f6e3a790d884873f0a48175
Author: Lionel Liu 
Date:   2017-06-26T06:59:47Z

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

commit 296cdf5a85b2a313fd38943f6710669a79431a08
Author: Lionel Liu 
Date:   2017-06-26T07:00:08Z

Merge branch 'apache-master'

commit dae0c2ed1ff71aa896c0f13783dac493a803f775
Author: Lionel Liu 
Date:   2017-06-27T06:31:19Z

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

commit 71d9cbf3d7826a339afee23c47c1b200d0b03441
Author: Lionel Liu 
Date:   2017-06-27T06:32:16Z

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

commit b3504d330899444bab12912ba7346a7045ca6d69
Author: Lionel Liu 
Date:   2017-06-27T06:32:28Z

Merge branch 'apache-master'

commit 0b9b438c9f88dc43696bcdcd9ce132bae83bb4e7
Author: Lionel Liu 
Date:   2017-07-05T05:00:27Z

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

commit 6f65a5ebf3e548e2d5c1a675d1db108a895530fe
Author: Lionel Liu 
Date:   2017-07-05T05:00:53Z

Merge branch 'apache-master'

commit 4e4572c225b87dd1b025f0fd3acba2643113fa60
Author: Lionel Liu 
Date:   2017-09-15T09:45:15Z

Merge branch 'apache-master'

commit ffb818aa58ef9c330c0bb88731bac8f2975298d8
Author: Lionel Liu 
Date:   2017-10-11T07:38:32Z

ignore ui tmp

commit dba1602366ef9084a392d7ca61e6e719827ee208
Author: Lionel Liu 
Date:   2017-10-11T07:48:00Z

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

commit e980e6c48a4b4ad616c3209ccc69268250d87f30
Author: Lionel Liu 
Date:   2017-10-12T04:29:48Z

doc

commit cf849f478592bf7d1c102fc33c0a3aaacd0a3ab5
Author: Lionel Liu 
Date:   2017-10-12T04:49:37Z

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

commit 5cd047826016a8ba277c98a6cbc7978a3d2bc659
Author: Lionel Liu 
Date:   2017-10-13T06:46:44Z

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

commit 7edf6ff9bf8d460f3b68c1a068ac597d908d0eae
Author: Lionel Liu 
Date:   2017-10-16T02:21:33Z

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

commit 673b717765b5a1e3fbc566cff190c4e9b615159e
Author: Lionel Liu 
Date:   2017-10-16T05:25:11Z

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

commit daecbfc69aefe484d2c9cc72f43571caafe8187e
Author: Lionel Liu

[GitHub] incubator-griffin pull request #399: Fix bugs of measure and service module ...

2018-08-20 Thread bhlx3lyx7
Github user bhlx3lyx7 closed the pull request at:

https://github.com/apache/incubator-griffin/pull/399


---


[GitHub] incubator-griffin issue #396: set the fields in configuration classes privat...

2018-08-20 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on the issue:

https://github.com/apache/incubator-griffin/pull/396
  
I think we can merge this PR now.


---


[GitHub] incubator-griffin pull request #396: set the fields in configuration classes...

2018-08-20 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on a diff in the pull request:

https://github.com/apache/incubator-griffin/pull/396#discussion_r211293186
  
--- Diff: 
measure/src/main/scala/org/apache/griffin/measure/datasource/connector/DataConnectorFactory.scala
 ---
@@ -91,11 +91,12 @@ object DataConnectorFactory extends Loggable {
): KafkaStreamingDataConnector  = {
 val KeyType = "key.type"
 val ValueType = "value.type"
-val config = dcParam.config
+val config = dcParam.getConfig
 val keyType = config.getOrElse(KeyType, "java.lang.String").toString
 val valueType = config.getOrElse(ValueType, 
"java.lang.String").toString
-(getClassTag(keyType), getClassTag(valueType)) match {
-  case (ClassTag(k: Class[String]), ClassTag(v: Class[String])) => {
+
+(keyType, valueType) match {
+  case ("java.lang.String", "java.lang.String") => {
 KafkaStreamingStringDataConnector(sparkSession, ssc, dcParam, 
tmstCache, streamingCacheClientOpt)
--- End diff --

OK, I think you're right, it will be better to match with string here.


---


[GitHub] incubator-griffin pull request #399: Fix bugs of measure and service module ...

2018-08-20 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/399

Fix bugs of measure and service module after docker image test



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin json-update

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/399.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #399


commit d82489bb9cd934acd546a84700074d5e033d23e8
Author: Lionel Liu 
Date:   2017-06-08T08:26:57Z

log persist

commit c5a799372abd49209de9e5d9bacaf1e92ed0764e
Author: Lionel Liu 
Date:   2017-06-08T08:30:11Z

persist

commit b34048a52dbcc9a43bb60b724988adfd4f10d202
Author: Lionel Liu 
Date:   2017-06-12T01:57:49Z

Merge branch 'apache-master'

commit 07dc994caf1761e9c3fe4c915cbaee950cb060a0
Author: Lionel Liu 
Date:   2017-06-12T05:17:32Z

Merge branch 'apache-master'

commit caeae99f292cbaadabe08eebae163229eb9379d0
Author: Lionel Liu 
Date:   2017-06-13T04:53:12Z

Merge branch 'apache-master'

commit a4dae7351fd0295f3a523a56a62fe79b60049a63
Author: Lionel Liu 
Date:   2017-06-13T08:55:13Z

Merge branch 'apache-master'

commit 19177dfeb3fb79b21c3493dfc0378ee42f72b66e
Author: Lionel Liu 
Date:   2017-06-13T08:59:00Z

rm -0700

commit b01c2381b1a995774fb0e0b077f1d7670ccd7fd5
Author: Lionel Liu 
Date:   2017-06-14T01:26:28Z

Merge branch 'apache-master'

commit ca5631a64365f703476223b88f55067af5229537
Author: Lionel Liu 
Date:   2017-06-14T01:28:34Z

license of file

commit 930a1b15b3680590cf771454d3a1961725b6d315
Author: Lionel Liu 
Date:   2017-06-14T01:30:49Z

Merge branch 'apache-master'

commit 7ea177ae8ac39062914339131dd0cd7bd520c3cc
Author: Lionel Liu 
Date:   2017-06-14T06:46:22Z

Merge branch 'apache-master'

commit 1955bb741410077428745be52b87bfac416bdf70
Author: Lionel Liu 
Date:   2017-06-14T07:32:14Z

Merge branch 'apache-master'

commit e0acd70246ec84e94b824d4d8b25e9664406af76
Author: Lionel Liu 
Date:   2017-06-18T08:39:05Z

Merge branch 'apache-master'

commit 3163579df2330b60c530c6983de0b4bfe9bb03fa
Author: Lionel Liu 
Date:   2017-06-26T06:58:25Z

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

commit 4ac2128af80fdd8b4f6e3a790d884873f0a48175
Author: Lionel Liu 
Date:   2017-06-26T06:59:47Z

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

commit 296cdf5a85b2a313fd38943f6710669a79431a08
Author: Lionel Liu 
Date:   2017-06-26T07:00:08Z

Merge branch 'apache-master'

commit dae0c2ed1ff71aa896c0f13783dac493a803f775
Author: Lionel Liu 
Date:   2017-06-27T06:31:19Z

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

commit 71d9cbf3d7826a339afee23c47c1b200d0b03441
Author: Lionel Liu 
Date:   2017-06-27T06:32:16Z

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

commit b3504d330899444bab12912ba7346a7045ca6d69
Author: Lionel Liu 
Date:   2017-06-27T06:32:28Z

Merge branch 'apache-master'

commit 0b9b438c9f88dc43696bcdcd9ce132bae83bb4e7
Author: Lionel Liu 
Date:   2017-07-05T05:00:27Z

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

commit 6f65a5ebf3e548e2d5c1a675d1db108a895530fe
Author: Lionel Liu 
Date:   2017-07-05T05:00:53Z

Merge branch 'apache-master'

commit 4e4572c225b87dd1b025f0fd3acba2643113fa60
Author: Lionel Liu 
Date:   2017-09-15T09:45:15Z

Merge branch 'apache-master'

commit ffb818aa58ef9c330c0bb88731bac8f2975298d8
Author: Lionel Liu 
Date:   2017-10-11T07:38:32Z

ignore ui tmp

commit dba1602366ef9084a392d7ca61e6e719827ee208
Author: Lionel Liu 
Date:   2017-10-11T07:48:00Z

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

commit e980e6c48a4b4ad616c3209ccc69268250d87f30
Author: Lionel Liu 
Date:   2017-10-12T04:29:48Z

doc

commit cf849f478592bf7d1c102fc33c0a3aaacd0a3ab5
Author: Lionel Liu 
Date:   2017-10-12T04:49:37Z

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

commit 5cd047826016a8ba277c98a6cbc7978a3d2bc659
Author: Lionel Liu 
Date:   2017-10-13T06:46:44Z

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

commit 7edf6ff9bf8d460f3b68c1a068ac597d908d0eae
Author: Lionel Liu 
Date:   2017-10-16T02:21:33Z

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

commit 673b717765b5a1e3fbc566cff190c4e9b615159e
Author: Lionel Liu 
Date:   2017-10-16T05:25:11Z

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

commit daecbfc69aefe484d2c9cc72f43571caafe8187e
Author: Lionel Liu

[GitHub] incubator-griffin pull request #396: set the fields in configuration classes...

2018-08-17 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on a diff in the pull request:

https://github.com/apache/incubator-griffin/pull/396#discussion_r210843748
  
--- Diff: 
measure/src/main/scala/org/apache/griffin/measure/step/builder/dsl/expr/TreeNode.scala
 ---
@@ -18,28 +18,42 @@ under the License.
 */
 package org.apache.griffin.measure.step.builder.dsl.expr
 
+import scala.reflect.ClassTag
+
 trait TreeNode extends Serializable {
 
   var children = Seq[TreeNode]()
 
   def addChild(expr: TreeNode) = { children :+= expr }
   def addChildren(exprs: Seq[TreeNode]) = { children ++= exprs }
 
-  def preOrderTraverseDepthFirst[T, A <: TreeNode](z: T)(seqOp: (A, T) => 
T, combOp: (T, T) => T): T = {
-if (this.isInstanceOf[A]) {
-  val tv = seqOp(this.asInstanceOf[A], z)
-  children.foldLeft(combOp(z, tv)) { (ov, tn) =>
-combOp(ov, tn.preOrderTraverseDepthFirst(z)(seqOp, combOp))
+  def preOrderTraverseDepthFirst[T, A <: TreeNode](z: T)(seqOp: (A, T) => 
T, combOp: (T, T) => T)(implicit tag: ClassTag[A]): T = {
+
+val clazz = tag.runtimeClass
+
+this.getClass match {
+  case `clazz` => {
--- End diff --

The code means this.getClass and T must be the same class. But in the 
usage, it traverses among different types of tree nodes, their concrete classes 
can't be matched to their parent class, which is not what we want.
I doubt the modification of this file will destroy the process, I suggest 
you write a unit test for this.


---


[GitHub] incubator-griffin pull request #396: set the fields in configuration classes...

2018-08-17 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on a diff in the pull request:

https://github.com/apache/incubator-griffin/pull/396#discussion_r210831681
  
--- Diff: 
measure/src/main/scala/org/apache/griffin/measure/datasource/connector/DataConnector.scala
 ---
@@ -33,7 +33,7 @@ import org.apache.spark.sql.functions._
 
 trait DataConnector extends Loggable with Serializable {
 
-  @transient val sparkSession: SparkSession
+  val sparkSession: SparkSession
--- End diff --

SparkSession is Serializable, so it should works here.


---


[GitHub] incubator-griffin pull request #396: set the fields in configuration classes...

2018-08-17 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on a diff in the pull request:

https://github.com/apache/incubator-griffin/pull/396#discussion_r210831530
  
--- Diff: 
measure/src/main/scala/org/apache/griffin/measure/datasource/connector/DataConnectorFactory.scala
 ---
@@ -91,11 +91,12 @@ object DataConnectorFactory extends Loggable {
): KafkaStreamingDataConnector  = {
 val KeyType = "key.type"
 val ValueType = "value.type"
-val config = dcParam.config
+val config = dcParam.getConfig
 val keyType = config.getOrElse(KeyType, "java.lang.String").toString
 val valueType = config.getOrElse(ValueType, 
"java.lang.String").toString
-(getClassTag(keyType), getClassTag(valueType)) match {
-  case (ClassTag(k: Class[String]), ClassTag(v: Class[String])) => {
+
+(keyType, valueType) match {
+  case ("java.lang.String", "java.lang.String") => {
 KafkaStreamingStringDataConnector(sparkSession, ssc, dcParam, 
tmstCache, streamingCacheClientOpt)
--- End diff --

I think match with literal string is too strong with limitation, why not 
match with the class type?


---


[GitHub] incubator-griffin issue #393: Update deploy-guide.md

2018-08-17 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on the issue:

https://github.com/apache/incubator-griffin/pull/393
  
seems to be updated with latest versions, thanks @SparshSinghalHM 


---


[GitHub] incubator-griffin issue #389: update measure field to support new format and...

2018-08-09 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on the issue:

https://github.com/apache/incubator-griffin/pull/389
  
OK, I have no problem about this.


---


[GitHub] incubator-griffin pull request #389: update measure field to support new for...

2018-08-09 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on a diff in the pull request:

https://github.com/apache/incubator-griffin/pull/389#discussion_r209132757
  
--- Diff: 
service/src/main/java/org/apache/griffin/core/job/JobServiceImpl.java ---
@@ -551,18 +551,19 @@ public String getJobHdfsPersistPath(String jobName, 
long timestamp) {
 return null;
 }
 if (jobList.get(0).getType().toLowerCase().equals("batch")) {
-return getPersistPath(ENV_BATCH) + "/" + jobName + "/" + 
timestamp + "";
+return getSinksPath(ENV_BATCH) + "/" + jobName + "/" + 
timestamp + "";
 }
 
-return getPersistPath(ENV_STREAMING) + "/" + jobName + "/" + 
timestamp + "";
+return getSinksPath(ENV_STREAMING) + "/" + jobName + "/" + 
timestamp + "";
 }
 
-private String getPersistPath(String jsonString) {
+private String getSinksPath(String jsonString) {
 try {
 JSONObject obj = new JSONObject(jsonString);
 JSONArray persistArray = obj.getJSONArray("persist");
--- End diff --

"persist" should change to "sinks" for the new format of env.json


---


[GitHub] incubator-griffin pull request #389: update measure field to support new for...

2018-08-09 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on a diff in the pull request:

https://github.com/apache/incubator-griffin/pull/389#discussion_r209130221
  
--- Diff: service/src/main/resources/env/env_streaming.json ---
@@ -3,10 +3,10 @@
 "log.level": "WARN",
 "checkpoint.dir": "hdfs:///griffin/checkpoint/${JOB_NAME}",
 "init.clear": true,
-"batch.interval": "30s",
-"process.interval": "3m",
+"batch.interval": "2s",
+"process.interval": "10s",
 "config": {
-  "spark.default.parallelism": 4,
--- End diff --

I prefer keep this line


---


[GitHub] incubator-griffin pull request #389: update measure field to support new for...

2018-08-09 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on a diff in the pull request:

https://github.com/apache/incubator-griffin/pull/389#discussion_r209132142
  
--- Diff: 
service/src/main/java/org/apache/griffin/core/measure/entity/Rule.java ---
@@ -49,14 +45,18 @@ Licensed to the Apache Software Foundation (ASF) under 
one
 @NotNull
 private String dslType;
--- End diff --

I suggest set dslType as enum too, containing "spark-sql", "df-ops" and 
"griffin-dsl"


---


[GitHub] incubator-griffin pull request #389: update measure field to support new for...

2018-08-09 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on a diff in the pull request:

https://github.com/apache/incubator-griffin/pull/389#discussion_r209129596
  
--- Diff: service/src/main/resources/env/env_streaming.json ---
@@ -3,10 +3,10 @@
 "log.level": "WARN",
 "checkpoint.dir": "hdfs:///griffin/checkpoint/${JOB_NAME}",
 "init.clear": true,
-"batch.interval": "30s",
-"process.interval": "3m",
+"batch.interval": "2s",
+"process.interval": "10s",
 "config": {
-  "spark.default.parallelism": 4,
+  "spark.master": "local[*]",
--- End diff --

this line should be removed


---


[GitHub] incubator-griffin pull request #389: update measure field to support new for...

2018-08-09 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on a diff in the pull request:

https://github.com/apache/incubator-griffin/pull/389#discussion_r209130016
  
--- Diff: service/src/main/resources/env/env_streaming.json ---
@@ -3,10 +3,10 @@
 "log.level": "WARN",
 "checkpoint.dir": "hdfs:///griffin/checkpoint/${JOB_NAME}",
 "init.clear": true,
-"batch.interval": "30s",
-"process.interval": "3m",
+"batch.interval": "2s",
+"process.interval": "10s",
--- End diff --

I suggest configure like this:
```
"batch.interval": "1m",
"process.interval": "5m",
```



---


[GitHub] incubator-griffin pull request #389: update measure field to support new for...

2018-08-09 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on a diff in the pull request:

https://github.com/apache/incubator-griffin/pull/389#discussion_r209130355
  
--- Diff: service/src/main/resources/env/env_streaming.json ---
@@ -17,40 +17,40 @@
   "spark.hadoop.fs.hdfs.impl.disable.cache": true
 }
   },
-  "persist": [
+  "sinks": [
 {
-  "type": "log",
+  "type": "CONSOLE",
   "config": {
-"max.log.lines": 2
+"max.log.lines": 100
   }
 },
 {
-  "type": "hdfs",
+  "type": "HDFS",
   "config": {
-"path": "hdfs:///griffin/persist"
+"path": "hdfs:///griffin/persist",
+"max.persist.lines": 1,
+"max.lines.per.file": 1
   }
 },
 {
-  "type": "http",
+  "type": "ELASTICSEARCH",
   "config": {
 "method": "post",
 "api": "http://es:9200/griffin/accuracy;
   }
 }
   ],
-  "info.cache": [
+  "griffin.checkpoint": [
 {
   "type": "zk",
   "config": {
 "hosts": "zk:2181",
 "namespace": "griffin/infocache",
 "lock.path": "lock",
 "mode": "persist",
-"init.clear": false,
+"init.clear": true,
--- End diff --

should configure "init.clear" as false for production usage.


---


[GitHub] incubator-griffin pull request #389: update measure field to support new for...

2018-08-09 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on a diff in the pull request:

https://github.com/apache/incubator-griffin/pull/389#discussion_r209127874
  
--- Diff: 
service/src/main/java/org/apache/griffin/core/job/entity/JobDataSegment.java ---
@@ -43,19 +43,19 @@ Licensed to the Apache Software Foundation (ASF) under 
one
 @NotNull
 private String dataConnectorName;
 
-private boolean baseline = false;
+private boolean asTmsBaseline = false;
--- End diff --

I prefer the field name to be "asTsBaseline"


---


[GitHub] incubator-griffin pull request #389: update measure field to support new for...

2018-08-09 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on a diff in the pull request:

https://github.com/apache/incubator-griffin/pull/389#discussion_r209128145
  
--- Diff: 
service/src/main/java/org/apache/griffin/core/measure/entity/Measure.java ---
@@ -104,6 +129,26 @@ public void setDeleted(boolean deleted) {
 this.deleted = deleted;
 }
 
+@PrePersist
+@PreUpdate
+public void save() throws JsonProcessingException {
+if (sinksList != null) {
+this.sinks = JsonUtil.toJson(sinksList);
+} else {
+this.sinks = null;
+}
+}
+
+@PostLoad
+public void load() throws IOException {
+if (!StringUtils.isEmpty(sinks)) {
+this.sinksList = JsonUtil.toEntity(sinks, new 
TypeReference>>() {
--- End diff --

sinksList should be a `List`, why is it `List>` 
here?


---


[GitHub] incubator-griffin pull request #389: update measure field to support new for...

2018-08-09 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on a diff in the pull request:

https://github.com/apache/incubator-griffin/pull/389#discussion_r209129552
  
--- Diff: service/src/main/resources/env/env_batch.json ---
@@ -1,55 +1,34 @@
 {
   "spark": {
 "log.level": "WARN",
-"checkpoint.dir": "hdfs:///griffin/checkpoint/${JOB_NAME}",
-"batch.interval": "20s",
-"process.interval": "1m",
 "config": {
-  "spark.default.parallelism": 4,
-  "spark.task.maxFailures": 5,
-  "spark.streaming.kafkaMaxRatePerPartition": 1000,
-  "spark.streaming.concurrentJobs": 4,
-  "spark.yarn.maxAppAttempts": 5,
-  "spark.yarn.am.attemptFailuresValidityInterval": "1h",
-  "spark.yarn.max.executor.failures": 120,
-  "spark.yarn.executor.failuresValidityInterval": "1h",
-  "spark.hadoop.fs.hdfs.impl.disable.cache": true
+  "spark.master": "local[*]"
--- End diff --

this line should be removed, you can also remove the whole "config" field 
here


---


[GitHub] incubator-griffin pull request #382: Modify measure module to support update...

2018-08-02 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/382

Modify measure module to support updated env and config json files format

Some important modification in env.json
- "info.cache" -> "griffin.checkpoint"
- "persist" -> "sinks"
- "log" -> "console"
- "http" -> "elasticsearch"
- remove "cleaner"

Some important modiffication in dq.json
- add "baseline" in data source
- add "dataframe.name" in data connector
- in data source,"cache" -> "checkpoint"
- in rule and pre-proc rule, add "in.dataframe.name" and 
"out.dataframe.name", remove "name"
- in rule, add "out" param array, move "metric", "record" param inside 
"out" array
- add "sinks" string array as filter of sinks in env.json

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin json-update

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/382.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #382


commit ffb818aa58ef9c330c0bb88731bac8f2975298d8
Author: Lionel Liu 
Date:   2017-10-11T07:38:32Z

ignore ui tmp

commit dba1602366ef9084a392d7ca61e6e719827ee208
Author: Lionel Liu 
Date:   2017-10-11T07:48:00Z

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

commit e980e6c48a4b4ad616c3209ccc69268250d87f30
Author: Lionel Liu 
Date:   2017-10-12T04:29:48Z

doc

commit cf849f478592bf7d1c102fc33c0a3aaacd0a3ab5
Author: Lionel Liu 
Date:   2017-10-12T04:49:37Z

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

commit 5cd047826016a8ba277c98a6cbc7978a3d2bc659
Author: Lionel Liu 
Date:   2017-10-13T06:46:44Z

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

commit 7edf6ff9bf8d460f3b68c1a068ac597d908d0eae
Author: Lionel Liu 
Date:   2017-10-16T02:21:33Z

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

commit 673b717765b5a1e3fbc566cff190c4e9b615159e
Author: Lionel Liu 
Date:   2017-10-16T05:25:11Z

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

commit daecbfc69aefe484d2c9cc72f43571caafe8187e
Author: Lionel Liu 
Date:   2017-10-16T08:46:53Z

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

commit e71a1c56ae074ae1de9472edcdbf11c5e3a2d4c1
Author: Lionel Liu 
Date:   2017-10-17T04:57:10Z

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

commit 46c2a4fccc6a83d12557b07cb72c740d19d5b529
Author: Lionel Liu 
Date:   2017-10-25T03:23:53Z

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

commit 6c3cea1f96d8dbc694b76eec2ef52be8ed1b4ae6
Author: Lionel Liu 
Date:   2017-10-30T06:02:22Z

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

commit 243ec9a4006de7fbe14c39be7eea9cd74b3d13fc
Author: Lionel Liu 
Date:   2017-10-30T06:24:23Z

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

commit 0c82eeb22c133b360f48cc29baf8678fb32070c3
Author: Lionel Liu 
Date:   2017-10-30T06:55:18Z

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

commit 106849794fc4b84adb89bced411711d6a69731ac
Author: Lionel Liu 
Date:   2017-10-30T08:17:46Z

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

commit f307409ebd3f1a0a806204ccf2d5fd56b2309284
Author: Lionel Liu 
Date:   2017-10-30T08:43:53Z

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

commit 9af0f041e918e8d481a09cf407b57b109a8f07b7
Author: Lionel Liu 
Date:   2017-10-31T10:11:41Z

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

commit 8bc6c41f87b167d9fed3ac81fbd51d730d37a087
Author: Lionel Liu 
Date:   2017-11-02T06:36:34Z

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

commit 712b2b58d323553a2d3b1304145ed9970b459582
Author: Lionel Liu 
Date:   2017-11-02T06:41:35Z

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

commit 02c48c600f70487b601d1b585d7ce617e035bdfe
Author: Lionel Liu 
Date:   2017-11-02T09:40:27Z

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

commit 10d35083ad192639b9a6f2e53562c0d4827c14e7
Au

[GitHub] incubator-griffin issue #381: GRIFFIN-164 GRIFFIN-186 GRIFFIN-187: Profiling...

2018-08-01 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on the issue:

https://github.com/apache/incubator-griffin/pull/381
  
I've reviewed the code for GRIFFIN-164, which seems good.


---


[GitHub] incubator-griffin pull request #349: head option optimize

2018-07-12 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/349

head option optimize



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin spark2

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/349.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #349


commit 5d39a543214d83ab9d2293169be9cadbd55049a8
Author: Lionel Liu 
Date:   2018-02-09T03:59:42Z

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

commit 232279453173da7a5f6f42fe832558035d58f975
Author: Lionel Liu 
Date:   2018-02-09T04:00:00Z

Merge branch 'apache-master' into tmst

commit 925d508fd53d689596b675c21195a5899b6341cd
Author: Lionel Liu 
Date:   2018-02-09T09:59:45Z

fix bug of data connector

commit c06caa915b787c73d7340c72d076a9d33973c63f
Author: Lionel Liu 
Date:   2018-02-09T11:01:07Z

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

commit 169a47b9690a2be165dac30628af831b5d461247
Author: Lionel Liu 
Date:   2018-02-12T02:52:26Z

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

commit eedd1d48de7d34d8845600c7f90ce477b1b32814
Author: Lionel Liu 
Date:   2018-02-12T02:56:09Z

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

commit b3d7da250e255a589bae659381e56feaf660e2c5
Author: Lionel Liu 
Date:   2018-02-12T02:56:17Z

Merge branch 'apache-master' into tmst

commit a69ed8f3c92f8ece17d35dfd12b9d1806b829fb8
Author: Lionel Liu 
Date:   2018-02-12T05:59:38Z

version 0.2.0

commit 06ce9dad4cd4d8d9197f007b7303da4e64504090
Author: Lionel Liu 
Date:   2018-02-12T07:38:16Z

prof root path done

commit 897c30975ce448d46318e8042a35fc1c019fb7b4
Author: Lionel Liu 
Date:   2018-02-12T07:57:09Z

create job: range with time unit

commit 40b9bb239f495a74ed1788550766d11984e86b9e
Author: Lionel Liu 
Date:   2018-02-12T08:32:35Z

create job: begin and length with unit when submit job

commit 6d684017f1269980202734112ec91507b6bc000f
Author: Lionel Liu 
Date:   2018-02-12T08:40:37Z

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

commit fb7b1c391712e33bf7a698005a16344ebaf8635f
Author: Lionel Liu 
Date:   2018-02-12T08:40:55Z

Merge branch 'apache-master' into tmst

commit 7b7babf5f1d14e28c8aa852014bcac3e54418b31
Author: Lionel Liu 
Date:   2018-02-12T09:21:24Z

fix bug of get metrics

commit 4342c6d8c2a9d120e4729ec143daa546c25fed97
Author: Lionel Liu 
Date:   2018-02-12T09:24:59Z

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

commit 8ff0e669108b6bd0cfac8ced7b247440e4594520
Author: Lionel Liu 
Date:   2018-02-12T09:25:23Z

Merge branch 'apache-master' into tmst

commit bd3e6e468c0ad2b46d2499f0e2ced4a341a0285a
Author: Lionel Liu 
Date:   2018-02-26T01:49:16Z

dist fix bug

commit cf7f8e80563ad026c2f762bbca4007302f8cc402
Author: Lionel Liu 
Date:   2018-02-26T02:27:59Z

remove distinct batch griffindsl json 2

commit f7a0b3fb7c18289ed3d3827f8e6a587d2d4f90fb
Author: Lionel Liu 
Date:   2018-02-27T03:09:38Z

docker compose

commit 5567c674edc93a0f28c75c748d8639fdb43673dc
Author: Lionel Liu 
Date:   2018-02-27T08:16:02Z

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

commit e2df9f566caa7e9c57e915da52381aca1cd9d9a2
Author: Lionel Liu 
Date:   2018-02-27T08:16:13Z

Merge branch 'apache-master' into tmst

commit e7a9c5d721e0cca9f6b97741824b9734e7cdf31f
Author: Lionel Liu 
Date:   2018-03-01T08:46:49Z

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

commit 25cdce972a3756e9eddc9c6cc45bb7528c53e195
Author: Lionel Liu 
Date:   2018-03-01T08:48:24Z

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

commit 1e3618b398606293ea49bc5f9fcc065f923f6c69
Author: Lionel Liu 
Date:   2018-03-01T08:49:11Z

Merge branch 'apache-master' into tmst

commit f9c67491995ef7b6cb29c46f845f260c81ea56d9
Author: Lionel Liu 
Date:   2018-03-05T06:42:19Z

remove demo docker doc

commit d7281386589c1f39a6a0bde0499d8028a637c9be
Author: Lionel Liu 
Date:   2018-03-05T06:44:26Z

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

commit 67e3c29322ea26f3c65c58e51f1e3e6500dd206a
Author: Lionel Liu 
Date:   2018-03-05T06:45:27Z

Merge branch 'apache-master' into tmst

commit 745c944b2561e78964018539951e2f6e142a0115
Author: Lionel Liu 
Date:   2018-03-06T07:17:10Z

chart data timestamp

commit 57df9298e36dd1360a7189e9324b37dc4a020e1a
Author: Lionel Liu 
Date:   2018-03-06T07:19:22Z

[GitHub] incubator-griffin pull request #348: init quartz sql for h2 in test case

2018-07-12 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/348

init quartz sql for h2 in test case



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin spark2

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/348.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #348


commit 62ec88c9609686e1af093fb487a96f5af510e307
Author: Lionel Liu 
Date:   2018-02-07T10:46:51Z

Merge branch 'apache-master' into tmst

commit cb149ade1c374dbd07cffb69c1881a60fe8256d0
Author: Lionel Liu 
Date:   2018-02-08T07:22:41Z

json

commit f538b33db525c3d280d1af3516ea289fce8e7f8f
Author: Lionel Liu 
Date:   2018-02-08T07:42:33Z

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

commit bb03b7e99b742dad38340a860ec1e4dc9b7438fe
Author: Lionel Liu 
Date:   2018-02-08T08:23:01Z

Merge branch 'apache-master' into tmst

commit fb5045f393af97e4117ad82caa67addafdfbca89
Author: Lionel Liu 
Date:   2018-02-09T02:08:51Z

update version in docker doc

commit 555ec9fb3dabfd9b8bef53121f448b06ed3273ef
Author: Lionel Liu 
Date:   2018-02-09T03:56:48Z

enhance distinct to update old data, and fix data source cache update data 
filter bug and read old cache data bug

commit 5d39a543214d83ab9d2293169be9cadbd55049a8
Author: Lionel Liu 
Date:   2018-02-09T03:59:42Z

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

commit 232279453173da7a5f6f42fe832558035d58f975
Author: Lionel Liu 
Date:   2018-02-09T04:00:00Z

Merge branch 'apache-master' into tmst

commit 925d508fd53d689596b675c21195a5899b6341cd
Author: Lionel Liu 
Date:   2018-02-09T09:59:45Z

fix bug of data connector

commit c06caa915b787c73d7340c72d076a9d33973c63f
Author: Lionel Liu 
Date:   2018-02-09T11:01:07Z

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

commit 169a47b9690a2be165dac30628af831b5d461247
Author: Lionel Liu 
Date:   2018-02-12T02:52:26Z

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

commit eedd1d48de7d34d8845600c7f90ce477b1b32814
Author: Lionel Liu 
Date:   2018-02-12T02:56:09Z

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

commit b3d7da250e255a589bae659381e56feaf660e2c5
Author: Lionel Liu 
Date:   2018-02-12T02:56:17Z

Merge branch 'apache-master' into tmst

commit a69ed8f3c92f8ece17d35dfd12b9d1806b829fb8
Author: Lionel Liu 
Date:   2018-02-12T05:59:38Z

version 0.2.0

commit 06ce9dad4cd4d8d9197f007b7303da4e64504090
Author: Lionel Liu 
Date:   2018-02-12T07:38:16Z

prof root path done

commit 897c30975ce448d46318e8042a35fc1c019fb7b4
Author: Lionel Liu 
Date:   2018-02-12T07:57:09Z

create job: range with time unit

commit 40b9bb239f495a74ed1788550766d11984e86b9e
Author: Lionel Liu 
Date:   2018-02-12T08:32:35Z

create job: begin and length with unit when submit job

commit 6d684017f1269980202734112ec91507b6bc000f
Author: Lionel Liu 
Date:   2018-02-12T08:40:37Z

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

commit fb7b1c391712e33bf7a698005a16344ebaf8635f
Author: Lionel Liu 
Date:   2018-02-12T08:40:55Z

Merge branch 'apache-master' into tmst

commit 7b7babf5f1d14e28c8aa852014bcac3e54418b31
Author: Lionel Liu 
Date:   2018-02-12T09:21:24Z

fix bug of get metrics

commit 4342c6d8c2a9d120e4729ec143daa546c25fed97
Author: Lionel Liu 
Date:   2018-02-12T09:24:59Z

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

commit 8ff0e669108b6bd0cfac8ced7b247440e4594520
Author: Lionel Liu 
Date:   2018-02-12T09:25:23Z

Merge branch 'apache-master' into tmst

commit bd3e6e468c0ad2b46d2499f0e2ced4a341a0285a
Author: Lionel Liu 
Date:   2018-02-26T01:49:16Z

dist fix bug

commit cf7f8e80563ad026c2f762bbca4007302f8cc402
Author: Lionel Liu 
Date:   2018-02-26T02:27:59Z

remove distinct batch griffindsl json 2

commit f7a0b3fb7c18289ed3d3827f8e6a587d2d4f90fb
Author: Lionel Liu 
Date:   2018-02-27T03:09:38Z

docker compose

commit 5567c674edc93a0f28c75c748d8639fdb43673dc
Author: Lionel Liu 
Date:   2018-02-27T08:16:02Z

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

commit e2df9f566caa7e9c57e915da52381aca1cd9d9a2
Author: Lionel Liu 
Date:   2018-02-27T08:16:13Z

Merge branch 'apache-master' into tmst

commit e7a9c5d721e0cca9f6b97741824b9734e7cdf31f
Author: Lionel Liu 
Date:   2018-03-01T08:46:49Z

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

commit 25cdce972a3756e9eddc9c6cc45bb7528c53e195
Author: Lionel Liu 
Date

[GitHub] incubator-griffin pull request #341: update deploy guide document

2018-07-09 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/341

update deploy guide document



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin spark2

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/341.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #341


commit 994d6e898807c1c960b03cc0fde237f943af0ec9
Author: Lionel Liu 
Date:   2018-02-07T08:19:29Z

Merge branch 'apache-master' into tmst

commit 5a10717b2e2efb6952e9c5e4c011a7fa3ac33614
Author: Lionel Liu 
Date:   2018-02-07T08:23:41Z

regex replacement

commit 4b75055b29a0e6c7b0256c2d21e1f2dfd26b3eeb
Author: Lionel Liu 
Date:   2018-02-07T10:19:22Z

regex replace

commit b4c2d36679004f08ac7804acfe6ba188e05dc0ec
Author: Lionel Liu 
Date:   2018-02-07T10:23:27Z

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

commit 9e9cb45e50d40162bc0a39460d42d06d408266ab
Author: Lionel Liu 
Date:   2018-02-07T10:24:09Z

Merge branch 'apache-master' into tmst

commit db5368c166dd8fffb2f68f378869c3d2b820a825
Author: Lionel Liu 
Date:   2018-02-07T10:44:41Z

modify distinct trans

commit 41d3794698e6c2e82c2a216c0ea972ba0ea6ba99
Author: Lionel Liu 
Date:   2018-02-07T10:46:41Z

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

commit 62ec88c9609686e1af093fb487a96f5af510e307
Author: Lionel Liu 
Date:   2018-02-07T10:46:51Z

Merge branch 'apache-master' into tmst

commit cb149ade1c374dbd07cffb69c1881a60fe8256d0
Author: Lionel Liu 
Date:   2018-02-08T07:22:41Z

json

commit f538b33db525c3d280d1af3516ea289fce8e7f8f
Author: Lionel Liu 
Date:   2018-02-08T07:42:33Z

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

commit bb03b7e99b742dad38340a860ec1e4dc9b7438fe
Author: Lionel Liu 
Date:   2018-02-08T08:23:01Z

Merge branch 'apache-master' into tmst

commit fb5045f393af97e4117ad82caa67addafdfbca89
Author: Lionel Liu 
Date:   2018-02-09T02:08:51Z

update version in docker doc

commit 555ec9fb3dabfd9b8bef53121f448b06ed3273ef
Author: Lionel Liu 
Date:   2018-02-09T03:56:48Z

enhance distinct to update old data, and fix data source cache update data 
filter bug and read old cache data bug

commit 5d39a543214d83ab9d2293169be9cadbd55049a8
Author: Lionel Liu 
Date:   2018-02-09T03:59:42Z

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

commit 232279453173da7a5f6f42fe832558035d58f975
Author: Lionel Liu 
Date:   2018-02-09T04:00:00Z

Merge branch 'apache-master' into tmst

commit 925d508fd53d689596b675c21195a5899b6341cd
Author: Lionel Liu 
Date:   2018-02-09T09:59:45Z

fix bug of data connector

commit c06caa915b787c73d7340c72d076a9d33973c63f
Author: Lionel Liu 
Date:   2018-02-09T11:01:07Z

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

commit 169a47b9690a2be165dac30628af831b5d461247
Author: Lionel Liu 
Date:   2018-02-12T02:52:26Z

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

commit eedd1d48de7d34d8845600c7f90ce477b1b32814
Author: Lionel Liu 
Date:   2018-02-12T02:56:09Z

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

commit b3d7da250e255a589bae659381e56feaf660e2c5
Author: Lionel Liu 
Date:   2018-02-12T02:56:17Z

Merge branch 'apache-master' into tmst

commit a69ed8f3c92f8ece17d35dfd12b9d1806b829fb8
Author: Lionel Liu 
Date:   2018-02-12T05:59:38Z

version 0.2.0

commit 06ce9dad4cd4d8d9197f007b7303da4e64504090
Author: Lionel Liu 
Date:   2018-02-12T07:38:16Z

prof root path done

commit 897c30975ce448d46318e8042a35fc1c019fb7b4
Author: Lionel Liu 
Date:   2018-02-12T07:57:09Z

create job: range with time unit

commit 40b9bb239f495a74ed1788550766d11984e86b9e
Author: Lionel Liu 
Date:   2018-02-12T08:32:35Z

create job: begin and length with unit when submit job

commit 6d684017f1269980202734112ec91507b6bc000f
Author: Lionel Liu 
Date:   2018-02-12T08:40:37Z

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

commit fb7b1c391712e33bf7a698005a16344ebaf8635f
Author: Lionel Liu 
Date:   2018-02-12T08:40:55Z

Merge branch 'apache-master' into tmst

commit 7b7babf5f1d14e28c8aa852014bcac3e54418b31
Author: Lionel Liu 
Date:   2018-02-12T09:21:24Z

fix bug of get metrics

commit 4342c6d8c2a9d120e4729ec143daa546c25fed97
Author: Lionel Liu 
Date:   2018-02-12T09:24:59Z

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

commit 8ff0e669108b6bd0cfac8ced7b247440e4594520
Author: Lionel Liu 
Date:   2018-02-12T09:25

[GitHub] incubator-griffin pull request #340: Fix wrong link/name in deploy guide doc

2018-07-09 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on a diff in the pull request:

https://github.com/apache/incubator-griffin/pull/340#discussion_r201219593
  
--- Diff: griffin-doc/deploy/deploy-guide.md ---
@@ -105,7 +105,7 @@ You should also modify some configurations of Griffin 
for your environment.
# elasticsearch.password = password
 ```
 
-- measure/src/main/resources/env.json
+- measure/src/main/resources/env-streaming.json
--- End diff --

For current version, the env json is managed by service module, so this 
should be `service/src/main/resources/env/env_streaming.json` and 
`service/src/main/resources/env/env_batch.json`
Would you pls modify it? Thanks.


---


[GitHub] incubator-griffin issue #316: update scala maven plugin to lastest verson

2018-06-20 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on the issue:

https://github.com/apache/incubator-griffin/pull/316
  
Hi @toyboxman , thanks for you PR, but it didn't pass the CI build. 
I've checked about this, for the scala-maven-plugin, 3.4.1 requires maven 
3.5.3, but in CI the maven version is 3.5.2. You need to modify the version of 
scala-maven-plugin to 3.3.1 to make it work. Thanks.


---


[GitHub] incubator-griffin pull request #306: ut of timerange

2018-06-15 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/306

ut of timerange



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin spark2

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/306.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #306


commit 0c620caa55b1b93c1ccf220d5c5474899d4b2c9b
Author: Lionel Liu 
Date:   2018-02-02T07:05:27Z

time info cache bug fix when empty cache info

commit 93be809c5b7d3c8b7b95561f2f8e3bda11317f5b
Author: Lionel Liu 
Date:   2018-02-02T07:05:38Z

Merge branch 'tmst' into tmst-crawler

commit accd99a69c8a3201772a4b984e275b99f7ea20d8
Author: Lionel Liu 
Date:   2018-02-02T09:23:36Z

timeliness enhance with source timerange

commit 3d48ade08c97ef0866918850e8dec0a903951a9c
Author: Lionel Liu 
Date:   2018-02-02T10:20:59Z

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

commit e560170e0f21670d11e905a5a0643c56c78aaaf3
Author: Lionel Liu 
Date:   2018-02-02T10:21:05Z

Merge branch 'apache-master' into tmst

commit e1f5b04c996dd52bd2b24dc7e98023b5ae49b7dc
Author: Lionel Liu 
Date:   2018-02-02T10:22:17Z

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

commit cee8ed02b4de4a1468452e965cae7078e9ad8c2e
Author: Lionel Liu 
Date:   2018-02-02T10:22:30Z

Merge branch 'apache-master' into tmst

commit 70685fb3b276d233f6010836cc2ec244a8b52480
Author: Lionel Liu 
Date:   2018-02-02T16:00:55Z

fix bug of tmst range

commit a438d04db9f25192c00e57c51178cd44e2ebddcb
Author: Lionel Liu 
Date:   2018-02-02T16:04:56Z

Merge branch 'tmst-crawler' into tmst

commit 74047f125f339bfeaa33818b77865d7b05f385c7
Author: Lionel Liu 
Date:   2018-02-05T04:30:10Z

thread log in streaming process

commit 3d7534364e7481df4176c7e05c86e551134c7524
Author: Lionel Liu 
Date:   2018-02-05T04:30:20Z

Merge branch 'tmst-crawler' into tmst

commit 933ff3083d4aa823214e05164741f7d1f425b964
Author: Lionel Liu 
Date:   2018-02-05T05:01:53Z

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

commit 995a407070bc917ff3edcef3cb2216c946d16041
Author: Lionel Liu 
Date:   2018-02-05T05:03:26Z

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

commit 9162a584f20311735a165c27e94a5b259212efe0
Author: Lionel Liu 
Date:   2018-02-05T07:02:20Z

Merge branch 'apache-master' into tmst

commit 82db484c3891ec3c59a4341a81f8ba7ed974559f
Author: Lionel Liu 
Date:   2018-02-06T02:06:11Z

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

commit adc704b7c20c12ab8f0c3ece7c6c67832819f594
Author: Lionel Liu 
Date:   2018-02-06T02:11:52Z

Merge branch 'apache-master' into tmst

commit eab1854fc4fe85b70f30c937d21e40423d1f9d0f
Author: Lionel Liu 
Date:   2018-02-06T02:36:54Z

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

commit fc06e857ff33fc13f9a3edab62ac228be6b40e93
Author: Lionel Liu 
Date:   2018-02-06T02:37:09Z

Merge branch 'apache-master' into tmst

commit 1675c934b0c2ea65a33609e6b356872a2eab994d
Author: Lionel Liu 
Date:   2018-02-06T02:43:24Z

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

commit 58e4c3bb5587ed26791a5a7ea0c3f9d2734beff9
Author: Lionel Liu 
Date:   2018-02-06T02:43:35Z

Merge branch 'apache-master' into tmst

commit 922da1b487e0360bbc6466fd7451d54a1b5724a4
Author: Lionel Liu 
Date:   2018-02-07T03:16:47Z

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

commit 6ef8764f313a42d132f97a9dbd38a1b87bcbe226
Author: Lionel Liu 
Date:   2018-02-07T07:13:45Z

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

commit e72cea84e28f67b5e72bb24deb41f4919fd97f7e
Author: Lionel Liu 
Date:   2018-02-07T08:18:52Z

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

commit 994d6e898807c1c960b03cc0fde237f943af0ec9
Author: Lionel Liu 
Date:   2018-02-07T08:19:29Z

Merge branch 'apache-master' into tmst

commit 5a10717b2e2efb6952e9c5e4c011a7fa3ac33614
Author: Lionel Liu 
Date:   2018-02-07T08:23:41Z

regex replacement

commit 4b75055b29a0e6c7b0256c2d21e1f2dfd26b3eeb
Author: Lionel Liu 
Date:   2018-02-07T10:19:22Z

regex replace

commit b4c2d36679004f08ac7804acfe6ba188e05dc0ec
Author: Lionel Liu 
Date:   2018-02-07T10:23:27Z

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

commit 9e9cb45e50d40162bc0a39460d42d06d408266ab
Author: Lionel Liu 
Date:   2018-02-07T10:24:09Z

Merge branch

[GitHub] incubator-griffin issue #305: refactor params as dq definition

2018-06-14 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on the issue:

https://github.com/apache/incubator-griffin/pull/305
  
Hi @grant-xuexu , there's a conflict file in your PR, would you fix that 
first? Thanks.


---


[GitHub] incubator-griffin pull request #303: data frame cache unit test

2018-06-14 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/303

data frame cache unit test



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin spark2

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/303.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #303


commit 5f71eee0c3f51baba3eb90b635b16611066c75e7
Author: Lionel Liu 
Date:   2018-01-31T08:32:46Z

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

commit d5e450f8d5f0eabffdbe610ca35e31276a0618fb
Author: Lionel Liu 
Date:   2018-02-01T05:54:21Z

add finish phase in data source cache and finish the percentile in 
timeliness

commit 165fda2ab2d445cef6d4706deb0870e3ddd97292
Author: Lionel Liu 
Date:   2018-02-01T07:50:52Z

fix bug in timeliness of streaming sql

commit d8efb4b99b0a475a09a24c35a5b0c94653e35940
Author: Lionel Liu 
Date:   2018-02-01T08:01:21Z

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

commit 2dda957bbe1f0451517021453bdc1a8b4ed339f7
Author: Lionel Liu 
Date:   2018-02-01T08:14:22Z

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

commit 4f9c577fe924e6b3531211044e5e1409c826f258
Author: Lionel Liu 
Date:   2018-02-01T08:14:30Z

Merge branch 'apache-master' into tmst

commit 9efad182cee973971138a9f50b822d687a2cec54
Author: Lionel Liu 
Date:   2018-02-02T06:32:55Z

timeliness percentile hourly

commit 0c620caa55b1b93c1ccf220d5c5474899d4b2c9b
Author: Lionel Liu 
Date:   2018-02-02T07:05:27Z

time info cache bug fix when empty cache info

commit 93be809c5b7d3c8b7b95561f2f8e3bda11317f5b
Author: Lionel Liu 
Date:   2018-02-02T07:05:38Z

Merge branch 'tmst' into tmst-crawler

commit accd99a69c8a3201772a4b984e275b99f7ea20d8
Author: Lionel Liu 
Date:   2018-02-02T09:23:36Z

timeliness enhance with source timerange

commit 3d48ade08c97ef0866918850e8dec0a903951a9c
Author: Lionel Liu 
Date:   2018-02-02T10:20:59Z

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

commit e560170e0f21670d11e905a5a0643c56c78aaaf3
Author: Lionel Liu 
Date:   2018-02-02T10:21:05Z

Merge branch 'apache-master' into tmst

commit e1f5b04c996dd52bd2b24dc7e98023b5ae49b7dc
Author: Lionel Liu 
Date:   2018-02-02T10:22:17Z

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

commit cee8ed02b4de4a1468452e965cae7078e9ad8c2e
Author: Lionel Liu 
Date:   2018-02-02T10:22:30Z

Merge branch 'apache-master' into tmst

commit 70685fb3b276d233f6010836cc2ec244a8b52480
Author: Lionel Liu 
Date:   2018-02-02T16:00:55Z

fix bug of tmst range

commit a438d04db9f25192c00e57c51178cd44e2ebddcb
Author: Lionel Liu 
Date:   2018-02-02T16:04:56Z

Merge branch 'tmst-crawler' into tmst

commit 74047f125f339bfeaa33818b77865d7b05f385c7
Author: Lionel Liu 
Date:   2018-02-05T04:30:10Z

thread log in streaming process

commit 3d7534364e7481df4176c7e05c86e551134c7524
Author: Lionel Liu 
Date:   2018-02-05T04:30:20Z

Merge branch 'tmst-crawler' into tmst

commit 933ff3083d4aa823214e05164741f7d1f425b964
Author: Lionel Liu 
Date:   2018-02-05T05:01:53Z

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

commit 995a407070bc917ff3edcef3cb2216c946d16041
Author: Lionel Liu 
Date:   2018-02-05T05:03:26Z

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

commit 9162a584f20311735a165c27e94a5b259212efe0
Author: Lionel Liu 
Date:   2018-02-05T07:02:20Z

Merge branch 'apache-master' into tmst

commit 82db484c3891ec3c59a4341a81f8ba7ed974559f
Author: Lionel Liu 
Date:   2018-02-06T02:06:11Z

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

commit adc704b7c20c12ab8f0c3ece7c6c67832819f594
Author: Lionel Liu 
Date:   2018-02-06T02:11:52Z

Merge branch 'apache-master' into tmst

commit eab1854fc4fe85b70f30c937d21e40423d1f9d0f
Author: Lionel Liu 
Date:   2018-02-06T02:36:54Z

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

commit fc06e857ff33fc13f9a3edab62ac228be6b40e93
Author: Lionel Liu 
Date:   2018-02-06T02:37:09Z

Merge branch 'apache-master' into tmst

commit 1675c934b0c2ea65a33609e6b356872a2eab994d
Author: Lionel Liu 
Date:   2018-02-06T02:43:24Z

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

commit 58e4c3bb5587ed26791a5a7ea0c3f9d2734beff9
Author: Lionel Liu 
Date:   2018-02-06T02:43:35Z

Merge branch 'apache-master' into tmst

commit 922da1b487e0360bbc6466fd7451d54a1b5724a4
Author: Lionel Liu 
Date:   2018-02

[GitHub] incubator-griffin pull request #300: refactor context and data source

2018-06-13 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/300

refactor context and data source



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin spark2

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/300.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #300


commit 0cad1c49dfb154267d03837381d546ec14edfdfc
Author: Lionel Liu 
Date:   2018-01-30T06:45:01Z

old cache data save together

commit 8f5d20007b721e83256b4d4bc805116e8f88534a
Author: Lionel Liu 
Date:   2018-01-30T06:46:12Z

parallize number

commit db4ada265cadad44312a3ddcbfd41ca05329c029
Author: Lionel Liu 
Date:   2018-01-30T07:09:13Z

optimize process speed

commit d52195be8aafbbd36acedfb5a9ff49e62f057329
Author: Lionel Liu 
Date:   2018-01-30T09:24:16Z

data source cache type supporting json and orc

commit 5b5702df5d4f56bc1fd30a135307c6cd4484
Author: Lionel Liu 
Date:   2018-01-31T03:15:20Z

refactor

commit 52a579da672add114c218c9ad2b91bb0ab4fcc43
Author: Lionel Liu 
Date:   2018-01-31T03:25:48Z

remove comments

commit 1ccdeab09f96cf21985e9aeb6f42a76533b6b82a
Author: Lionel Liu 
Date:   2018-01-31T04:58:57Z

add files

commit 7993996a4f8ab40b1a7c895734f1d7cd8c544305
Author: Lionel Liu 
Date:   2018-01-31T05:06:32Z

merge tmst-parquet

commit e02b6888f374989e8a6093e609b7025422570c42
Author: Lionel Liu 
Date:   2018-01-31T05:08:57Z

delete

commit ed970383783aed396d1cc1d534cb1510300e5ae6
Author: Lionel Liu 
Date:   2018-01-31T08:29:34Z

timeliness config json

commit 5f71eee0c3f51baba3eb90b635b16611066c75e7
Author: Lionel Liu 
Date:   2018-01-31T08:32:46Z

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

commit d5e450f8d5f0eabffdbe610ca35e31276a0618fb
Author: Lionel Liu 
Date:   2018-02-01T05:54:21Z

add finish phase in data source cache and finish the percentile in 
timeliness

commit 165fda2ab2d445cef6d4706deb0870e3ddd97292
Author: Lionel Liu 
Date:   2018-02-01T07:50:52Z

fix bug in timeliness of streaming sql

commit d8efb4b99b0a475a09a24c35a5b0c94653e35940
Author: Lionel Liu 
Date:   2018-02-01T08:01:21Z

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

commit 2dda957bbe1f0451517021453bdc1a8b4ed339f7
Author: Lionel Liu 
Date:   2018-02-01T08:14:22Z

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

commit 4f9c577fe924e6b3531211044e5e1409c826f258
Author: Lionel Liu 
Date:   2018-02-01T08:14:30Z

Merge branch 'apache-master' into tmst

commit 9efad182cee973971138a9f50b822d687a2cec54
Author: Lionel Liu 
Date:   2018-02-02T06:32:55Z

timeliness percentile hourly

commit 0c620caa55b1b93c1ccf220d5c5474899d4b2c9b
Author: Lionel Liu 
Date:   2018-02-02T07:05:27Z

time info cache bug fix when empty cache info

commit 93be809c5b7d3c8b7b95561f2f8e3bda11317f5b
Author: Lionel Liu 
Date:   2018-02-02T07:05:38Z

Merge branch 'tmst' into tmst-crawler

commit accd99a69c8a3201772a4b984e275b99f7ea20d8
Author: Lionel Liu 
Date:   2018-02-02T09:23:36Z

timeliness enhance with source timerange

commit 3d48ade08c97ef0866918850e8dec0a903951a9c
Author: Lionel Liu 
Date:   2018-02-02T10:20:59Z

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

commit e560170e0f21670d11e905a5a0643c56c78aaaf3
Author: Lionel Liu 
Date:   2018-02-02T10:21:05Z

Merge branch 'apache-master' into tmst

commit e1f5b04c996dd52bd2b24dc7e98023b5ae49b7dc
Author: Lionel Liu 
Date:   2018-02-02T10:22:17Z

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

commit cee8ed02b4de4a1468452e965cae7078e9ad8c2e
Author: Lionel Liu 
Date:   2018-02-02T10:22:30Z

Merge branch 'apache-master' into tmst

commit 70685fb3b276d233f6010836cc2ec244a8b52480
Author: Lionel Liu 
Date:   2018-02-02T16:00:55Z

fix bug of tmst range

commit a438d04db9f25192c00e57c51178cd44e2ebddcb
Author: Lionel Liu 
Date:   2018-02-02T16:04:56Z

Merge branch 'tmst-crawler' into tmst

commit 74047f125f339bfeaa33818b77865d7b05f385c7
Author: Lionel Liu 
Date:   2018-02-05T04:30:10Z

thread log in streaming process

commit 3d7534364e7481df4176c7e05c86e551134c7524
Author: Lionel Liu 
Date:   2018-02-05T04:30:20Z

Merge branch 'tmst-crawler' into tmst

commit 933ff3083d4aa823214e05164741f7d1f425b964
Author: Lionel Liu 
Date:   2018-02-05T05:01:53Z

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

commit 995a407070bc917ff3edcef3cb2216c946d16041
Author: Lionel Liu 
Date:   2018-02-05T05:03:26Z

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

[GitHub] incubator-griffin issue #299: param json reader test case

2018-06-13 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on the issue:

https://github.com/apache/incubator-griffin/pull/299
  
Hi @grant-xuexu , the file you submit is in lack of the license header, 
would you add it like the other source files?


---


[GitHub] incubator-griffin pull request #297: add validation of parameters

2018-06-13 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/297

add validation of parameters



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin spark2

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/297.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #297


commit 2982556d910aa253c232f60514bcc45aea94a459
Author: Lionel Liu 
Date:   2018-01-23T10:25:16Z

freshness finish

commit 150a13c3b9887eabab0d53d1356360e2596a98c7
Author: Lionel Liu 
Date:   2018-01-24T02:57:54Z

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

commit a476d14b91621315f4c3a0be4f177cc1390ecfbd
Author: Lionel Liu 
Date:   2018-01-24T02:58:04Z

Merge branch 'apache-master' into tmst

commit 8803a6cd2a02dd810eb709f0bb526717f37e30d5
Author: Lionel Liu 
Date:   2018-01-25T04:55:59Z

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

commit 92c9f657687ae03ededf2bfbdf3d74bc1ac39647
Author: Lionel Liu 
Date:   2018-01-26T06:24:43Z

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

commit 3ab0b7ca726c5323eecb557d3d92de926385dea5
Author: Lionel Liu 
Date:   2018-01-26T09:26:50Z

init create data source cache in parquet way

commit 472a524c7ccd220bdceaedcb7c02a68387c10762
Author: Lionel Liu 
Date:   2018-01-29T05:26:50Z

wait for update old data

commit eb77c37f7d9766bb96eacabadf93d232af7fe93b
Author: Lionel Liu 
Date:   2018-01-29T08:58:46Z

test case pass

commit 929126b57de121b0f31e838d4e1dc8dca26edff1
Author: Lionel Liu 
Date:   2018-01-30T01:44:08Z

coalesce partition

commit 8fbd0243c239a853f1534ff940865c67a04e6b10
Author: Lionel Liu 
Date:   2018-01-30T02:30:33Z

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

commit 198b59339ef9163f66527fbd430a7c211d2140d7
Author: Lionel Liu 
Date:   2018-01-30T02:35:20Z

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

commit 0cad1c49dfb154267d03837381d546ec14edfdfc
Author: Lionel Liu 
Date:   2018-01-30T06:45:01Z

old cache data save together

commit 8f5d20007b721e83256b4d4bc805116e8f88534a
Author: Lionel Liu 
Date:   2018-01-30T06:46:12Z

parallize number

commit db4ada265cadad44312a3ddcbfd41ca05329c029
Author: Lionel Liu 
Date:   2018-01-30T07:09:13Z

optimize process speed

commit d52195be8aafbbd36acedfb5a9ff49e62f057329
Author: Lionel Liu 
Date:   2018-01-30T09:24:16Z

data source cache type supporting json and orc

commit 5b5702df5d4f56bc1fd30a135307c6cd4484
Author: Lionel Liu 
Date:   2018-01-31T03:15:20Z

refactor

commit 52a579da672add114c218c9ad2b91bb0ab4fcc43
Author: Lionel Liu 
Date:   2018-01-31T03:25:48Z

remove comments

commit 1ccdeab09f96cf21985e9aeb6f42a76533b6b82a
Author: Lionel Liu 
Date:   2018-01-31T04:58:57Z

add files

commit 7993996a4f8ab40b1a7c895734f1d7cd8c544305
Author: Lionel Liu 
Date:   2018-01-31T05:06:32Z

merge tmst-parquet

commit e02b6888f374989e8a6093e609b7025422570c42
Author: Lionel Liu 
Date:   2018-01-31T05:08:57Z

delete

commit ed970383783aed396d1cc1d534cb1510300e5ae6
Author: Lionel Liu 
Date:   2018-01-31T08:29:34Z

timeliness config json

commit 5f71eee0c3f51baba3eb90b635b16611066c75e7
Author: Lionel Liu 
Date:   2018-01-31T08:32:46Z

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

commit d5e450f8d5f0eabffdbe610ca35e31276a0618fb
Author: Lionel Liu 
Date:   2018-02-01T05:54:21Z

add finish phase in data source cache and finish the percentile in 
timeliness

commit 165fda2ab2d445cef6d4706deb0870e3ddd97292
Author: Lionel Liu 
Date:   2018-02-01T07:50:52Z

fix bug in timeliness of streaming sql

commit d8efb4b99b0a475a09a24c35a5b0c94653e35940
Author: Lionel Liu 
Date:   2018-02-01T08:01:21Z

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

commit 2dda957bbe1f0451517021453bdc1a8b4ed339f7
Author: Lionel Liu 
Date:   2018-02-01T08:14:22Z

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

commit 4f9c577fe924e6b3531211044e5e1409c826f258
Author: Lionel Liu 
Date:   2018-02-01T08:14:30Z

Merge branch 'apache-master' into tmst

commit 9efad182cee973971138a9f50b822d687a2cec54
Author: Lionel Liu 
Date:   2018-02-02T06:32:55Z

timeliness percentile hourly

commit 0c620caa55b1b93c1ccf220d5c5474899d4b2c9b
Author: Lionel Liu 
Date:   2018-02-02T07:05:27Z

time info cache bug fix when empty cache info

commit 93be809c5b7d3c8b7b95561f2f8e3bda11317f5b
Author: Lionel Liu 
Date:   2018-02-02T07:05:38Z

Merge branch 'tmst' into tmst

[GitHub] incubator-griffin pull request #294: refactor main process of batch and stre...

2018-06-11 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/294

refactor main process of batch and streaming measure



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin spark2

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/294.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #294


commit 4d84ab03ddb1453799ecc7f5f409349d74570661
Author: Lionel Liu 
Date:   2018-01-16T09:45:10Z

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

commit 00981a90774523b95718d4d8c5c08c635bbae2dd
Author: Lionel Liu 
Date:   2018-01-16T09:45:19Z

Merge branch 'apache-master' into tmst

commit 8e715c32fddc282ddf7012692c14b4c870e7e271
Author: Lionel Liu 
Date:   2018-01-17T03:20:46Z

zk info cache clear info just delete the info node and final.info node

commit 42659e7fa4dcc2c644251094831e66236bbc613e
Author: Lionel Liu 
Date:   2018-01-17T03:21:31Z

fix

commit 80074bd1af18fe289485dc0543b55770f0bbcbd9
Author: Lionel Liu 
Date:   2018-01-22T01:52:38Z

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

commit 4a3fad06baf5cd999be1f2c1b3edfc55647daa6a
Author: Lionel Liu 
Date:   2018-01-22T01:52:56Z

Merge branch 'apache-master' into tmst

commit 2982556d910aa253c232f60514bcc45aea94a459
Author: Lionel Liu 
Date:   2018-01-23T10:25:16Z

freshness finish

commit 150a13c3b9887eabab0d53d1356360e2596a98c7
Author: Lionel Liu 
Date:   2018-01-24T02:57:54Z

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

commit a476d14b91621315f4c3a0be4f177cc1390ecfbd
Author: Lionel Liu 
Date:   2018-01-24T02:58:04Z

Merge branch 'apache-master' into tmst

commit 8803a6cd2a02dd810eb709f0bb526717f37e30d5
Author: Lionel Liu 
Date:   2018-01-25T04:55:59Z

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

commit 92c9f657687ae03ededf2bfbdf3d74bc1ac39647
Author: Lionel Liu 
Date:   2018-01-26T06:24:43Z

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

commit 3ab0b7ca726c5323eecb557d3d92de926385dea5
Author: Lionel Liu 
Date:   2018-01-26T09:26:50Z

init create data source cache in parquet way

commit 472a524c7ccd220bdceaedcb7c02a68387c10762
Author: Lionel Liu 
Date:   2018-01-29T05:26:50Z

wait for update old data

commit eb77c37f7d9766bb96eacabadf93d232af7fe93b
Author: Lionel Liu 
Date:   2018-01-29T08:58:46Z

test case pass

commit 929126b57de121b0f31e838d4e1dc8dca26edff1
Author: Lionel Liu 
Date:   2018-01-30T01:44:08Z

coalesce partition

commit 8fbd0243c239a853f1534ff940865c67a04e6b10
Author: Lionel Liu 
Date:   2018-01-30T02:30:33Z

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

commit 198b59339ef9163f66527fbd430a7c211d2140d7
Author: Lionel Liu 
Date:   2018-01-30T02:35:20Z

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

commit 0cad1c49dfb154267d03837381d546ec14edfdfc
Author: Lionel Liu 
Date:   2018-01-30T06:45:01Z

old cache data save together

commit 8f5d20007b721e83256b4d4bc805116e8f88534a
Author: Lionel Liu 
Date:   2018-01-30T06:46:12Z

parallize number

commit db4ada265cadad44312a3ddcbfd41ca05329c029
Author: Lionel Liu 
Date:   2018-01-30T07:09:13Z

optimize process speed

commit d52195be8aafbbd36acedfb5a9ff49e62f057329
Author: Lionel Liu 
Date:   2018-01-30T09:24:16Z

data source cache type supporting json and orc

commit 5b5702df5d4f56bc1fd30a135307c6cd4484
Author: Lionel Liu 
Date:   2018-01-31T03:15:20Z

refactor

commit 52a579da672add114c218c9ad2b91bb0ab4fcc43
Author: Lionel Liu 
Date:   2018-01-31T03:25:48Z

remove comments

commit 1ccdeab09f96cf21985e9aeb6f42a76533b6b82a
Author: Lionel Liu 
Date:   2018-01-31T04:58:57Z

add files

commit 7993996a4f8ab40b1a7c895734f1d7cd8c544305
Author: Lionel Liu 
Date:   2018-01-31T05:06:32Z

merge tmst-parquet

commit e02b6888f374989e8a6093e609b7025422570c42
Author: Lionel Liu 
Date:   2018-01-31T05:08:57Z

delete

commit ed970383783aed396d1cc1d534cb1510300e5ae6
Author: Lionel Liu 
Date:   2018-01-31T08:29:34Z

timeliness config json

commit 5f71eee0c3f51baba3eb90b635b16611066c75e7
Author: Lionel Liu 
Date:   2018-01-31T08:32:46Z

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

commit d5e450f8d5f0eabffdbe610ca35e31276a0618fb
Author: Lionel Liu 
Date:   2018-02-01T05:54:21Z

add finish phase in data source cache and finish the percentile in 
timeliness

commit 165fda2ab2d445cef6d4706deb0870e3ddd97292
Author: Lionel Liu 
Date:   2018-02-01T07:50:52Z

fix bug

[GitHub] incubator-griffin pull request #289: update readme file

2018-05-31 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/289

update readme file



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin spark2

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/289.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #289


commit e3a484b99ef85be11b3d7b5f2e26574feb2dab36
Author: Lionel Liu 
Date:   2018-01-15T08:37:45Z

measure streaming sample doc

commit 2af27227496750077dc9fab89131d502103af25e
Author: Lionel Liu 
Date:   2018-01-16T08:15:15Z

dist

commit 0bc0d35cebf7fc4daae71a06ab267dedcbe19cb7
Author: Lionel Liu 
Date:   2018-01-16T08:29:52Z

dist with accumulate or not

commit 15c62cef1e1456bf7fb88e51ae3c294e04382342
Author: Lionel Liu 
Date:   2018-01-16T08:33:03Z

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

commit 7cfdf2f1e9491549d3369cb4593fa334a6f55b28
Author: Lionel Liu 
Date:   2018-01-16T08:33:11Z

Merge branch 'apache-master' into tmst

commit 2d283e49fcfbff7c911264de24bd7d4092f1344f
Author: Lionel Liu 
Date:   2018-01-16T08:44:31Z

fix bug of streaming records persist in simple mode

commit 882c6edab2155e3c71c61f9c6988da3b27c392d6
Author: Lionel Liu 
Date:   2018-01-16T08:58:24Z

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

commit 0a046b4010c82f333bd5c7341c386a38e34e708f
Author: Lionel Liu 
Date:   2018-01-16T08:58:32Z

Merge branch 'apache-master' into tmst

commit 33ff150c7e54ab3affe9f2496c3b35fd3bcf8d08
Author: Lionel Liu 
Date:   2018-01-16T09:00:44Z

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

commit 67a9937585feb16502c92b93e8ef3b2d8870f56b
Author: Lionel Liu 
Date:   2018-01-16T09:00:57Z

Merge branch 'apache-master' into tmst

commit 4d28fb10b24a42bf1fd44bda5a26e130ec2dad7f
Author: Lionel Liu 
Date:   2018-01-16T09:26:18Z

update measure config guid

commit 4d84ab03ddb1453799ecc7f5f409349d74570661
Author: Lionel Liu 
Date:   2018-01-16T09:45:10Z

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

commit 00981a90774523b95718d4d8c5c08c635bbae2dd
Author: Lionel Liu 
Date:   2018-01-16T09:45:19Z

Merge branch 'apache-master' into tmst

commit 8e715c32fddc282ddf7012692c14b4c870e7e271
Author: Lionel Liu 
Date:   2018-01-17T03:20:46Z

zk info cache clear info just delete the info node and final.info node

commit 42659e7fa4dcc2c644251094831e66236bbc613e
Author: Lionel Liu 
Date:   2018-01-17T03:21:31Z

fix

commit 80074bd1af18fe289485dc0543b55770f0bbcbd9
Author: Lionel Liu 
Date:   2018-01-22T01:52:38Z

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

commit 4a3fad06baf5cd999be1f2c1b3edfc55647daa6a
Author: Lionel Liu 
Date:   2018-01-22T01:52:56Z

Merge branch 'apache-master' into tmst

commit 2982556d910aa253c232f60514bcc45aea94a459
Author: Lionel Liu 
Date:   2018-01-23T10:25:16Z

freshness finish

commit 150a13c3b9887eabab0d53d1356360e2596a98c7
Author: Lionel Liu 
Date:   2018-01-24T02:57:54Z

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

commit a476d14b91621315f4c3a0be4f177cc1390ecfbd
Author: Lionel Liu 
Date:   2018-01-24T02:58:04Z

Merge branch 'apache-master' into tmst

commit 8803a6cd2a02dd810eb709f0bb526717f37e30d5
Author: Lionel Liu 
Date:   2018-01-25T04:55:59Z

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

commit 92c9f657687ae03ededf2bfbdf3d74bc1ac39647
Author: Lionel Liu 
Date:   2018-01-26T06:24:43Z

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

commit 3ab0b7ca726c5323eecb557d3d92de926385dea5
Author: Lionel Liu 
Date:   2018-01-26T09:26:50Z

init create data source cache in parquet way

commit 472a524c7ccd220bdceaedcb7c02a68387c10762
Author: Lionel Liu 
Date:   2018-01-29T05:26:50Z

wait for update old data

commit eb77c37f7d9766bb96eacabadf93d232af7fe93b
Author: Lionel Liu 
Date:   2018-01-29T08:58:46Z

test case pass

commit 929126b57de121b0f31e838d4e1dc8dca26edff1
Author: Lionel Liu 
Date:   2018-01-30T01:44:08Z

coalesce partition

commit 8fbd0243c239a853f1534ff940865c67a04e6b10
Author: Lionel Liu 
Date:   2018-01-30T02:30:33Z

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

commit 198b59339ef9163f66527fbd430a7c211d2140d7
Author: Lionel Liu 
Date:   2018-01-30T02:35:20Z

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

commit 0cad1c49dfb154267d03837381d546ec14edfdfc
Author: Lionel Liu 
Date:   2018-01-30T06:45

[GitHub] incubator-griffin issue #286: Fix livy parmas escape bug.

2018-05-29 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on the issue:

https://github.com/apache/incubator-griffin/pull/286
  
Hi @nezhazheng , we had also handled that situation in service module 
before submit to livy 
[here](https://github.com/apache/incubator-griffin/blob/master/service/src/main/java/org/apache/griffin/core/job/SparkSubmitJob.java#L181),
 I think in your case you can just add one escape character '\\' before '`', 
measure module will work well without doing anything.


---


[GitHub] incubator-griffin pull request #288: fix bug of non-block persist in batch m...

2018-05-29 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/288

fix bug of non-block persist in batch mode



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin spark2

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/288.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #288


commit 93f751876fb420e3de048d49cd415e4ced946959
Author: Lionel Liu 
Date:   2018-01-15T06:01:27Z

Merge branch 'apache-master' into tmst

commit dcb67e95226958b3402be6db9c267075e383a53e
Author: Lionel Liu 
Date:   2018-01-15T06:01:37Z

Merge branch 'tmst' into tmst-dist

commit 88dc2898ef217bfd473552a2d74055667db19ddf
Author: Lionel Liu 
Date:   2018-01-15T07:37:09Z

test priority job

commit e3a484b99ef85be11b3d7b5f2e26574feb2dab36
Author: Lionel Liu 
Date:   2018-01-15T08:37:45Z

measure streaming sample doc

commit 2af27227496750077dc9fab89131d502103af25e
Author: Lionel Liu 
Date:   2018-01-16T08:15:15Z

dist

commit 0bc0d35cebf7fc4daae71a06ab267dedcbe19cb7
Author: Lionel Liu 
Date:   2018-01-16T08:29:52Z

dist with accumulate or not

commit 15c62cef1e1456bf7fb88e51ae3c294e04382342
Author: Lionel Liu 
Date:   2018-01-16T08:33:03Z

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

commit 7cfdf2f1e9491549d3369cb4593fa334a6f55b28
Author: Lionel Liu 
Date:   2018-01-16T08:33:11Z

Merge branch 'apache-master' into tmst

commit 2d283e49fcfbff7c911264de24bd7d4092f1344f
Author: Lionel Liu 
Date:   2018-01-16T08:44:31Z

fix bug of streaming records persist in simple mode

commit 882c6edab2155e3c71c61f9c6988da3b27c392d6
Author: Lionel Liu 
Date:   2018-01-16T08:58:24Z

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

commit 0a046b4010c82f333bd5c7341c386a38e34e708f
Author: Lionel Liu 
Date:   2018-01-16T08:58:32Z

Merge branch 'apache-master' into tmst

commit 33ff150c7e54ab3affe9f2496c3b35fd3bcf8d08
Author: Lionel Liu 
Date:   2018-01-16T09:00:44Z

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

commit 67a9937585feb16502c92b93e8ef3b2d8870f56b
Author: Lionel Liu 
Date:   2018-01-16T09:00:57Z

Merge branch 'apache-master' into tmst

commit 4d28fb10b24a42bf1fd44bda5a26e130ec2dad7f
Author: Lionel Liu 
Date:   2018-01-16T09:26:18Z

update measure config guid

commit 4d84ab03ddb1453799ecc7f5f409349d74570661
Author: Lionel Liu 
Date:   2018-01-16T09:45:10Z

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

commit 00981a90774523b95718d4d8c5c08c635bbae2dd
Author: Lionel Liu 
Date:   2018-01-16T09:45:19Z

Merge branch 'apache-master' into tmst

commit 8e715c32fddc282ddf7012692c14b4c870e7e271
Author: Lionel Liu 
Date:   2018-01-17T03:20:46Z

zk info cache clear info just delete the info node and final.info node

commit 42659e7fa4dcc2c644251094831e66236bbc613e
Author: Lionel Liu 
Date:   2018-01-17T03:21:31Z

fix

commit 80074bd1af18fe289485dc0543b55770f0bbcbd9
Author: Lionel Liu 
Date:   2018-01-22T01:52:38Z

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

commit 4a3fad06baf5cd999be1f2c1b3edfc55647daa6a
Author: Lionel Liu 
Date:   2018-01-22T01:52:56Z

Merge branch 'apache-master' into tmst

commit 2982556d910aa253c232f60514bcc45aea94a459
Author: Lionel Liu 
Date:   2018-01-23T10:25:16Z

freshness finish

commit 150a13c3b9887eabab0d53d1356360e2596a98c7
Author: Lionel Liu 
Date:   2018-01-24T02:57:54Z

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

commit a476d14b91621315f4c3a0be4f177cc1390ecfbd
Author: Lionel Liu 
Date:   2018-01-24T02:58:04Z

Merge branch 'apache-master' into tmst

commit 8803a6cd2a02dd810eb709f0bb526717f37e30d5
Author: Lionel Liu 
Date:   2018-01-25T04:55:59Z

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

commit 92c9f657687ae03ededf2bfbdf3d74bc1ac39647
Author: Lionel Liu 
Date:   2018-01-26T06:24:43Z

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

commit 3ab0b7ca726c5323eecb557d3d92de926385dea5
Author: Lionel Liu 
Date:   2018-01-26T09:26:50Z

init create data source cache in parquet way

commit 472a524c7ccd220bdceaedcb7c02a68387c10762
Author: Lionel Liu 
Date:   2018-01-29T05:26:50Z

wait for update old data

commit eb77c37f7d9766bb96eacabadf93d232af7fe93b
Author: Lionel Liu 
Date:   2018-01-29T08:58:46Z

test case pass

commit 929126b57de121b0f31e838d4e1dc8dca26edff1
Author: Lionel Liu 
Date:   2018-01-30T01:44:08Z

coalesce partition

commit 8fbd0243c239a853f1534ff940865c67a04e6b10

[GitHub] incubator-griffin issue #286: Fix livy parmas escape bug.

2018-05-25 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on the issue:

https://github.com/apache/incubator-griffin/pull/286
  
Hi @nezhazheng , I'll merge it ASAP, thanks for your PR.


---


[GitHub] incubator-griffin pull request #282: [GRIFFIN-163] merge version 0.2.0 for s...

2018-05-16 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/282

[GRIFFIN-163] merge version 0.2.0 for spark 2 into master branch



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin master-merge

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/282.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #282


commit b5c0c93d3ed1a7117148479ecbb22a1f5f1f04ac
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-10T07:15:35Z

Merge branch 'apache-master' into tmst

commit b4284b5de84e99d99806ce11ed5be1fff38fc5ac
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-11T02:37:18Z

sample doc update

commit 2a91687ad485db083d972b126acd2789cd6571cf
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-11T13:03:46Z

distinct

commit bf84f2942dd7db94c85befe9dc94c684a9f2b6e6
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-12T02:44:14Z

dist

commit 79354cdfc22f7c18a4acf3fa01f0ebc9455a345c
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-12T05:17:31Z

sql pass

commit 0b195e55df86b1223f2386df1a93949fa6bf2fff
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-12T08:24:49Z

dist streaming pass

commit 3d84a46ea059d66fec7b68743da1ee1d4b8942ca
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-15T06:00:01Z

refactor

commit a89291eda1c50975a98513548982120e7749cc8e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-15T06:01:16Z

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

commit 93f751876fb420e3de048d49cd415e4ced946959
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-15T06:01:27Z

Merge branch 'apache-master' into tmst

commit dcb67e95226958b3402be6db9c267075e383a53e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-15T06:01:37Z

Merge branch 'tmst' into tmst-dist

commit 88dc2898ef217bfd473552a2d74055667db19ddf
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-15T07:37:09Z

test priority job

commit e3a484b99ef85be11b3d7b5f2e26574feb2dab36
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-15T08:37:45Z

measure streaming sample doc

commit 2af27227496750077dc9fab89131d502103af25e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-16T08:15:15Z

dist

commit 0bc0d35cebf7fc4daae71a06ab267dedcbe19cb7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-16T08:29:52Z

dist with accumulate or not

commit 15c62cef1e1456bf7fb88e51ae3c294e04382342
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-16T08:33:03Z

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

commit 7cfdf2f1e9491549d3369cb4593fa334a6f55b28
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-16T08:33:11Z

Merge branch 'apache-master' into tmst

commit 2d283e49fcfbff7c911264de24bd7d4092f1344f
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-16T08:44:31Z

fix bug of streaming records persist in simple mode

commit 882c6edab2155e3c71c61f9c6988da3b27c392d6
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-16T08:58:24Z

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

commit 0a046b4010c82f333bd5c7341c386a38e34e708f
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-16T08:58:32Z

Merge branch 'apache-master' into tmst

commit 33ff150c7e54ab3affe9f2496c3b35fd3bcf8d08
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-16T09:00:44Z

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

commit 67a9937585feb16502c92b93e8ef3b2d8870f56b
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-16T09:00:57Z

Merge branch 'apache-master' into tmst

commit 4d28fb10b24a42bf1fd44bda5a26e130ec2dad7f
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-16T09:26:18Z

update measure config guid

commit 4d84ab03ddb1453799ecc7f5f409349d74570661
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-16T09:45:10Z

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

commit 00981a90774523b95718d4d8c5c08c635bbae2dd
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-16T09:45:19Z

Merge branch 'apache-master' into tmst

commit 8e715c32fddc282ddf7012692c14b4c870e7e271
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-17T03:20:46Z

    zk info cache clear info just delete the info node and final.info node

commit 42659e7fa4dcc2c644251094831e66236bbc613e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-17T03:21:31Z

fix

commit 80074bd1af18fe289485dc0543b55770f0bbcbd9
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-22T01:52:38Z

Merge branch 'm

[GitHub] incubator-griffin issue #279: Topics/refactor ut & code

2018-05-10 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on the issue:

https://github.com/apache/incubator-griffin/pull/279
  
Hi @evanwan87 , I think you don't need to modify this file: 
griffin-doc/service/postman/griffin_environment.json


---


[GitHub] incubator-griffin pull request #274: update document of measure batch sample

2018-05-01 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/274

update document of measure batch sample



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin tmst

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/274.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #274


commit 9357b52dd12de3cd4e54655b32e1d6643131a4ca
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-28T07:10:18Z

persist modify to iterable for streaming mode

commit 0cd121b386e15da7373bb2302a4a0783c1b49b50
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-28T12:25:32Z

fix all matched ignore bug

commit 84892a8e7787bbd644b729e5ca221d2e4b521780
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-29T05:31:19Z

enable accuracy df opr

commit 54ee18587d8083e5266758855342dbd857da9858
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-29T06:04:25Z

add accuracy streaming spark sql config json

commit ce20f44b162cee9077d655732ae2091d57deeac1
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-29T14:03:55Z

refactor

commit 1acc0083cae59e98c638a7e96c6c404dec7e2f34
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-29T14:41:33Z

enhance collect streaming records

commit 3ef53237e939536af54bf56f6ee165f1e38a5ba6
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-29T16:03:52Z

no cache in accuracy

commit 3deb91448ef405271bb075300fd7c3d335cdc167
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-02T05:30:28Z

add print

commit 80add20333661a0af15a7dcdc4b19bcc91d12544
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-02T07:59:47Z

fix bug of all match persist

commit 728d150c295f24938f918915d36c4256f9cf82fa
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-02T09:06:27Z

update dump

commit e7923d52fb2c41a621f0f25bcf44644757415dfa
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-02T10:11:41Z

init json

commit 723492715462313bed367c7b4cfa0eb72139dc56
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-03T09:39:28Z

dup

commit 963339c1d6245f53b96eb277060f89e3b100e377
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-03T09:39:51Z

hdfs

commit 450acc2f823d3c37c6e856736bedebd7e91aaf36
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-04T04:59:40Z

modify duplicate metric and record

commit fe50e54eb7b3eb90765bd7a29e5f9dc79ea5a7ce
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-04T05:21:30Z

add cache and metric array collection

commit 98db86d7af49e69028b3f335f2d45269bd74
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-08T08:25:17Z

add timeliness feature

commit 9a54bb422afde23e4a043f2b38b8f41db1c8acea
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-08T08:25:35Z

add timeliness data avro

commit d001df748eb4ec3dc648977d748ec5c60d8da5a2
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-08T08:29:09Z

fix test

commit 05ad69a449f8bdcd89f9b7d901243bbcce8aae55
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-08T09:21:39Z

merge master

commit dc7c3cca6b7a0d00f840abcc24a26536b3d354a0
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-08T09:45:07Z

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

commit 4108e2ff3b91710285fc4a01f9417e835c85a3df
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-09T09:41:33Z

dsl-guide

commit 134ad2842a5ca65b953342bbce6608c783e847d1
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-09T09:44:38Z

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

commit 02c0c80d71c2e4369f32e1c8da17e5e2269ee1a7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-09T09:51:36Z

merge master

commit 241e6986d140ae91fbfdaf6f96a9064da2d87d1f
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-09T09:54:28Z

dsl-guide

commit 7ebc298ef53a5e6cd5ef6d3edde22e1fe8364182
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-09T09:56:55Z

doc position

commit 4e6862f74cd938c3dfd63ed2cb7407ae519d3224
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-09T09:58:59Z

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

commit 142056cff960ca1465a26bdd4c0e3cc3e37be13d
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-09T09:59:10Z

Merge branch 'apache-master' into tmst

commit f583ce64a3b2053c33eecf1d11389027c992df11
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-10T06:42:45Z

add total and unique count in uniqueness metric

commit d882d6105336c04ad4124e7871db810365811da3
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-10T07:08:29Z

add duplication on off switch

commit bed32e26de37fae231ed75f24df91c3761ac1716
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-10T07:09:29Z

remove extra comment




---


[GitHub] incubator-griffin pull request #271: removed the duplicate hdfs util

2018-04-26 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/271

removed the duplicate hdfs util



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin tmst

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/271.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #271


commit bd7c886c63dba36ca8435fc5518242d00aea8994
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-26T15:25:52Z

multi thread persist

commit 0d9f8198ad71509c8b54ec82d50f4c5852cb7acb
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-27T10:34:00Z

streaming pass

commit b86612a86456bbff6d005865486237333aa5989a
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-28T01:44:25Z

hdfs util

commit 0e1f9681b5293c270ed9245b3416fadbc9ad88ab
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-28T04:58:47Z

add df.cache in dq engine, to fix df reuse bug if file removed before the 
lasy execution

commit 9357b52dd12de3cd4e54655b32e1d6643131a4ca
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-28T07:10:18Z

persist modify to iterable for streaming mode

commit 0cd121b386e15da7373bb2302a4a0783c1b49b50
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-28T12:25:32Z

fix all matched ignore bug

commit 84892a8e7787bbd644b729e5ca221d2e4b521780
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-29T05:31:19Z

enable accuracy df opr

commit 54ee18587d8083e5266758855342dbd857da9858
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-29T06:04:25Z

add accuracy streaming spark sql config json

commit ce20f44b162cee9077d655732ae2091d57deeac1
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-29T14:03:55Z

refactor

commit 1acc0083cae59e98c638a7e96c6c404dec7e2f34
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-29T14:41:33Z

enhance collect streaming records

commit 3ef53237e939536af54bf56f6ee165f1e38a5ba6
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-29T16:03:52Z

no cache in accuracy

commit 3deb91448ef405271bb075300fd7c3d335cdc167
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-02T05:30:28Z

add print

commit 80add20333661a0af15a7dcdc4b19bcc91d12544
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-02T07:59:47Z

fix bug of all match persist

commit 728d150c295f24938f918915d36c4256f9cf82fa
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-02T09:06:27Z

    update dump

commit e7923d52fb2c41a621f0f25bcf44644757415dfa
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-02T10:11:41Z

    init json

commit 723492715462313bed367c7b4cfa0eb72139dc56
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-03T09:39:28Z

dup

commit 963339c1d6245f53b96eb277060f89e3b100e377
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-03T09:39:51Z

hdfs

commit 450acc2f823d3c37c6e856736bedebd7e91aaf36
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-04T04:59:40Z

modify duplicate metric and record

commit fe50e54eb7b3eb90765bd7a29e5f9dc79ea5a7ce
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-04T05:21:30Z

add cache and metric array collection

commit 98db86d7af49e69028b3f335f2d45269bd74
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-08T08:25:17Z

add timeliness feature

commit 9a54bb422afde23e4a043f2b38b8f41db1c8acea
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-08T08:25:35Z

add timeliness data avro

commit d001df748eb4ec3dc648977d748ec5c60d8da5a2
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-08T08:29:09Z

fix test

commit 05ad69a449f8bdcd89f9b7d901243bbcce8aae55
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-08T09:21:39Z

merge master

commit dc7c3cca6b7a0d00f840abcc24a26536b3d354a0
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-08T09:45:07Z

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

commit 4108e2ff3b91710285fc4a01f9417e835c85a3df
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-09T09:41:33Z

dsl-guide

commit 134ad2842a5ca65b953342bbce6608c783e847d1
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-09T09:44:38Z

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

commit 02c0c80d71c2e4369f32e1c8da17e5e2269ee1a7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-09T09:51:36Z

merge master

commit 241e6986d140ae91fbfdaf6f96a9064da2d87d1f
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-09T09:54:28Z

dsl-guide

commit 7ebc298ef53a5e6cd5ef6d3edde22e1fe8364182
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-09T09:56:55Z

doc position

commit 4e6862f74cd938c3dfd63ed2cb7407ae519d3224
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-09T09:58:59Z

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




---


[GitHub] incubator-griffin pull request #264: Add license header for docs

2018-04-24 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/264

Add license header for docs



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin tmst

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/264.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #264


commit 651cf3e8ffebe8e2981e0c993f4f9d1f00457878
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-14T03:16:28Z

hdfs

commit f3e81b1261b00fc09c9b1703662c26b9ec969c08
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-15T06:19:42Z

not done

commit 08bd2242b7db577c902932a0894d133ffc9551ff
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-18T05:25:03Z

optimize accuracy

commit ca0e8c264cdc457fe98532545d99ebaa11e86f14
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-18T10:11:53Z

opt accuracy

commit 0b664747efaaabb3e2ebd68f6adf1b31fad0f671
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-20T08:37:40Z

performance bad

commit 725ee4009da27bf694c4f932fac5def690aedc8b
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-24T14:29:50Z

define config json, need to treat metric and record persist as extra 
process outside of pipeline, batch and streaming with different rule adaptor, 
to treat tmst column

commit 5a5dff6a54f77dc7db6d1414643c3255580c
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-24T14:42:37Z

streaming accuracy config json update, persist processes in batch and 
streaming mode are different, considering take different process in data source 
pre-process

commit f2ad36e4a0821a1e454fa3ef8a7da27c349c129e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-25T02:01:11Z

update profiling streaming spark sql config json

commit 8d55964f0e9c41b56a378c98ab3d7592294b357f
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-26T14:18:19Z

pass batch

commit b28579b49686a52680b0974d8086710457a923c8
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-26T15:11:26Z

wait for persist

commit bd7c886c63dba36ca8435fc5518242d00aea8994
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-26T15:25:52Z

multi thread persist

commit 0d9f8198ad71509c8b54ec82d50f4c5852cb7acb
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-27T10:34:00Z

streaming pass

commit b86612a86456bbff6d005865486237333aa5989a
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-28T01:44:25Z

hdfs util

commit 0e1f9681b5293c270ed9245b3416fadbc9ad88ab
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-28T04:58:47Z

add df.cache in dq engine, to fix df reuse bug if file removed before the 
lasy execution

commit 9357b52dd12de3cd4e54655b32e1d6643131a4ca
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-28T07:10:18Z

persist modify to iterable for streaming mode

commit 0cd121b386e15da7373bb2302a4a0783c1b49b50
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-28T12:25:32Z

fix all matched ignore bug

commit 84892a8e7787bbd644b729e5ca221d2e4b521780
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-29T05:31:19Z

    enable accuracy df opr

commit 54ee18587d8083e5266758855342dbd857da9858
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-29T06:04:25Z

add accuracy streaming spark sql config json

commit ce20f44b162cee9077d655732ae2091d57deeac1
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-29T14:03:55Z

refactor

commit 1acc0083cae59e98c638a7e96c6c404dec7e2f34
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-29T14:41:33Z

enhance collect streaming records

commit 3ef53237e939536af54bf56f6ee165f1e38a5ba6
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-29T16:03:52Z

no cache in accuracy

commit 3deb91448ef405271bb075300fd7c3d335cdc167
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-02T05:30:28Z

add print

commit 80add20333661a0af15a7dcdc4b19bcc91d12544
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-02T07:59:47Z

fix bug of all match persist

commit 728d150c295f24938f918915d36c4256f9cf82fa
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-02T09:06:27Z

update dump

commit e7923d52fb2c41a621f0f25bcf44644757415dfa
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-02T10:11:41Z

init json

commit 723492715462313bed367c7b4cfa0eb72139dc56
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-03T09:39:28Z

dup

commit 963339c1d6245f53b96eb277060f89e3b100e377
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-03T09:39:51Z

hdfs

commit 450acc2f823d3c37c6e856736bedebd7e91aaf36
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-01-04T04:59:40Z

modify duplicate metric and record

commit fe50e54eb7b3eb90765bd7a29e5f

[GitHub] incubator-griffin issue #263: Doc/enhancement

2018-04-24 Thread bhlx3lyx7
Github user bhlx3lyx7 commented on the issue:

https://github.com/apache/incubator-griffin/pull/263
  
Hi @younglee1 , thanks for your work.
I've reviewed the modifications you've made, and have some suggestions:
1. In `griffin-doc/deploy/deploy-guide.md`, "For Griffin users, please 
follow the instructions below to you can deploy Griffin in your environment" 
confused me.
2. In `griffin-doc/docker/griffin-docker-guide.md`, "There are four 
pre-built griffin environment images", actually, only the first one is the 
griffin docker image, the next two are re-built based on the official images, 
the last one is the official image of zookeeper, so I don't think we can say 
they are four pre-built images, we'd better say it like "Here liststhe griffin 
and dependent environment docker images".

Would you mind make some changes? We'll accept after that.


---


[GitHub] incubator-griffin pull request #254: [GRIFFIN-135] support completeness meas...

2018-04-09 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/254

[GRIFFIN-135] support completeness measurement for batch and streaming mode



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin tmst

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/254.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #254


commit 2f1243c36629f98ba4e2f0480da25414c5717cfb
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-05T04:36:03Z

test

commit 982d1742b96d4ce7d4ba5e1324db92a9296f8e79
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-05T08:02:40Z

pass batch test

commit 2f36ab653d0efc53fe223389a1a21cb1dc702b29
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-07T06:34:51Z

tmstNameOpt

commit c6a5650f1a2410ac26c97cddc96afaecdd54a67d
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-07T08:52:41Z

hdfs persist and evaluate.rule

commit 26a235e113b947431f1c262cbf3aed31f8816549
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-07T08:54:09Z

merge conflict

commit a7e28bb5cb6f2ecae4cec706b9c5a5d7cf29a4aa
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-07T13:25:13Z

pass batch, waiting for test speed

commit 6da53e965b931b722953abf385964b91c74f2afc
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-08T02:43:18Z

pre-proc done

commit 642d4a3575a5b1e3843bf5337fd16e95ee3dfaa9
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-11T09:43:57Z

hdfs persist enhance

commit 472a1f998936b476becc685a7a57b1ce680108a0
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-13T02:53:32Z

register table

commit 3a00dee836693f3a4345c101f941b590eb516277
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-13T10:02:13Z

manage temp tables, waiting for ignore cache group

commit ce4558d17f15cf370ab36f707801919fb2939ddc
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-14T02:04:53Z

enable ignore cache for accuracy opr

commit ff5797f627058f81da5135cc0a70c01e0870b98b
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-14T02:19:32Z

clear metrics internal columns

commit f44396f5bc5f04ad80e828d450a1798e083e2149
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-14T02:21:30Z

Merge branch 'tmst' into tmst-crawler

commit 651cf3e8ffebe8e2981e0c993f4f9d1f00457878
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-14T03:16:28Z

    hdfs

commit f3e81b1261b00fc09c9b1703662c26b9ec969c08
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-15T06:19:42Z

    not done

commit 08bd2242b7db577c902932a0894d133ffc9551ff
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-18T05:25:03Z

optimize accuracy

commit ca0e8c264cdc457fe98532545d99ebaa11e86f14
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-18T10:11:53Z

opt accuracy

commit 0b664747efaaabb3e2ebd68f6adf1b31fad0f671
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-20T08:37:40Z

performance bad

commit 725ee4009da27bf694c4f932fac5def690aedc8b
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-24T14:29:50Z

define config json, need to treat metric and record persist as extra 
process outside of pipeline, batch and streaming with different rule adaptor, 
to treat tmst column

commit 5a5dff6a54f77dc7db6d1414643c3255580c
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-24T14:42:37Z

streaming accuracy config json update, persist processes in batch and 
streaming mode are different, considering take different process in data source 
pre-process

commit f2ad36e4a0821a1e454fa3ef8a7da27c349c129e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-25T02:01:11Z

update profiling streaming spark sql config json

commit 8d55964f0e9c41b56a378c98ab3d7592294b357f
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-26T14:18:19Z

pass batch

commit b28579b49686a52680b0974d8086710457a923c8
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-26T15:11:26Z

wait for persist

commit bd7c886c63dba36ca8435fc5518242d00aea8994
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-26T15:25:52Z

multi thread persist

commit 0d9f8198ad71509c8b54ec82d50f4c5852cb7acb
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-27T10:34:00Z

streaming pass

commit b86612a86456bbff6d005865486237333aa5989a
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-28T01:44:25Z

hdfs util

commit 0e1f9681b5293c270ed9245b3416fadbc9ad88ab
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-28T04:58:47Z

    add df.cache in dq engine, to fix df reuse bug if file removed before the 
lasy execution

commit 9357b52dd12de3cd4e54655b32e1d6643131a4ca
Author: Lionel Liu <bhlx3lyx7@...>
Date:   201

[GitHub] incubator-griffin pull request #252: update document, modify user list addre...

2018-04-09 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/252

update document, modify user list address and some mistake in markdown file



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin tmst

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/252.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #252


commit 58f15669030b92319665836d5e74ece5b5976367
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-28T07:41:49Z

add distinct support in griffin

commit a5edc86085593b98d579d937bd15181e1a912fce
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-28T08:20:40Z

init

commit 0c9397b60e8466337c43cd318ba60dd221488db6
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-28T10:44:02Z

spark sql works

commit 1e858f18a0343c4eb2a5a58813f40730229c85cf
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-29T10:40:17Z

spark sql accuracy passed

commit a3083c8ebd0ee7189b5d236c52e790269179fb09
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-04T06:56:50Z

rule param not done

commit f62c9a9ebd4c6bf420d701747f48b746fbee7d28
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-04T14:54:55Z

param

commit 1101dab467a8550e63f608b4daa4b169c66d9178
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-04T15:35:34Z

compile

commit b16a005c019a3545ac5bf86b858715299cb9858e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-05T04:05:46Z

slow

commit 2f1243c36629f98ba4e2f0480da25414c5717cfb
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-05T04:36:03Z

test

commit 982d1742b96d4ce7d4ba5e1324db92a9296f8e79
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-05T08:02:40Z

pass batch test

commit 2f36ab653d0efc53fe223389a1a21cb1dc702b29
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-07T06:34:51Z

tmstNameOpt

commit c6a5650f1a2410ac26c97cddc96afaecdd54a67d
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-07T08:52:41Z

hdfs persist and evaluate.rule

commit 26a235e113b947431f1c262cbf3aed31f8816549
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-07T08:54:09Z

merge conflict

commit a7e28bb5cb6f2ecae4cec706b9c5a5d7cf29a4aa
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-07T13:25:13Z

pass batch, waiting for test speed

commit 6da53e965b931b722953abf385964b91c74f2afc
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-08T02:43:18Z

pre-proc done

commit 642d4a3575a5b1e3843bf5337fd16e95ee3dfaa9
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-11T09:43:57Z

hdfs persist enhance

commit 472a1f998936b476becc685a7a57b1ce680108a0
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-13T02:53:32Z

register table

commit 3a00dee836693f3a4345c101f941b590eb516277
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-13T10:02:13Z

manage temp tables, waiting for ignore cache group

commit ce4558d17f15cf370ab36f707801919fb2939ddc
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-14T02:04:53Z

enable ignore cache for accuracy opr

commit ff5797f627058f81da5135cc0a70c01e0870b98b
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-14T02:19:32Z

clear metrics internal columns

commit f44396f5bc5f04ad80e828d450a1798e083e2149
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-14T02:21:30Z

Merge branch 'tmst' into tmst-crawler

commit 651cf3e8ffebe8e2981e0c993f4f9d1f00457878
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-14T03:16:28Z

hdfs

commit f3e81b1261b00fc09c9b1703662c26b9ec969c08
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-15T06:19:42Z

not done

commit 08bd2242b7db577c902932a0894d133ffc9551ff
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-18T05:25:03Z

optimize accuracy

commit ca0e8c264cdc457fe98532545d99ebaa11e86f14
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-18T10:11:53Z

opt accuracy

commit 0b664747efaaabb3e2ebd68f6adf1b31fad0f671
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-20T08:37:40Z

performance bad

commit 725ee4009da27bf694c4f932fac5def690aedc8b
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-24T14:29:50Z

define config json, need to treat metric and record persist as extra 
process outside of pipeline, batch and streaming with different rule adaptor, 
to treat tmst column

commit 5a5dff6a54f77dc7db6d1414643c3255580c
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-24T14:42:37Z

streaming accuracy config json update, persist processes in batch and 
streaming mode are different, considering take different process in data source 
pre-process

commit f2ad36e4a0821a1e454fa3ef8a7da27c349c129e
Author: Lionel Liu <bhlx3

[GitHub] incubator-griffin pull request #248: [GRIFFIN-138] update readme.md, highlig...

2018-04-07 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/248

[GRIFFIN-138] update readme.md, highlighted docker guide

update readme.md, describe docker guide, debug guide and deploy guide in 
order for specific users

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin tmst

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/248.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #248


commit 205f6e284ae74c8a6d5cb8e27ab0395c946d9340
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-24T03:16:37Z

mongo ing

commit 712a5a7c990a35f84fbf0d271bfa3f609740dc71
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-24T03:17:47Z

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

commit 184bd1def193a30413b546fff1dc24bf7b5e27a0
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-26T11:04:27Z

add mongo persist

commit d9d0badd156765c94665d7525331c44e03aa5e5e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-27T05:56:47Z

replace head of selection

commit f267c4fe7264d083141cbd2915051f6fd8b8cadc
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-27T06:34:02Z

save metric name in details

commit 64badb5039f4e8a98fed3d61b575008519f13a0e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-27T08:12:45Z

accu not doen

commit 52b0b29f97587719551e8f87ba4f9c904679111b
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-27T10:04:54Z

fix count(*) bug

commit b99ad25f5e64601192482008d63463846d3671e1
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-27T14:43:11Z

accu run

commit feca9e3e4be528d217a9a649c297775ca0c9f7e7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-27T15:02:37Z

fix bug of as array

commit 08b47429cf32890e3de21d8ed0f73284c97b8c46
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-28T02:06:29Z

fix bug of accuracy all matched update data ignore

commit d8b371de091b954c8cd0df6eaf8bcfedbc2ecf19
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-28T04:49:28Z

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

commit 58f15669030b92319665836d5e74ece5b5976367
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-28T07:41:49Z

add distinct support in griffin

commit a5edc86085593b98d579d937bd15181e1a912fce
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-28T08:20:40Z

init

commit 0c9397b60e8466337c43cd318ba60dd221488db6
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-28T10:44:02Z

spark sql works

commit 1e858f18a0343c4eb2a5a58813f40730229c85cf
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-29T10:40:17Z

spark sql accuracy passed

commit a3083c8ebd0ee7189b5d236c52e790269179fb09
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-04T06:56:50Z

rule param not done

commit f62c9a9ebd4c6bf420d701747f48b746fbee7d28
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-04T14:54:55Z

param

commit 1101dab467a8550e63f608b4daa4b169c66d9178
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-04T15:35:34Z

compile

commit b16a005c019a3545ac5bf86b858715299cb9858e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-05T04:05:46Z

slow

commit 2f1243c36629f98ba4e2f0480da25414c5717cfb
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-05T04:36:03Z

test

commit 982d1742b96d4ce7d4ba5e1324db92a9296f8e79
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-05T08:02:40Z

pass batch test

commit 2f36ab653d0efc53fe223389a1a21cb1dc702b29
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-07T06:34:51Z

tmstNameOpt

commit c6a5650f1a2410ac26c97cddc96afaecdd54a67d
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-07T08:52:41Z

hdfs persist and evaluate.rule

commit 26a235e113b947431f1c262cbf3aed31f8816549
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-07T08:54:09Z

merge conflict

commit a7e28bb5cb6f2ecae4cec706b9c5a5d7cf29a4aa
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-07T13:25:13Z

pass batch, waiting for test speed

commit 6da53e965b931b722953abf385964b91c74f2afc
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-08T02:43:18Z

pre-proc done

commit 642d4a3575a5b1e3843bf5337fd16e95ee3dfaa9
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-11T09:43:57Z

hdfs persist enhance

commit 472a1f998936b476becc685a7a57b1ce680108a0
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-13T02:53:32Z

register table

commit 3a00dee836693f3a4345c101f941b590eb516277
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-13T10:02:13Z

manage temp tables, waiting for ignore cache group

commit ce4558d17f15cf370ab36f707801919fb2939ddc
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-14T02:04:53Z

enable ignore cache for accuracy opr




---


[GitHub] incubator-griffin pull request #247: Update KEYS file

2018-04-01 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/247

Update KEYS file



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin tmst

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/247.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #247


commit b1b0616950395f660fbea44c4dd376bfc93547e8
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T09:03:35Z

streaming running

commit cac6fc8ae4f2c846f068e54fae9569e682528363
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T09:45:19Z

not fixed bug: data source head name

commit 63617fe0ad97cda376218043eaa65aa9b3662446
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T09:49:51Z

hdfs

commit 205f6e284ae74c8a6d5cb8e27ab0395c946d9340
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-24T03:16:37Z

mongo ing

commit 712a5a7c990a35f84fbf0d271bfa3f609740dc71
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-24T03:17:47Z

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

commit 184bd1def193a30413b546fff1dc24bf7b5e27a0
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-26T11:04:27Z

add mongo persist

commit d9d0badd156765c94665d7525331c44e03aa5e5e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-27T05:56:47Z

replace head of selection

commit f267c4fe7264d083141cbd2915051f6fd8b8cadc
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-27T06:34:02Z

save metric name in details

commit 64badb5039f4e8a98fed3d61b575008519f13a0e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-27T08:12:45Z

accu not doen

commit 52b0b29f97587719551e8f87ba4f9c904679111b
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-27T10:04:54Z

fix count(*) bug

commit b99ad25f5e64601192482008d63463846d3671e1
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-27T14:43:11Z

accu run

commit feca9e3e4be528d217a9a649c297775ca0c9f7e7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-27T15:02:37Z

fix bug of as array

commit 08b47429cf32890e3de21d8ed0f73284c97b8c46
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-28T02:06:29Z

fix bug of accuracy all matched update data ignore

commit d8b371de091b954c8cd0df6eaf8bcfedbc2ecf19
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-28T04:49:28Z

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

commit 58f15669030b92319665836d5e74ece5b5976367
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-28T07:41:49Z

add distinct support in griffin

commit a5edc86085593b98d579d937bd15181e1a912fce
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-28T08:20:40Z

init

commit 0c9397b60e8466337c43cd318ba60dd221488db6
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-28T10:44:02Z

spark sql works

commit 1e858f18a0343c4eb2a5a58813f40730229c85cf
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-29T10:40:17Z

spark sql accuracy passed

commit a3083c8ebd0ee7189b5d236c52e790269179fb09
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-04T06:56:50Z

rule param not done

commit f62c9a9ebd4c6bf420d701747f48b746fbee7d28
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-04T14:54:55Z

param

commit 1101dab467a8550e63f608b4daa4b169c66d9178
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-04T15:35:34Z

compile

commit b16a005c019a3545ac5bf86b858715299cb9858e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-05T04:05:46Z

slow

commit 2f1243c36629f98ba4e2f0480da25414c5717cfb
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-05T04:36:03Z

test

commit 982d1742b96d4ce7d4ba5e1324db92a9296f8e79
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-05T08:02:40Z

pass batch test

commit 2f36ab653d0efc53fe223389a1a21cb1dc702b29
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-07T06:34:51Z

tmstNameOpt

commit c6a5650f1a2410ac26c97cddc96afaecdd54a67d
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-07T08:52:41Z

hdfs persist and evaluate.rule

commit 26a235e113b947431f1c262cbf3aed31f8816549
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-07T08:54:09Z

merge conflict

commit a7e28bb5cb6f2ecae4cec706b9c5a5d7cf29a4aa
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-07T13:25:13Z

pass batch, waiting for test speed

commit 6da53e965b931b722953abf385964b91c74f2afc
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-08T02:43:18Z

pre-proc done

commit 642d4a3575a5b1e3843bf5337fd16e95ee3dfaa9
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-11T09:43:57Z

hdfs persist enhance




---


[GitHub] incubator-griffin pull request #244: add notice files

2018-03-29 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/244

add notice files



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin tmst

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/244.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #244


commit 752d76a11b248fee9cbfa8b1bced969062ccab7e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T02:15:23Z

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

commit 761d6d10070358e174a00af906825cd05bdc4a7e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T02:31:47Z

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

commit 4b25faa9100fb4f3cc94d85259ce7b8392b424c5
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T06:09:57Z

streaming debug

commit aa19d760320ff83aa0b881d714356ca8e9b0599d
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T06:58:46Z

debug streaming

commit 579afc9a60d23dae7bd27d92c520d7a7b325cf05
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T08:21:23Z

not done

commit b1b0616950395f660fbea44c4dd376bfc93547e8
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T09:03:35Z

streaming running

commit cac6fc8ae4f2c846f068e54fae9569e682528363
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T09:45:19Z

not fixed bug: data source head name

commit 63617fe0ad97cda376218043eaa65aa9b3662446
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T09:49:51Z

hdfs

commit 205f6e284ae74c8a6d5cb8e27ab0395c946d9340
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-24T03:16:37Z

mongo ing

commit 712a5a7c990a35f84fbf0d271bfa3f609740dc71
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-24T03:17:47Z

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

commit 184bd1def193a30413b546fff1dc24bf7b5e27a0
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-26T11:04:27Z

add mongo persist

commit d9d0badd156765c94665d7525331c44e03aa5e5e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-27T05:56:47Z

replace head of selection

commit f267c4fe7264d083141cbd2915051f6fd8b8cadc
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-27T06:34:02Z

save metric name in details

commit 64badb5039f4e8a98fed3d61b575008519f13a0e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-27T08:12:45Z

    accu not doen

commit 52b0b29f97587719551e8f87ba4f9c904679111b
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-27T10:04:54Z

fix count(*) bug

commit b99ad25f5e64601192482008d63463846d3671e1
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-27T14:43:11Z

accu run

commit feca9e3e4be528d217a9a649c297775ca0c9f7e7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-27T15:02:37Z

fix bug of as array

commit 08b47429cf32890e3de21d8ed0f73284c97b8c46
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-28T02:06:29Z

fix bug of accuracy all matched update data ignore

commit d8b371de091b954c8cd0df6eaf8bcfedbc2ecf19
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-28T04:49:28Z

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

commit 58f15669030b92319665836d5e74ece5b5976367
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-28T07:41:49Z

add distinct support in griffin

commit a5edc86085593b98d579d937bd15181e1a912fce
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-28T08:20:40Z

init

commit 0c9397b60e8466337c43cd318ba60dd221488db6
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-28T10:44:02Z

spark sql works

commit 1e858f18a0343c4eb2a5a58813f40730229c85cf
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-29T10:40:17Z

spark sql accuracy passed

commit a3083c8ebd0ee7189b5d236c52e790269179fb09
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-04T06:56:50Z

rule param not done

commit f62c9a9ebd4c6bf420d701747f48b746fbee7d28
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-04T14:54:55Z

param

commit 1101dab467a8550e63f608b4daa4b169c66d9178
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-04T15:35:34Z

compile

commit b16a005c019a3545ac5bf86b858715299cb9858e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-05T04:05:46Z

slow

commit 2f1243c36629f98ba4e2f0480da25414c5717cfb
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-05T04:36:03Z

test

commit 982d1742b96d4ce7d4ba5e1324db92a9296f8e79
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-05T08:02:40Z

pass batch test

commit 2f36ab653d0efc53fe223389a1a21cb1dc702b29
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-07T06:34:51Z

tmstNameOpt




---


[GitHub] incubator-griffin pull request #243: Document of dev env build based on new ...

2018-03-29 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/243

Document of dev env build based on new built docker image with postgresql



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin tmst

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/243.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #243


commit 45a29743795d4fa00cd81ca55d2b60429c69d61a
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-22T09:11:16Z

tmst

commit 0062c74401a76f573930cd5bb52fc5864057f4f6
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-22T09:13:11Z

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

commit 9ea771d018ff773eedaa890430e3292055a732d7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-22T13:27:44Z

time info and rule info

commit 752d76a11b248fee9cbfa8b1bced969062ccab7e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T02:15:23Z

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

commit 761d6d10070358e174a00af906825cd05bdc4a7e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T02:31:47Z

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

commit 4b25faa9100fb4f3cc94d85259ce7b8392b424c5
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T06:09:57Z

streaming debug

commit aa19d760320ff83aa0b881d714356ca8e9b0599d
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T06:58:46Z

debug streaming

commit 579afc9a60d23dae7bd27d92c520d7a7b325cf05
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T08:21:23Z

not done

commit b1b0616950395f660fbea44c4dd376bfc93547e8
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T09:03:35Z

streaming running

commit cac6fc8ae4f2c846f068e54fae9569e682528363
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T09:45:19Z

not fixed bug: data source head name

commit 63617fe0ad97cda376218043eaa65aa9b3662446
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T09:49:51Z

hdfs

commit 205f6e284ae74c8a6d5cb8e27ab0395c946d9340
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-24T03:16:37Z

mongo ing

commit 712a5a7c990a35f84fbf0d271bfa3f609740dc71
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-24T03:17:47Z

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

commit 184bd1def193a30413b546fff1dc24bf7b5e27a0
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-26T11:04:27Z

add mongo persist

commit d9d0badd156765c94665d7525331c44e03aa5e5e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-27T05:56:47Z

replace head of selection

commit f267c4fe7264d083141cbd2915051f6fd8b8cadc
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-27T06:34:02Z

save metric name in details

commit 64badb5039f4e8a98fed3d61b575008519f13a0e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-27T08:12:45Z

accu not doen

commit 52b0b29f97587719551e8f87ba4f9c904679111b
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-27T10:04:54Z

fix count(*) bug

commit b99ad25f5e64601192482008d63463846d3671e1
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-27T14:43:11Z

accu run

commit feca9e3e4be528d217a9a649c297775ca0c9f7e7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-27T15:02:37Z

fix bug of as array

commit 08b47429cf32890e3de21d8ed0f73284c97b8c46
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-28T02:06:29Z

fix bug of accuracy all matched update data ignore

commit d8b371de091b954c8cd0df6eaf8bcfedbc2ecf19
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-28T04:49:28Z

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

commit 58f15669030b92319665836d5e74ece5b5976367
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-28T07:41:49Z

add distinct support in griffin

commit a5edc86085593b98d579d937bd15181e1a912fce
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-28T08:20:40Z

init

commit 0c9397b60e8466337c43cd318ba60dd221488db6
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-28T10:44:02Z

spark sql works

commit 1e858f18a0343c4eb2a5a58813f40730229c85cf
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-29T10:40:17Z

spark sql accuracy passed

commit a3083c8ebd0ee7189b5d236c52e790269179fb09
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-04T06:56:50Z

rule param not done

commit f62c9a9ebd4c6bf420d701747f48b746fbee7d28
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-12-04T14:54:55Z

param

commit 1101dab467a8550e63f608b4daa4

[GitHub] incubator-griffin pull request #239: modify licenses

2018-03-28 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/239

modify licenses



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin tmst

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/239.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #239






---


[GitHub] incubator-griffin pull request #237: enable the option for streaming job cle...

2018-03-22 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/237

enable the option for streaming job clear checkpoint directory before 
process



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin tmst

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/237.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #237


commit ffca474355be0d8c3ab8b3a99181fb8616ea6ebd
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-20T06:08:53Z

regex matches

commit f5200e8f782d5052ef601bf85b10675f12e9013f
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-20T06:16:59Z

update ignore

commit 32c02ea7475de6174d0889e89ef8d3b797d98c12
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-21T07:13:03Z

not finished for tmst ignoring

commit 1f77523fc6af8fe23670448d98f6be693ecac13c
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-21T07:13:47Z

ignore

commit 7349cb8b84af88015594f48b2a26fd6bb1fac2af
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-21T07:39:05Z

fix bug for livy ignoring backtick `

commit 357419fc953e4745c7b53965411d955dbc087c33
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-21T07:39:57Z

fix bug for livy ignoring backtick `

commit 2308680c1b847b3ef9f7eced03aab3bd11e66140
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-21T09:11:05Z

test

commit 21bb7a91a934c6810bf69e794d5faf03bd6ae3c3
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-21T09:47:43Z

fix alias bug

commit 33f2c6a17237bd25c47fe5eeca56caec5a8f477d
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-21T10:05:28Z

merge

commit 49da9ca38dc46819c42d4bfdec26d6c41416aa9a
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-22T06:34:35Z

tmst init

commit 649acb8b1cb61c38e157f3b0f4a61d6d76559b23
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-22T06:35:51Z

ignore

commit 417926a93683ebf2e1205344d52432c05bf19745
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-22T06:38:33Z

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

commit ba22bf75a98c3adb593d2c96e44cd881a968d3a2
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-22T08:49:05Z

tmst

commit 45a29743795d4fa00cd81ca55d2b60429c69d61a
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-22T09:11:16Z

    tmst

commit 0062c74401a76f573930cd5bb52fc5864057f4f6
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-22T09:13:11Z

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

commit 9ea771d018ff773eedaa890430e3292055a732d7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-22T13:27:44Z

    time info and rule info

commit 752d76a11b248fee9cbfa8b1bced969062ccab7e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T02:15:23Z

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

commit 761d6d10070358e174a00af906825cd05bdc4a7e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T02:31:47Z

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

commit 4b25faa9100fb4f3cc94d85259ce7b8392b424c5
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T06:09:57Z

streaming debug

commit aa19d760320ff83aa0b881d714356ca8e9b0599d
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T06:58:46Z

debug streaming

commit 579afc9a60d23dae7bd27d92c520d7a7b325cf05
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T08:21:23Z

not done

commit b1b0616950395f660fbea44c4dd376bfc93547e8
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T09:03:35Z

streaming running

commit cac6fc8ae4f2c846f068e54fae9569e682528363
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T09:45:19Z

not fixed bug: data source head name

commit 63617fe0ad97cda376218043eaa65aa9b3662446
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T09:49:51Z

hdfs

commit 205f6e284ae74c8a6d5cb8e27ab0395c946d9340
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-24T03:16:37Z

mongo ing

commit 712a5a7c990a35f84fbf0d271bfa3f609740dc71
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-24T03:17:47Z

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

commit 184bd1def193a30413b546fff1dc24bf7b5e27a0
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-26T11:04:27Z

add mongo persist

commit d9d0badd156765c94665d7525331c44e03aa5e5e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-27T05:56:47Z

replace head of selection

commit f267c4fe7264d083141cbd2915051f6fd8b8cadc
Author: Lionel Liu <bhlx3lyx7@...>

[GitHub] incubator-griffin pull request #236: New banner for griffin server

2018-03-22 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/236

New banner for griffin server



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin tmst

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/236.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #236


commit c553087f3434ac28bd6e2e313dc0ba29f593e12d
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-20T02:58:37Z

collectable

commit 1db9b2156802cc67936d3887a1ff93f354fa59de
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-20T03:08:28Z

partitions -> where

commit fc533a78c1de9b5e6c91151900d795388d43211a
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-20T05:13:44Z

es docker add 9300 mapping

commit ffca474355be0d8c3ab8b3a99181fb8616ea6ebd
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-20T06:08:53Z

regex matches

commit f5200e8f782d5052ef601bf85b10675f12e9013f
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-20T06:16:59Z

update ignore

commit 32c02ea7475de6174d0889e89ef8d3b797d98c12
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-21T07:13:03Z

not finished for tmst ignoring

commit 1f77523fc6af8fe23670448d98f6be693ecac13c
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-21T07:13:47Z

ignore

commit 7349cb8b84af88015594f48b2a26fd6bb1fac2af
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-21T07:39:05Z

fix bug for livy ignoring backtick `

commit 357419fc953e4745c7b53965411d955dbc087c33
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-21T07:39:57Z

fix bug for livy ignoring backtick `

commit 2308680c1b847b3ef9f7eced03aab3bd11e66140
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-21T09:11:05Z

test

commit 21bb7a91a934c6810bf69e794d5faf03bd6ae3c3
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-21T09:47:43Z

fix alias bug

commit 33f2c6a17237bd25c47fe5eeca56caec5a8f477d
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-21T10:05:28Z

merge

commit 49da9ca38dc46819c42d4bfdec26d6c41416aa9a
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-22T06:34:35Z

    tmst init

commit 649acb8b1cb61c38e157f3b0f4a61d6d76559b23
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-22T06:35:51Z

    ignore

commit 417926a93683ebf2e1205344d52432c05bf19745
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-22T06:38:33Z

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

commit ba22bf75a98c3adb593d2c96e44cd881a968d3a2
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-22T08:49:05Z

tmst

commit 45a29743795d4fa00cd81ca55d2b60429c69d61a
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-22T09:11:16Z

tmst

commit 0062c74401a76f573930cd5bb52fc5864057f4f6
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-22T09:13:11Z

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

commit 9ea771d018ff773eedaa890430e3292055a732d7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-22T13:27:44Z

time info and rule info

commit 752d76a11b248fee9cbfa8b1bced969062ccab7e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T02:15:23Z

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

commit 761d6d10070358e174a00af906825cd05bdc4a7e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T02:31:47Z

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

commit 4b25faa9100fb4f3cc94d85259ce7b8392b424c5
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T06:09:57Z

streaming debug

commit aa19d760320ff83aa0b881d714356ca8e9b0599d
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T06:58:46Z

debug streaming

commit 579afc9a60d23dae7bd27d92c520d7a7b325cf05
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T08:21:23Z

not done

commit b1b0616950395f660fbea44c4dd376bfc93547e8
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T09:03:35Z

streaming running

commit cac6fc8ae4f2c846f068e54fae9569e682528363
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T09:45:19Z

not fixed bug: data source head name

commit 63617fe0ad97cda376218043eaa65aa9b3662446
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T09:49:51Z

hdfs

commit 205f6e284ae74c8a6d5cb8e27ab0395c946d9340
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-24T03:16:37Z

mongo ing

commit 712a5a7c990a35f84fbf0d271bfa3f609740dc71
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-24T03:17:47Z

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

commit 184bd1def193a30413b546fff1dc24bf7b5e27a0
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-26T11:04:27Z

add mongo persist




---


[GitHub] incubator-griffin pull request #235: support multiple streaming data connect...

2018-03-21 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/235

support multiple streaming data connector, and union dataframe by name

- multiple streaming data connector
- union dataframe by name

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin tmst

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/235.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #235


commit 922b09ec387f66e9a811bee75911f3b93bc25f4b
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-08T09:09:18Z

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

commit 834dd50f169e64b284d8e91eb4a7e8907e43e60f
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-08T09:09:32Z

Merge branch 'apache-master' into docker

commit 274e031fc295882f47f4322518644a1ab42edfbd
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-10T06:45:58Z

fix alias bug about `

commit cdcef455b567bff6985b2a8243eb9a957f810799
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-16T02:56:28Z

update regex

commit c553087f3434ac28bd6e2e313dc0ba29f593e12d
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-20T02:58:37Z

collectable

commit 1db9b2156802cc67936d3887a1ff93f354fa59de
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-20T03:08:28Z

partitions -> where

commit fc533a78c1de9b5e6c91151900d795388d43211a
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-20T05:13:44Z

es docker add 9300 mapping

commit ffca474355be0d8c3ab8b3a99181fb8616ea6ebd
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-20T06:08:53Z

regex matches

commit f5200e8f782d5052ef601bf85b10675f12e9013f
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-20T06:16:59Z

update ignore

commit 32c02ea7475de6174d0889e89ef8d3b797d98c12
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-21T07:13:03Z

not finished for tmst ignoring

commit 1f77523fc6af8fe23670448d98f6be693ecac13c
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-21T07:13:47Z

ignore

commit 7349cb8b84af88015594f48b2a26fd6bb1fac2af
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-21T07:39:05Z

fix bug for livy ignoring backtick `

commit 357419fc953e4745c7b53965411d955dbc087c33
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-21T07:39:57Z

fix bug for livy ignoring backtick `

commit 2308680c1b847b3ef9f7eced03aab3bd11e66140
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-21T09:11:05Z

test

commit 21bb7a91a934c6810bf69e794d5faf03bd6ae3c3
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-21T09:47:43Z

    fix alias bug

commit 33f2c6a17237bd25c47fe5eeca56caec5a8f477d
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-21T10:05:28Z

merge

commit 49da9ca38dc46819c42d4bfdec26d6c41416aa9a
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-22T06:34:35Z

tmst init

commit 649acb8b1cb61c38e157f3b0f4a61d6d76559b23
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-22T06:35:51Z

ignore

commit 417926a93683ebf2e1205344d52432c05bf19745
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-22T06:38:33Z

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

commit ba22bf75a98c3adb593d2c96e44cd881a968d3a2
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-22T08:49:05Z

tmst

commit 45a29743795d4fa00cd81ca55d2b60429c69d61a
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-22T09:11:16Z

tmst

commit 0062c74401a76f573930cd5bb52fc5864057f4f6
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-22T09:13:11Z

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

commit 9ea771d018ff773eedaa890430e3292055a732d7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-22T13:27:44Z

time info and rule info

commit 752d76a11b248fee9cbfa8b1bced969062ccab7e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T02:15:23Z

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

commit 761d6d10070358e174a00af906825cd05bdc4a7e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T02:31:47Z

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

commit 4b25faa9100fb4f3cc94d85259ce7b8392b424c5
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T06:09:57Z

streaming debug

commit aa19d760320ff83aa0b881d714356ca8e9b0599d
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-23T06:58:46Z

debug streaming

commit 579afc9a60d23dae7bd27d92c520d7a7b325cf05
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11

[GitHub] incubator-griffin-site pull request #1: modify plan.md

2018-03-18 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin-site/pull/1

modify plan.md



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin-site update

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin-site/pull/1.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #1


commit 14e4c9082d3908ac21ada1fcaaf3dff7abc94c63
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-03-18T08:45:16Z

modify plan




---


[GitHub] incubator-griffin pull request #233: Add license to DataFrameCaches.scala

2018-03-06 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/233

Add license to DataFrameCaches.scala



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin tmst

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/233.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #233


commit a3a0be8bc122c69a5eedab382e67a2d4705a4cc2
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T10:01:50Z

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

commit 90d5208bc79f5179351efc4f4e6eee7d74cac785
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T10:01:57Z

Merge branch 'apache-master' into docker

commit 4034d94a445fce3ed7997571bcd9be65e6baf1ca
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T05:50:27Z

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

commit 26f6753d96a148f599944ec6b011e45504ae4cc9
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T05:50:45Z

Merge branch 'apache-master' into docker

commit 4132fc291022b84f639a52ac4b1690dcb33c34e1
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T06:00:28Z

start timestamp configuration

commit c826b71a192e95700057f95f8aed16280c70a665
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T07:51:52Z

enhance as clause for selection clause

commit 3bf10b4cbd305f447ddf9a00dd974f170b0be646
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T07:54:11Z

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

commit 100338f341b40e7ba3cfbb1ee43baa12974b7bce
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T07:54:24Z

Merge branch 'apache-master' into docker

commit d135b03cb0e185bcebd8e9a91e6676ffc960be6c
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T09:13:42Z

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

commit 4626f6a10c46fc7d6b047af59b58b420a6d8b684
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T09:14:00Z

Merge branch 'apache-master' into docker

commit e82f1fdc9139f9d0aecf7bc65fe17a83a1be43ad
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-07T04:45:50Z

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

commit 44469e28934e5774d384697659f92c90065ea444
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-07T04:45:58Z

Merge branch 'apache-master' into docker

commit 28b471de2953944ee4a333bc4ae7d3910183ad3e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-07T08:34:17Z

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

commit 1e843c5b57162792a4dd4cda163d3683aadb7eb8
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-07T09:06:29Z

Merge branch 'apache-master' into docker

commit 9f62e5922af5ab106038304f3544b3715ce2809b
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-07T09:41:16Z

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

commit 8fe3dcdc39d83a727f4f250a985a56a36665b513
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-07T09:42:30Z

Merge branch 'apache-master' into docker

commit 9d1a97de455dd96f04b39f44c74ec3c9fb764f5b
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-08T06:07:31Z

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

commit fa2233c4bcac6a487461276d9c9ef5ed8fa418ee
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-08T06:21:33Z

Merge branch 'apache-master' into docker

commit 922b09ec387f66e9a811bee75911f3b93bc25f4b
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-08T09:09:18Z

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

commit 834dd50f169e64b284d8e91eb4a7e8907e43e60f
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-08T09:09:32Z

    Merge branch 'apache-master' into docker

commit 274e031fc295882f47f4322518644a1ab42edfbd
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-10T06:45:58Z

fix alias bug about `

commit cdcef455b567bff6985b2a8243eb9a957f810799
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-16T02:56:28Z

update regex

commit c553087f3434ac28bd6e2e313dc0ba29f593e12d
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-20T02:58:37Z

collectable

commit 1db9b2156802cc67936d3887a1ff93f354fa59de
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-20T03:08:28Z

partitions -> where

commit fc533a78c1de9b5e6c91151900d795388d43211a
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-20T05:13:44Z

es docker add

[GitHub] incubator-griffin pull request #232: chart data timestamp bug fix

2018-03-05 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/232

chart data timestamp bug fix



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin tmst

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/232.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #232


commit fb4c47a8e9f1b0ea2a03c240cca2318a0857c798
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T08:36:02Z

Merge branch 'apache-master' into docker

commit 41e3a07479ea56ab749de386b092eec6f9ec0f33
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T09:58:41Z

persist try

commit e1399b071bde0466e29743c2bc4bc1165d409f7f
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T10:00:03Z

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

commit a3a0be8bc122c69a5eedab382e67a2d4705a4cc2
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T10:01:50Z

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

commit 90d5208bc79f5179351efc4f4e6eee7d74cac785
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T10:01:57Z

Merge branch 'apache-master' into docker

commit 4034d94a445fce3ed7997571bcd9be65e6baf1ca
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T05:50:27Z

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

commit 26f6753d96a148f599944ec6b011e45504ae4cc9
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T05:50:45Z

Merge branch 'apache-master' into docker

commit 4132fc291022b84f639a52ac4b1690dcb33c34e1
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T06:00:28Z

start timestamp configuration

commit c826b71a192e95700057f95f8aed16280c70a665
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T07:51:52Z

enhance as clause for selection clause

commit 3bf10b4cbd305f447ddf9a00dd974f170b0be646
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T07:54:11Z

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

commit 100338f341b40e7ba3cfbb1ee43baa12974b7bce
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T07:54:24Z

Merge branch 'apache-master' into docker

commit d135b03cb0e185bcebd8e9a91e6676ffc960be6c
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T09:13:42Z

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

commit 4626f6a10c46fc7d6b047af59b58b420a6d8b684
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T09:14:00Z

Merge branch 'apache-master' into docker

commit e82f1fdc9139f9d0aecf7bc65fe17a83a1be43ad
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-07T04:45:50Z

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

commit 44469e28934e5774d384697659f92c90065ea444
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-07T04:45:58Z

Merge branch 'apache-master' into docker

commit 28b471de2953944ee4a333bc4ae7d3910183ad3e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-07T08:34:17Z

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

commit 1e843c5b57162792a4dd4cda163d3683aadb7eb8
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-07T09:06:29Z

Merge branch 'apache-master' into docker

commit 9f62e5922af5ab106038304f3544b3715ce2809b
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-07T09:41:16Z

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

commit 8fe3dcdc39d83a727f4f250a985a56a36665b513
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-07T09:42:30Z

Merge branch 'apache-master' into docker

commit 9d1a97de455dd96f04b39f44c74ec3c9fb764f5b
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-08T06:07:31Z

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

commit fa2233c4bcac6a487461276d9c9ef5ed8fa418ee
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-08T06:21:33Z

Merge branch 'apache-master' into docker

commit 922b09ec387f66e9a811bee75911f3b93bc25f4b
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-08T09:09:18Z

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

commit 834dd50f169e64b284d8e91eb4a7e8907e43e60f
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-08T09:09:32Z

Merge branch 'apache-master' into docker

commit 274e031fc295882f47f4322518644a1ab42edfbd
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-10T06:45:58Z

fix alias bug about `

commit cdcef455b567bff6985b2a8243eb9a957f810799
A

[GitHub] incubator-griffin pull request #230: remove measure demo docker document

2018-03-04 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/230

remove measure demo docker document



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin tmst

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/230.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #230


commit 7590589a55f4457ada079e3234147a6ed68472ad
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T08:31:52Z

fix bug of org/measure/jobs

commit 1114ed916c1b8e567482b70d16745a6bbe0e3d73
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T08:34:56Z

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

commit e4213b5501f941235e55bfbd1061b8ebaa8084d3
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T08:35:48Z

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

commit fb4c47a8e9f1b0ea2a03c240cca2318a0857c798
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T08:36:02Z

Merge branch 'apache-master' into docker

commit 41e3a07479ea56ab749de386b092eec6f9ec0f33
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T09:58:41Z

persist try

commit e1399b071bde0466e29743c2bc4bc1165d409f7f
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T10:00:03Z

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

commit a3a0be8bc122c69a5eedab382e67a2d4705a4cc2
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T10:01:50Z

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

commit 90d5208bc79f5179351efc4f4e6eee7d74cac785
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T10:01:57Z

Merge branch 'apache-master' into docker

commit 4034d94a445fce3ed7997571bcd9be65e6baf1ca
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T05:50:27Z

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

commit 26f6753d96a148f599944ec6b011e45504ae4cc9
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T05:50:45Z

Merge branch 'apache-master' into docker

commit 4132fc291022b84f639a52ac4b1690dcb33c34e1
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T06:00:28Z

start timestamp configuration

commit c826b71a192e95700057f95f8aed16280c70a665
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T07:51:52Z

enhance as clause for selection clause

commit 3bf10b4cbd305f447ddf9a00dd974f170b0be646
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T07:54:11Z

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

commit 100338f341b40e7ba3cfbb1ee43baa12974b7bce
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T07:54:24Z

Merge branch 'apache-master' into docker

commit d135b03cb0e185bcebd8e9a91e6676ffc960be6c
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T09:13:42Z

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

commit 4626f6a10c46fc7d6b047af59b58b420a6d8b684
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T09:14:00Z

Merge branch 'apache-master' into docker

commit e82f1fdc9139f9d0aecf7bc65fe17a83a1be43ad
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-07T04:45:50Z

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

commit 44469e28934e5774d384697659f92c90065ea444
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-07T04:45:58Z

Merge branch 'apache-master' into docker

commit 28b471de2953944ee4a333bc4ae7d3910183ad3e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-07T08:34:17Z

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

commit 1e843c5b57162792a4dd4cda163d3683aadb7eb8
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-07T09:06:29Z

    Merge branch 'apache-master' into docker

commit 9f62e5922af5ab106038304f3544b3715ce2809b
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-07T09:41:16Z

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

commit 8fe3dcdc39d83a727f4f250a985a56a36665b513
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-07T09:42:30Z

Merge branch 'apache-master' into docker

commit 9d1a97de455dd96f04b39f44c74ec3c9fb764f5b
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-08T06:07:31Z

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

commit fa2233c4bcac6a487461276d9c9ef5ed8fa418ee
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-08T06:21:33Z

Merge branch 'apache-master

[GitHub] incubator-griffin pull request #225: fix distinctness bug of source begin tm...

2018-02-25 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/225

fix distinctness bug of source begin tmst



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin tmst

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/225.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #225


commit 8bc6c41f87b167d9fed3ac81fbd51d730d37a087
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T06:36:34Z

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

commit 7b26eacbf18a50cfe9e45cff0cc93b0bd7ddca81
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T06:36:49Z

Merge branch 'apache-master' into docker

commit 712b2b58d323553a2d3b1304145ed9970b459582
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T06:41:35Z

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

commit 02c48c600f70487b601d1b585d7ce617e035bdfe
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T09:40:27Z

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

commit 76d8e68d6fe39e2d9118bb02aa931960fc603942
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T09:40:46Z

Merge branch 'apache-master' into docker

commit 88ef127ec43309f90c8218a06d3c0ba65fd8767f
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T10:08:23Z

update test in service

commit 10d35083ad192639b9a6f2e53562c0d4827c14e7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T10:10:32Z

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

commit 6dfd057c2b9f33adc78e1365025dc3b911d83c93
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T10:10:44Z

Merge branch 'apache-master' into docker

commit 7590589a55f4457ada079e3234147a6ed68472ad
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T08:31:52Z

fix bug of org/measure/jobs

commit 1114ed916c1b8e567482b70d16745a6bbe0e3d73
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T08:34:56Z

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

commit e4213b5501f941235e55bfbd1061b8ebaa8084d3
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T08:35:48Z

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

commit fb4c47a8e9f1b0ea2a03c240cca2318a0857c798
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T08:36:02Z

Merge branch 'apache-master' into docker

commit 41e3a07479ea56ab749de386b092eec6f9ec0f33
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T09:58:41Z

persist try

commit e1399b071bde0466e29743c2bc4bc1165d409f7f
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T10:00:03Z

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

commit a3a0be8bc122c69a5eedab382e67a2d4705a4cc2
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T10:01:50Z

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

commit 90d5208bc79f5179351efc4f4e6eee7d74cac785
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T10:01:57Z

Merge branch 'apache-master' into docker

commit 4034d94a445fce3ed7997571bcd9be65e6baf1ca
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T05:50:27Z

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

commit 26f6753d96a148f599944ec6b011e45504ae4cc9
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T05:50:45Z

Merge branch 'apache-master' into docker

commit 4132fc291022b84f639a52ac4b1690dcb33c34e1
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T06:00:28Z

start timestamp configuration

commit c826b71a192e95700057f95f8aed16280c70a665
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T07:51:52Z

    enhance as clause for selection clause

commit 3bf10b4cbd305f447ddf9a00dd974f170b0be646
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T07:54:11Z

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

commit 100338f341b40e7ba3cfbb1ee43baa12974b7bce
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T07:54:24Z

Merge branch 'apache-master' into docker

commit d135b03cb0e185bcebd8e9a91e6676ffc960be6c
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T09:13:42Z

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

commit 4626f6a10c46fc7d6b047af59b58b420a6d8b684
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T09:14:00Z

Merge branch 'apache-master' into d

[GitHub] incubator-griffin pull request #223: modify version to 0.2.0, and fix bug of...

2018-02-12 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/223

modify version to 0.2.0, and fix bug of frontend when create job data range 
with time unit



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin tmst

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/223.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #223


commit f307409ebd3f1a0a806204ccf2d5fd56b2309284
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T08:43:53Z

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

commit 941f7f3f6dc236910e5518be6b46d218ac721d19
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T09:30:13Z

Merge branch 'apache-master' into docker

commit ee4e1e3e37f9d2e65a35ba3c24aa77c582873bad
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T09:54:57Z

readme

commit 9af0f041e918e8d481a09cf407b57b109a8f07b7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-31T10:11:41Z

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

commit 33ff3407a49238fa743e1d4c954c5de878b77d82
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-31T10:11:53Z

Merge branch 'apache-master' into docker

commit 24d66c815cf374dbdaf7a42591a055c9bf3c5ceb
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T06:36:18Z

docker readme

commit 8bc6c41f87b167d9fed3ac81fbd51d730d37a087
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T06:36:34Z

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

commit 7b26eacbf18a50cfe9e45cff0cc93b0bd7ddca81
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T06:36:49Z

Merge branch 'apache-master' into docker

commit 712b2b58d323553a2d3b1304145ed9970b459582
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T06:41:35Z

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

commit 02c48c600f70487b601d1b585d7ce617e035bdfe
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T09:40:27Z

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

commit 76d8e68d6fe39e2d9118bb02aa931960fc603942
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T09:40:46Z

Merge branch 'apache-master' into docker

commit 88ef127ec43309f90c8218a06d3c0ba65fd8767f
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T10:08:23Z

update test in service

commit 10d35083ad192639b9a6f2e53562c0d4827c14e7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T10:10:32Z

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

commit 6dfd057c2b9f33adc78e1365025dc3b911d83c93
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T10:10:44Z

Merge branch 'apache-master' into docker

commit 7590589a55f4457ada079e3234147a6ed68472ad
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T08:31:52Z

fix bug of org/measure/jobs

commit 1114ed916c1b8e567482b70d16745a6bbe0e3d73
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T08:34:56Z

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

commit e4213b5501f941235e55bfbd1061b8ebaa8084d3
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T08:35:48Z

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

commit fb4c47a8e9f1b0ea2a03c240cca2318a0857c798
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T08:36:02Z

Merge branch 'apache-master' into docker

commit 41e3a07479ea56ab749de386b092eec6f9ec0f33
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T09:58:41Z

persist try

commit e1399b071bde0466e29743c2bc4bc1165d409f7f
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T10:00:03Z

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

commit a3a0be8bc122c69a5eedab382e67a2d4705a4cc2
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T10:01:50Z

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

commit 90d5208bc79f5179351efc4f4e6eee7d74cac785
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T10:01:57Z

Merge branch 'apache-master' into docker

commit 4034d94a445fce3ed7997571bcd9be65e6baf1ca
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T05:50:27Z

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

commit 26f6753d96a148f599944ec6b011e45504ae4cc9
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-06T05:50:45Z

Merge branch 'apache-master' i

[GitHub] incubator-griffin pull request #220: clear compile temp table names in data ...

2018-02-09 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/220

clear compile temp table names in data connector



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin tmst

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/220.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #220


commit bd8a719ef7b98efb73ec30b7fce9e69d6c52621a
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:03:30Z

Merge branch 'apache-master' into docker

commit a68886b38793b4dac4d33f734749216c31f4b7a7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:19:57Z

add docker doc

commit 243ec9a4006de7fbe14c39be7eea9cd74b3d13fc
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:24:23Z

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

commit 0be45fb85abec62999e320b4e9aaf94f5f77395d
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:44:57Z

yml license

commit 0d75c6593695563c8b3b6a5528901e44f567d1ec
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:53:00Z

yaml license

commit 0c82eeb22c133b360f48cc29baf8678fb32070c3
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:55:18Z

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

commit 35659974d19bc307a14c7ec9cb4ef54987c95428
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:56:34Z

Merge branch 'apache-master' into docker

commit 106849794fc4b84adb89bced411711d6a69731ac
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T08:17:46Z

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

commit f307409ebd3f1a0a806204ccf2d5fd56b2309284
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T08:43:53Z

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

commit 941f7f3f6dc236910e5518be6b46d218ac721d19
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T09:30:13Z

Merge branch 'apache-master' into docker

commit ee4e1e3e37f9d2e65a35ba3c24aa77c582873bad
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T09:54:57Z

readme

commit 9af0f041e918e8d481a09cf407b57b109a8f07b7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-31T10:11:41Z

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

commit 33ff3407a49238fa743e1d4c954c5de878b77d82
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-31T10:11:53Z

Merge branch 'apache-master' into docker

commit 24d66c815cf374dbdaf7a42591a055c9bf3c5ceb
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T06:36:18Z

    docker readme

commit 8bc6c41f87b167d9fed3ac81fbd51d730d37a087
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T06:36:34Z

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

commit 7b26eacbf18a50cfe9e45cff0cc93b0bd7ddca81
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T06:36:49Z

Merge branch 'apache-master' into docker

commit 712b2b58d323553a2d3b1304145ed9970b459582
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T06:41:35Z

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

commit 02c48c600f70487b601d1b585d7ce617e035bdfe
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T09:40:27Z

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

commit 76d8e68d6fe39e2d9118bb02aa931960fc603942
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T09:40:46Z

Merge branch 'apache-master' into docker

commit 88ef127ec43309f90c8218a06d3c0ba65fd8767f
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T10:08:23Z

update test in service

commit 10d35083ad192639b9a6f2e53562c0d4827c14e7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T10:10:32Z

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

commit 6dfd057c2b9f33adc78e1365025dc3b911d83c93
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T10:10:44Z

Merge branch 'apache-master' into docker

commit 7590589a55f4457ada079e3234147a6ed68472ad
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T08:31:52Z

fix bug of org/measure/jobs

commit 1114ed916c1b8e567482b70d16745a6bbe0e3d73
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T08:34:56Z

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

commit e4213b5501f941235e55bfbd1061b8ebaa8084d3
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-03T08:35:48Z

Merge branch 'mas

[GitHub] incubator-griffin pull request #219: fix bug of data source cache, and enhan...

2018-02-08 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/219

fix bug of data source cache, and enhance distinctness



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin tmst

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/219.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #219


commit 328a16701d5681961fbe3c824f3a033ea36010a4
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-24T02:09:34Z

add comments

commit 46c2a4fccc6a83d12557b07cb72c740d19d5b529
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-25T03:23:53Z

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

commit 6c3cea1f96d8dbc694b76eec2ef52be8ed1b4ae6
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:02:22Z

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

commit bd8a719ef7b98efb73ec30b7fce9e69d6c52621a
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:03:30Z

Merge branch 'apache-master' into docker

commit a68886b38793b4dac4d33f734749216c31f4b7a7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:19:57Z

add docker doc

commit 243ec9a4006de7fbe14c39be7eea9cd74b3d13fc
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:24:23Z

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

commit 0be45fb85abec62999e320b4e9aaf94f5f77395d
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:44:57Z

yml license

commit 0d75c6593695563c8b3b6a5528901e44f567d1ec
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:53:00Z

yaml license

commit 0c82eeb22c133b360f48cc29baf8678fb32070c3
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:55:18Z

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

commit 35659974d19bc307a14c7ec9cb4ef54987c95428
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:56:34Z

Merge branch 'apache-master' into docker

commit 106849794fc4b84adb89bced411711d6a69731ac
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T08:17:46Z

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

commit f307409ebd3f1a0a806204ccf2d5fd56b2309284
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T08:43:53Z

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

commit 941f7f3f6dc236910e5518be6b46d218ac721d19
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T09:30:13Z

Merge branch 'apache-master' into docker

commit ee4e1e3e37f9d2e65a35ba3c24aa77c582873bad
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T09:54:57Z

readme

commit 9af0f041e918e8d481a09cf407b57b109a8f07b7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-31T10:11:41Z

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

commit 33ff3407a49238fa743e1d4c954c5de878b77d82
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-31T10:11:53Z

Merge branch 'apache-master' into docker

commit 24d66c815cf374dbdaf7a42591a055c9bf3c5ceb
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T06:36:18Z

docker readme

commit 8bc6c41f87b167d9fed3ac81fbd51d730d37a087
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T06:36:34Z

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

commit 7b26eacbf18a50cfe9e45cff0cc93b0bd7ddca81
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T06:36:49Z

Merge branch 'apache-master' into docker

commit 712b2b58d323553a2d3b1304145ed9970b459582
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T06:41:35Z

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

commit 02c48c600f70487b601d1b585d7ce617e035bdfe
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T09:40:27Z

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

commit 76d8e68d6fe39e2d9118bb02aa931960fc603942
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T09:40:46Z

Merge branch 'apache-master' into docker

commit 88ef127ec43309f90c8218a06d3c0ba65fd8767f
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T10:08:23Z

update test in service

commit 10d35083ad192639b9a6f2e53562c0d4827c14e7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T10:10:32Z

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

commit 6dfd057c2b9f33adc78e1365025dc3b911d83c93
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-

[GitHub] incubator-griffin pull request #217: modify distinctness trans logic

2018-02-07 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/217

modify distinctness trans logic



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin tmst

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/217.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #217


commit e980e6c48a4b4ad616c3209ccc69268250d87f30
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-12T04:29:48Z

doc

commit cf849f478592bf7d1c102fc33c0a3aaacd0a3ab5
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-12T04:49:37Z

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

commit 5cd047826016a8ba277c98a6cbc7978a3d2bc659
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-13T06:46:44Z

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

commit 7edf6ff9bf8d460f3b68c1a068ac597d908d0eae
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-16T02:21:33Z

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

commit 673b717765b5a1e3fbc566cff190c4e9b615159e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-16T05:25:11Z

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

commit daecbfc69aefe484d2c9cc72f43571caafe8187e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-16T08:46:53Z

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

commit e71a1c56ae074ae1de9472edcdbf11c5e3a2d4c1
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-17T04:57:10Z

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

commit 328a16701d5681961fbe3c824f3a033ea36010a4
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-24T02:09:34Z

add comments

commit 46c2a4fccc6a83d12557b07cb72c740d19d5b529
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-25T03:23:53Z

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

commit 6c3cea1f96d8dbc694b76eec2ef52be8ed1b4ae6
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:02:22Z

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

commit bd8a719ef7b98efb73ec30b7fce9e69d6c52621a
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:03:30Z

Merge branch 'apache-master' into docker

commit a68886b38793b4dac4d33f734749216c31f4b7a7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:19:57Z

add docker doc

commit 243ec9a4006de7fbe14c39be7eea9cd74b3d13fc
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:24:23Z

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

commit 0be45fb85abec62999e320b4e9aaf94f5f77395d
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:44:57Z

    yml license

commit 0d75c6593695563c8b3b6a5528901e44f567d1ec
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:53:00Z

yaml license

commit 0c82eeb22c133b360f48cc29baf8678fb32070c3
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:55:18Z

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

commit 35659974d19bc307a14c7ec9cb4ef54987c95428
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:56:34Z

Merge branch 'apache-master' into docker

commit 106849794fc4b84adb89bced411711d6a69731ac
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T08:17:46Z

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

commit f307409ebd3f1a0a806204ccf2d5fd56b2309284
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T08:43:53Z

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

commit 941f7f3f6dc236910e5518be6b46d218ac721d19
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T09:30:13Z

    Merge branch 'apache-master' into docker

commit ee4e1e3e37f9d2e65a35ba3c24aa77c582873bad
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T09:54:57Z

readme

commit 9af0f041e918e8d481a09cf407b57b109a8f07b7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-31T10:11:41Z

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

commit 33ff3407a49238fa743e1d4c954c5de878b77d82
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-31T10:11:53Z

Merge branch 'apache-master' into docker

commit 24d66c815cf374dbdaf7a42591a055c9bf3c5ceb
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-11-02T06:36:18Z

docker readme

commit 8bc6c41f87b167d9fed3ac81fbd51d730d

[GitHub] incubator-griffin pull request #216: add regex replace udf

2018-02-07 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/216

add regex replace udf



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin tmst

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/216.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #216


commit ffb818aa58ef9c330c0bb88731bac8f2975298d8
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-11T07:38:32Z

ignore ui tmp

commit dba1602366ef9084a392d7ca61e6e719827ee208
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-11T07:48:00Z

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

commit e980e6c48a4b4ad616c3209ccc69268250d87f30
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-12T04:29:48Z

doc

commit cf849f478592bf7d1c102fc33c0a3aaacd0a3ab5
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-12T04:49:37Z

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

commit 5cd047826016a8ba277c98a6cbc7978a3d2bc659
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-13T06:46:44Z

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

commit 7edf6ff9bf8d460f3b68c1a068ac597d908d0eae
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-16T02:21:33Z

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

commit 673b717765b5a1e3fbc566cff190c4e9b615159e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-16T05:25:11Z

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

commit daecbfc69aefe484d2c9cc72f43571caafe8187e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-16T08:46:53Z

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

commit e71a1c56ae074ae1de9472edcdbf11c5e3a2d4c1
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-17T04:57:10Z

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

commit 328a16701d5681961fbe3c824f3a033ea36010a4
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-24T02:09:34Z

add comments

commit 46c2a4fccc6a83d12557b07cb72c740d19d5b529
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-25T03:23:53Z

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

commit 6c3cea1f96d8dbc694b76eec2ef52be8ed1b4ae6
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:02:22Z

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

commit bd8a719ef7b98efb73ec30b7fce9e69d6c52621a
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:03:30Z

Merge branch 'apache-master' into docker

commit a68886b38793b4dac4d33f734749216c31f4b7a7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:19:57Z

add docker doc

commit 243ec9a4006de7fbe14c39be7eea9cd74b3d13fc
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:24:23Z

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

commit 0be45fb85abec62999e320b4e9aaf94f5f77395d
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:44:57Z

yml license

commit 0d75c6593695563c8b3b6a5528901e44f567d1ec
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:53:00Z

yaml license

commit 0c82eeb22c133b360f48cc29baf8678fb32070c3
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:55:18Z

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

commit 35659974d19bc307a14c7ec9cb4ef54987c95428
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:56:34Z

Merge branch 'apache-master' into docker

commit 106849794fc4b84adb89bced411711d6a69731ac
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T08:17:46Z

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

commit f307409ebd3f1a0a806204ccf2d5fd56b2309284
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T08:43:53Z

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

commit 941f7f3f6dc236910e5518be6b46d218ac721d19
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T09:30:13Z

Merge branch 'apache-master' into docker

commit ee4e1e3e37f9d2e65a35ba3c24aa77c582873bad
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T09:54:57Z

readme

commit 9af0f041e918e8d481a09cf407b57b109a8f07b7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-31T10:11:41Z

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

commit 33ff34

[GitHub] incubator-griffin pull request #205: [GRIFFIN-95] Enhance dump performance i...

2018-02-01 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/205

[GRIFFIN-95] Enhance dump performance in streaming mode

1. in streaming mode, dump data as parquet file
2. repartition when dumping data as spark.default.parallelism
3. add percentile feature in timeliness measure

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin tmst

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/205.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #205


commit ffb818aa58ef9c330c0bb88731bac8f2975298d8
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-11T07:38:32Z

ignore ui tmp

commit dba1602366ef9084a392d7ca61e6e719827ee208
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-11T07:48:00Z

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

commit e980e6c48a4b4ad616c3209ccc69268250d87f30
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-12T04:29:48Z

doc

commit cf849f478592bf7d1c102fc33c0a3aaacd0a3ab5
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-12T04:49:37Z

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

commit 5cd047826016a8ba277c98a6cbc7978a3d2bc659
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-13T06:46:44Z

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

commit 7edf6ff9bf8d460f3b68c1a068ac597d908d0eae
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-16T02:21:33Z

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

commit 673b717765b5a1e3fbc566cff190c4e9b615159e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-16T05:25:11Z

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

commit daecbfc69aefe484d2c9cc72f43571caafe8187e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-16T08:46:53Z

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

commit e71a1c56ae074ae1de9472edcdbf11c5e3a2d4c1
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-17T04:57:10Z

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

commit 328a16701d5681961fbe3c824f3a033ea36010a4
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-24T02:09:34Z

add comments

commit 46c2a4fccc6a83d12557b07cb72c740d19d5b529
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-25T03:23:53Z

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

commit 6c3cea1f96d8dbc694b76eec2ef52be8ed1b4ae6
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:02:22Z

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

commit bd8a719ef7b98efb73ec30b7fce9e69d6c52621a
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:03:30Z

Merge branch 'apache-master' into docker

commit a68886b38793b4dac4d33f734749216c31f4b7a7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:19:57Z

add docker doc

commit 243ec9a4006de7fbe14c39be7eea9cd74b3d13fc
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:24:23Z

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

commit 0be45fb85abec62999e320b4e9aaf94f5f77395d
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:44:57Z

yml license

commit 0d75c6593695563c8b3b6a5528901e44f567d1ec
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:53:00Z

yaml license

commit 0c82eeb22c133b360f48cc29baf8678fb32070c3
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:55:18Z

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

commit 35659974d19bc307a14c7ec9cb4ef54987c95428
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:56:34Z

Merge branch 'apache-master' into docker

commit 106849794fc4b84adb89bced411711d6a69731ac
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T08:17:46Z

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

commit f307409ebd3f1a0a806204ccf2d5fd56b2309284
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T08:43:53Z

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

commit 941f7f3f6dc236910e5518be6b46d218ac721d19
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T09:30:13Z

Merge branch 'apache-master' into docker

commit ee4e1e3e37f9d2e65a35ba3c24aa77c582873bad
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T09:54:57Z

readme

commit 9af0f041e918e8d

[GitHub] incubator-griffin pull request #196: [GRIFFIN-96] Add timeliness as a new fe...

2018-01-23 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/196

[GRIFFIN-96] Add timeliness as a new feature

Timeliness supported, to measure the latency of streaming data, only 
supporting the data which containing start_time and end_time itself. 

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin tmst

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/196.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #196


commit ffb818aa58ef9c330c0bb88731bac8f2975298d8
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-11T07:38:32Z

ignore ui tmp

commit dba1602366ef9084a392d7ca61e6e719827ee208
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-11T07:48:00Z

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

commit e980e6c48a4b4ad616c3209ccc69268250d87f30
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-12T04:29:48Z

doc

commit cf849f478592bf7d1c102fc33c0a3aaacd0a3ab5
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-12T04:49:37Z

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

commit 5cd047826016a8ba277c98a6cbc7978a3d2bc659
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-13T06:46:44Z

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

commit 7edf6ff9bf8d460f3b68c1a068ac597d908d0eae
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-16T02:21:33Z

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

commit 673b717765b5a1e3fbc566cff190c4e9b615159e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-16T05:25:11Z

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

commit daecbfc69aefe484d2c9cc72f43571caafe8187e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-16T08:46:53Z

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

commit e71a1c56ae074ae1de9472edcdbf11c5e3a2d4c1
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-17T04:57:10Z

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

commit 328a16701d5681961fbe3c824f3a033ea36010a4
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-24T02:09:34Z

add comments

commit 46c2a4fccc6a83d12557b07cb72c740d19d5b529
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-25T03:23:53Z

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

commit 6c3cea1f96d8dbc694b76eec2ef52be8ed1b4ae6
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:02:22Z

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

commit bd8a719ef7b98efb73ec30b7fce9e69d6c52621a
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:03:30Z

Merge branch 'apache-master' into docker

commit a68886b38793b4dac4d33f734749216c31f4b7a7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:19:57Z

add docker doc

commit 243ec9a4006de7fbe14c39be7eea9cd74b3d13fc
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:24:23Z

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

commit 0be45fb85abec62999e320b4e9aaf94f5f77395d
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:44:57Z

yml license

commit 0d75c6593695563c8b3b6a5528901e44f567d1ec
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:53:00Z

yaml license

commit 0c82eeb22c133b360f48cc29baf8678fb32070c3
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:55:18Z

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

commit 35659974d19bc307a14c7ec9cb4ef54987c95428
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:56:34Z

Merge branch 'apache-master' into docker

commit 106849794fc4b84adb89bced411711d6a69731ac
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T08:17:46Z

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

commit f307409ebd3f1a0a806204ccf2d5fd56b2309284
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T08:43:53Z

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

commit 941f7f3f6dc236910e5518be6b46d218ac721d19
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T09:30:13Z

Merge branch 'apache-master' into docker

commit ee4e1e3e37f9d2e65a35ba3c24aa77c582873bad
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T09:54:57Z

readme

commit 9af0f041e918e8d481a09cf407b57b109a8f07b7
Author: Lion

[GitHub] incubator-griffin pull request #193: update measure configuration guide

2018-01-16 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/193

update measure configuration guide



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin tmst

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/193.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #193


commit ffb818aa58ef9c330c0bb88731bac8f2975298d8
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-11T07:38:32Z

ignore ui tmp

commit dba1602366ef9084a392d7ca61e6e719827ee208
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-11T07:48:00Z

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

commit e980e6c48a4b4ad616c3209ccc69268250d87f30
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-12T04:29:48Z

doc

commit cf849f478592bf7d1c102fc33c0a3aaacd0a3ab5
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-12T04:49:37Z

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

commit 5cd047826016a8ba277c98a6cbc7978a3d2bc659
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-13T06:46:44Z

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

commit 7edf6ff9bf8d460f3b68c1a068ac597d908d0eae
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-16T02:21:33Z

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

commit 673b717765b5a1e3fbc566cff190c4e9b615159e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-16T05:25:11Z

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

commit daecbfc69aefe484d2c9cc72f43571caafe8187e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-16T08:46:53Z

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

commit e71a1c56ae074ae1de9472edcdbf11c5e3a2d4c1
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-17T04:57:10Z

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

commit 328a16701d5681961fbe3c824f3a033ea36010a4
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-24T02:09:34Z

add comments

commit 46c2a4fccc6a83d12557b07cb72c740d19d5b529
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-25T03:23:53Z

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

commit 6c3cea1f96d8dbc694b76eec2ef52be8ed1b4ae6
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:02:22Z

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

commit bd8a719ef7b98efb73ec30b7fce9e69d6c52621a
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:03:30Z

Merge branch 'apache-master' into docker

commit a68886b38793b4dac4d33f734749216c31f4b7a7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:19:57Z

add docker doc

commit 243ec9a4006de7fbe14c39be7eea9cd74b3d13fc
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:24:23Z

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

commit 0be45fb85abec62999e320b4e9aaf94f5f77395d
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:44:57Z

yml license

commit 0d75c6593695563c8b3b6a5528901e44f567d1ec
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:53:00Z

yaml license

commit 0c82eeb22c133b360f48cc29baf8678fb32070c3
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:55:18Z

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

commit 35659974d19bc307a14c7ec9cb4ef54987c95428
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:56:34Z

Merge branch 'apache-master' into docker

commit 106849794fc4b84adb89bced411711d6a69731ac
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T08:17:46Z

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

commit f307409ebd3f1a0a806204ccf2d5fd56b2309284
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T08:43:53Z

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

commit 941f7f3f6dc236910e5518be6b46d218ac721d19
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T09:30:13Z

Merge branch 'apache-master' into docker

commit ee4e1e3e37f9d2e65a35ba3c24aa77c582873bad
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T09:54:57Z

readme

commit 9af0f041e918e8d481a09cf407b57b109a8f07b7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-31T10:11:41Z

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


[GitHub] incubator-griffin pull request #192: Fix bug of record persist in simple mod...

2018-01-16 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/192

Fix bug of record persist in simple mode

the timestamp of records should be default timestamp in export config, not 
the calculate timestamp

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin tmst

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/192.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #192


commit ffb818aa58ef9c330c0bb88731bac8f2975298d8
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-11T07:38:32Z

ignore ui tmp

commit dba1602366ef9084a392d7ca61e6e719827ee208
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-11T07:48:00Z

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

commit e980e6c48a4b4ad616c3209ccc69268250d87f30
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-12T04:29:48Z

doc

commit cf849f478592bf7d1c102fc33c0a3aaacd0a3ab5
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-12T04:49:37Z

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

commit 5cd047826016a8ba277c98a6cbc7978a3d2bc659
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-13T06:46:44Z

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

commit 7edf6ff9bf8d460f3b68c1a068ac597d908d0eae
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-16T02:21:33Z

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

commit 673b717765b5a1e3fbc566cff190c4e9b615159e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-16T05:25:11Z

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

commit daecbfc69aefe484d2c9cc72f43571caafe8187e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-16T08:46:53Z

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

commit e71a1c56ae074ae1de9472edcdbf11c5e3a2d4c1
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-17T04:57:10Z

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

commit 328a16701d5681961fbe3c824f3a033ea36010a4
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-24T02:09:34Z

add comments

commit 46c2a4fccc6a83d12557b07cb72c740d19d5b529
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-25T03:23:53Z

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

commit 6c3cea1f96d8dbc694b76eec2ef52be8ed1b4ae6
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:02:22Z

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

commit bd8a719ef7b98efb73ec30b7fce9e69d6c52621a
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:03:30Z

Merge branch 'apache-master' into docker

commit a68886b38793b4dac4d33f734749216c31f4b7a7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:19:57Z

add docker doc

commit 243ec9a4006de7fbe14c39be7eea9cd74b3d13fc
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:24:23Z

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

commit 0be45fb85abec62999e320b4e9aaf94f5f77395d
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:44:57Z

yml license

commit 0d75c6593695563c8b3b6a5528901e44f567d1ec
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:53:00Z

yaml license

commit 0c82eeb22c133b360f48cc29baf8678fb32070c3
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:55:18Z

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

commit 35659974d19bc307a14c7ec9cb4ef54987c95428
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:56:34Z

Merge branch 'apache-master' into docker

commit 106849794fc4b84adb89bced411711d6a69731ac
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T08:17:46Z

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

commit f307409ebd3f1a0a806204ccf2d5fd56b2309284
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T08:43:53Z

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

commit 941f7f3f6dc236910e5518be6b46d218ac721d19
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T09:30:13Z

Merge branch 'apache-master' into docker

commit ee4e1e3e37f9d2e65a35ba3c24aa77c582873bad
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T09:54:57Z

readme

commit 9af0f041e918e8d481a09cf407b57b109a8f07b7
Author: Lionel Liu <bhlx

[GitHub] incubator-griffin pull request #187: Uniqueness enhance

2018-01-09 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/187

Uniqueness enhance

add total and unique in uniqueness metric

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin tmst

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/187.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #187


commit ffb818aa58ef9c330c0bb88731bac8f2975298d8
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-11T07:38:32Z

ignore ui tmp

commit dba1602366ef9084a392d7ca61e6e719827ee208
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-11T07:48:00Z

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

commit e980e6c48a4b4ad616c3209ccc69268250d87f30
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-12T04:29:48Z

doc

commit cf849f478592bf7d1c102fc33c0a3aaacd0a3ab5
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-12T04:49:37Z

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

commit 5cd047826016a8ba277c98a6cbc7978a3d2bc659
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-13T06:46:44Z

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

commit 7edf6ff9bf8d460f3b68c1a068ac597d908d0eae
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-16T02:21:33Z

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

commit 673b717765b5a1e3fbc566cff190c4e9b615159e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-16T05:25:11Z

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

commit daecbfc69aefe484d2c9cc72f43571caafe8187e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-16T08:46:53Z

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

commit e71a1c56ae074ae1de9472edcdbf11c5e3a2d4c1
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-17T04:57:10Z

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

commit 328a16701d5681961fbe3c824f3a033ea36010a4
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-24T02:09:34Z

add comments

commit 46c2a4fccc6a83d12557b07cb72c740d19d5b529
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-25T03:23:53Z

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

commit 6c3cea1f96d8dbc694b76eec2ef52be8ed1b4ae6
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:02:22Z

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

commit bd8a719ef7b98efb73ec30b7fce9e69d6c52621a
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:03:30Z

Merge branch 'apache-master' into docker

commit a68886b38793b4dac4d33f734749216c31f4b7a7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:19:57Z

add docker doc

commit 243ec9a4006de7fbe14c39be7eea9cd74b3d13fc
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:24:23Z

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

commit 0be45fb85abec62999e320b4e9aaf94f5f77395d
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:44:57Z

yml license

commit 0d75c6593695563c8b3b6a5528901e44f567d1ec
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:53:00Z

yaml license

commit 0c82eeb22c133b360f48cc29baf8678fb32070c3
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:55:18Z

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

commit 35659974d19bc307a14c7ec9cb4ef54987c95428
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:56:34Z

Merge branch 'apache-master' into docker

commit 106849794fc4b84adb89bced411711d6a69731ac
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T08:17:46Z

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

commit f307409ebd3f1a0a806204ccf2d5fd56b2309284
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T08:43:53Z

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

commit 941f7f3f6dc236910e5518be6b46d218ac721d19
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T09:30:13Z

Merge branch 'apache-master' into docker

commit ee4e1e3e37f9d2e65a35ba3c24aa77c582873bad
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T09:54:57Z

readme

commit 9af0f041e918e8d481a09cf407b57b109a8f07b7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-31T10:11:41Z

Merge branch 'master' of https://github.com/apache/incuba

[GitHub] incubator-griffin pull request #186: update dsl-guide document

2018-01-09 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/186

update dsl-guide document



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin tmst

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/186.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #186


commit ffb818aa58ef9c330c0bb88731bac8f2975298d8
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-11T07:38:32Z

ignore ui tmp

commit dba1602366ef9084a392d7ca61e6e719827ee208
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-11T07:48:00Z

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

commit e980e6c48a4b4ad616c3209ccc69268250d87f30
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-12T04:29:48Z

doc

commit cf849f478592bf7d1c102fc33c0a3aaacd0a3ab5
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-12T04:49:37Z

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

commit 5cd047826016a8ba277c98a6cbc7978a3d2bc659
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-13T06:46:44Z

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

commit 7edf6ff9bf8d460f3b68c1a068ac597d908d0eae
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-16T02:21:33Z

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

commit 673b717765b5a1e3fbc566cff190c4e9b615159e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-16T05:25:11Z

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

commit daecbfc69aefe484d2c9cc72f43571caafe8187e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-16T08:46:53Z

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

commit e71a1c56ae074ae1de9472edcdbf11c5e3a2d4c1
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-17T04:57:10Z

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

commit 328a16701d5681961fbe3c824f3a033ea36010a4
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-24T02:09:34Z

add comments

commit 46c2a4fccc6a83d12557b07cb72c740d19d5b529
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-25T03:23:53Z

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

commit 6c3cea1f96d8dbc694b76eec2ef52be8ed1b4ae6
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:02:22Z

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

commit bd8a719ef7b98efb73ec30b7fce9e69d6c52621a
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:03:30Z

Merge branch 'apache-master' into docker

commit a68886b38793b4dac4d33f734749216c31f4b7a7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:19:57Z

add docker doc

commit 243ec9a4006de7fbe14c39be7eea9cd74b3d13fc
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:24:23Z

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

commit 0be45fb85abec62999e320b4e9aaf94f5f77395d
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:44:57Z

yml license

commit 0d75c6593695563c8b3b6a5528901e44f567d1ec
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:53:00Z

yaml license

commit 0c82eeb22c133b360f48cc29baf8678fb32070c3
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:55:18Z

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

commit 35659974d19bc307a14c7ec9cb4ef54987c95428
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:56:34Z

Merge branch 'apache-master' into docker

commit 106849794fc4b84adb89bced411711d6a69731ac
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T08:17:46Z

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

commit f307409ebd3f1a0a806204ccf2d5fd56b2309284
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T08:43:53Z

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

commit 941f7f3f6dc236910e5518be6b46d218ac721d19
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T09:30:13Z

Merge branch 'apache-master' into docker

commit ee4e1e3e37f9d2e65a35ba3c24aa77c582873bad
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T09:54:57Z

readme

commit 9af0f041e918e8d481a09cf407b57b109a8f07b7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-31T10:11:41Z

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


[GitHub] incubator-griffin pull request #184: Measure module enhancement

2018-01-08 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/184

Measure module enhancement

1. fully support user input spark sql as rules.
2. add uniqueness and timeliness measurements.
3. enhance calculation and persist performance in streaming mode.
4. add mongo db metric persist.
5. use spark sql engine as calculation engine.
6. refactor measure module code.

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin tmst-merge

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/184.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #184


commit ffb818aa58ef9c330c0bb88731bac8f2975298d8
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-11T07:38:32Z

ignore ui tmp

commit dba1602366ef9084a392d7ca61e6e719827ee208
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-11T07:48:00Z

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

commit e980e6c48a4b4ad616c3209ccc69268250d87f30
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-12T04:29:48Z

doc

commit cf849f478592bf7d1c102fc33c0a3aaacd0a3ab5
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-12T04:49:37Z

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

commit 5cd047826016a8ba277c98a6cbc7978a3d2bc659
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-13T06:46:44Z

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

commit 7edf6ff9bf8d460f3b68c1a068ac597d908d0eae
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-16T02:21:33Z

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

commit 673b717765b5a1e3fbc566cff190c4e9b615159e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-16T05:25:11Z

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

commit daecbfc69aefe484d2c9cc72f43571caafe8187e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-16T08:46:53Z

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

commit e71a1c56ae074ae1de9472edcdbf11c5e3a2d4c1
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-17T04:57:10Z

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

commit 328a16701d5681961fbe3c824f3a033ea36010a4
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-24T02:09:34Z

add comments

commit 46c2a4fccc6a83d12557b07cb72c740d19d5b529
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-25T03:23:53Z

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

commit 6c3cea1f96d8dbc694b76eec2ef52be8ed1b4ae6
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:02:22Z

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

commit bd8a719ef7b98efb73ec30b7fce9e69d6c52621a
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:03:30Z

Merge branch 'apache-master' into docker

commit a68886b38793b4dac4d33f734749216c31f4b7a7
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:19:57Z

add docker doc

commit 243ec9a4006de7fbe14c39be7eea9cd74b3d13fc
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:24:23Z

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

commit 0be45fb85abec62999e320b4e9aaf94f5f77395d
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:44:57Z

yml license

commit 0d75c6593695563c8b3b6a5528901e44f567d1ec
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:53:00Z

yaml license

commit 0c82eeb22c133b360f48cc29baf8678fb32070c3
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:55:18Z

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

commit 35659974d19bc307a14c7ec9cb4ef54987c95428
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T06:56:34Z

Merge branch 'apache-master' into docker

commit 106849794fc4b84adb89bced411711d6a69731ac
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T08:17:46Z

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

commit f307409ebd3f1a0a806204ccf2d5fd56b2309284
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T08:43:53Z

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

commit 941f7f3f6dc236910e5518be6b46d218ac721d19
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2017-10-30T09:30:13Z

Merge branch 'apache-master' into docker

commit ee4e1e3e37f9d2e65a35ba3c24aa77c582873bad

[GitHub] incubator-griffin pull request #180: Docker

2017-11-22 Thread bhlx3lyx7
Github user bhlx3lyx7 closed the pull request at:

https://github.com/apache/incubator-griffin/pull/180


---


[GitHub] incubator-griffin pull request #180: Docker

2017-11-22 Thread bhlx3lyx7
GitHub user bhlx3lyx7 reopened a pull request:

https://github.com/apache/incubator-griffin/pull/180

Docker



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin docker

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/180.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #180


commit ffb818aa58ef9c330c0bb88731bac8f2975298d8
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-11T07:38:32Z

ignore ui tmp

commit dba1602366ef9084a392d7ca61e6e719827ee208
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-11T07:48:00Z

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

commit e980e6c48a4b4ad616c3209ccc69268250d87f30
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-12T04:29:48Z

doc

commit cf849f478592bf7d1c102fc33c0a3aaacd0a3ab5
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-12T04:49:37Z

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

commit 5cd047826016a8ba277c98a6cbc7978a3d2bc659
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-13T06:46:44Z

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

commit 7edf6ff9bf8d460f3b68c1a068ac597d908d0eae
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-16T02:21:33Z

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

commit 673b717765b5a1e3fbc566cff190c4e9b615159e
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-16T05:25:11Z

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

commit daecbfc69aefe484d2c9cc72f43571caafe8187e
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-16T08:46:53Z

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

commit e71a1c56ae074ae1de9472edcdbf11c5e3a2d4c1
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-17T04:57:10Z

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

commit 328a16701d5681961fbe3c824f3a033ea36010a4
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-24T02:09:34Z

add comments

commit 46c2a4fccc6a83d12557b07cb72c740d19d5b529
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-25T03:23:53Z

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

commit 6c3cea1f96d8dbc694b76eec2ef52be8ed1b4ae6
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:02:22Z

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

commit bd8a719ef7b98efb73ec30b7fce9e69d6c52621a
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:03:30Z

Merge branch 'apache-master' into docker

commit a68886b38793b4dac4d33f734749216c31f4b7a7
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:19:57Z

add docker doc

commit 243ec9a4006de7fbe14c39be7eea9cd74b3d13fc
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:24:23Z

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

commit 0be45fb85abec62999e320b4e9aaf94f5f77395d
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:44:57Z

yml license

commit 0d75c6593695563c8b3b6a5528901e44f567d1ec
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:53:00Z

yaml license

commit 0c82eeb22c133b360f48cc29baf8678fb32070c3
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:55:18Z

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

commit 35659974d19bc307a14c7ec9cb4ef54987c95428
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:56:34Z

Merge branch 'apache-master' into docker

commit 106849794fc4b84adb89bced411711d6a69731ac
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T08:17:46Z

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

commit f307409ebd3f1a0a806204ccf2d5fd56b2309284
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T08:43:53Z

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

commit 941f7f3f6dc236910e5518be6b46d218ac721d19
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T09:30:13Z

Merge branch 'apache-master' into docker

commit ee4e1e3e37f9d2e65a35ba3c24aa77c582873bad
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T09:54:57Z

readme

commit 9af0f041e918e8d481a09cf407b57b109a8f07b7
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-31T10:11:41Z

Merge branch

[GitHub] incubator-griffin pull request #180: Docker

2017-11-22 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/180

Docker



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin docker

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/180.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #180


commit ffb818aa58ef9c330c0bb88731bac8f2975298d8
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-11T07:38:32Z

ignore ui tmp

commit dba1602366ef9084a392d7ca61e6e719827ee208
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-11T07:48:00Z

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

commit e980e6c48a4b4ad616c3209ccc69268250d87f30
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-12T04:29:48Z

doc

commit cf849f478592bf7d1c102fc33c0a3aaacd0a3ab5
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-12T04:49:37Z

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

commit 5cd047826016a8ba277c98a6cbc7978a3d2bc659
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-13T06:46:44Z

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

commit 7edf6ff9bf8d460f3b68c1a068ac597d908d0eae
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-16T02:21:33Z

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

commit 673b717765b5a1e3fbc566cff190c4e9b615159e
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-16T05:25:11Z

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

commit daecbfc69aefe484d2c9cc72f43571caafe8187e
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-16T08:46:53Z

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

commit e71a1c56ae074ae1de9472edcdbf11c5e3a2d4c1
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-17T04:57:10Z

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

commit 328a16701d5681961fbe3c824f3a033ea36010a4
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-24T02:09:34Z

add comments

commit 46c2a4fccc6a83d12557b07cb72c740d19d5b529
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-25T03:23:53Z

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

commit 6c3cea1f96d8dbc694b76eec2ef52be8ed1b4ae6
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:02:22Z

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

commit bd8a719ef7b98efb73ec30b7fce9e69d6c52621a
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:03:30Z

Merge branch 'apache-master' into docker

commit a68886b38793b4dac4d33f734749216c31f4b7a7
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:19:57Z

add docker doc

commit 243ec9a4006de7fbe14c39be7eea9cd74b3d13fc
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:24:23Z

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

commit 0be45fb85abec62999e320b4e9aaf94f5f77395d
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:44:57Z

yml license

commit 0d75c6593695563c8b3b6a5528901e44f567d1ec
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:53:00Z

yaml license

commit 0c82eeb22c133b360f48cc29baf8678fb32070c3
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:55:18Z

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

commit 35659974d19bc307a14c7ec9cb4ef54987c95428
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:56:34Z

Merge branch 'apache-master' into docker

commit 106849794fc4b84adb89bced411711d6a69731ac
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T08:17:46Z

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

commit f307409ebd3f1a0a806204ccf2d5fd56b2309284
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T08:43:53Z

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

commit 941f7f3f6dc236910e5518be6b46d218ac721d19
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T09:30:13Z

Merge branch 'apache-master' into docker

commit ee4e1e3e37f9d2e65a35ba3c24aa77c582873bad
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T09:54:57Z

readme

commit 9af0f041e918e8d481a09cf407b57b109a8f07b7
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-31T10:11:41Z

Merge branch 'master

[GitHub] incubator-griffin pull request #170: update as clause and add timestamp in c...

2017-11-05 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/170

update as clause and add timestamp in configure



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin docker

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/170.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #170


commit ffb818aa58ef9c330c0bb88731bac8f2975298d8
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-11T07:38:32Z

ignore ui tmp

commit dba1602366ef9084a392d7ca61e6e719827ee208
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-11T07:48:00Z

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

commit e980e6c48a4b4ad616c3209ccc69268250d87f30
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-12T04:29:48Z

doc

commit cf849f478592bf7d1c102fc33c0a3aaacd0a3ab5
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-12T04:49:37Z

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

commit 5cd047826016a8ba277c98a6cbc7978a3d2bc659
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-13T06:46:44Z

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

commit 7edf6ff9bf8d460f3b68c1a068ac597d908d0eae
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-16T02:21:33Z

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

commit 673b717765b5a1e3fbc566cff190c4e9b615159e
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-16T05:25:11Z

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

commit daecbfc69aefe484d2c9cc72f43571caafe8187e
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-16T08:46:53Z

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

commit e71a1c56ae074ae1de9472edcdbf11c5e3a2d4c1
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-17T04:57:10Z

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

commit 328a16701d5681961fbe3c824f3a033ea36010a4
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-24T02:09:34Z

add comments

commit 46c2a4fccc6a83d12557b07cb72c740d19d5b529
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-25T03:23:53Z

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

commit 6c3cea1f96d8dbc694b76eec2ef52be8ed1b4ae6
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:02:22Z

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

commit bd8a719ef7b98efb73ec30b7fce9e69d6c52621a
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:03:30Z

Merge branch 'apache-master' into docker

commit a68886b38793b4dac4d33f734749216c31f4b7a7
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:19:57Z

add docker doc

commit 243ec9a4006de7fbe14c39be7eea9cd74b3d13fc
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:24:23Z

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

commit 0be45fb85abec62999e320b4e9aaf94f5f77395d
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:44:57Z

yml license

commit 0d75c6593695563c8b3b6a5528901e44f567d1ec
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:53:00Z

yaml license

commit 0c82eeb22c133b360f48cc29baf8678fb32070c3
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:55:18Z

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

commit 35659974d19bc307a14c7ec9cb4ef54987c95428
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:56:34Z

Merge branch 'apache-master' into docker

commit 106849794fc4b84adb89bced411711d6a69731ac
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T08:17:46Z

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

commit f307409ebd3f1a0a806204ccf2d5fd56b2309284
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T08:43:53Z

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

commit 941f7f3f6dc236910e5518be6b46d218ac721d19
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T09:30:13Z

Merge branch 'apache-master' into docker

commit ee4e1e3e37f9d2e65a35ba3c24aa77c582873bad
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T09:54:57Z

readme

commit 9af0f041e918e8d481a09cf407b57b109a8f07b7
Author: Lionel Liu <bhlx3l..

[GitHub] incubator-griffin pull request #168: persist try

2017-11-03 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/168

persist try



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin docker

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/168.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #168


commit ffb818aa58ef9c330c0bb88731bac8f2975298d8
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-11T07:38:32Z

ignore ui tmp

commit dba1602366ef9084a392d7ca61e6e719827ee208
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-11T07:48:00Z

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

commit e980e6c48a4b4ad616c3209ccc69268250d87f30
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-12T04:29:48Z

doc

commit cf849f478592bf7d1c102fc33c0a3aaacd0a3ab5
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-12T04:49:37Z

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

commit 5cd047826016a8ba277c98a6cbc7978a3d2bc659
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-13T06:46:44Z

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

commit 7edf6ff9bf8d460f3b68c1a068ac597d908d0eae
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-16T02:21:33Z

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

commit 673b717765b5a1e3fbc566cff190c4e9b615159e
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-16T05:25:11Z

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

commit daecbfc69aefe484d2c9cc72f43571caafe8187e
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-16T08:46:53Z

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

commit e71a1c56ae074ae1de9472edcdbf11c5e3a2d4c1
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-17T04:57:10Z

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

commit 328a16701d5681961fbe3c824f3a033ea36010a4
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-24T02:09:34Z

add comments

commit 46c2a4fccc6a83d12557b07cb72c740d19d5b529
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-25T03:23:53Z

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

commit 6c3cea1f96d8dbc694b76eec2ef52be8ed1b4ae6
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:02:22Z

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

commit bd8a719ef7b98efb73ec30b7fce9e69d6c52621a
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:03:30Z

Merge branch 'apache-master' into docker

commit a68886b38793b4dac4d33f734749216c31f4b7a7
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:19:57Z

add docker doc

commit 243ec9a4006de7fbe14c39be7eea9cd74b3d13fc
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:24:23Z

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

commit 0be45fb85abec62999e320b4e9aaf94f5f77395d
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:44:57Z

yml license

commit 0d75c6593695563c8b3b6a5528901e44f567d1ec
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:53:00Z

yaml license

commit 0c82eeb22c133b360f48cc29baf8678fb32070c3
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:55:18Z

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

commit 35659974d19bc307a14c7ec9cb4ef54987c95428
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:56:34Z

Merge branch 'apache-master' into docker

commit 106849794fc4b84adb89bced411711d6a69731ac
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T08:17:46Z

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

commit f307409ebd3f1a0a806204ccf2d5fd56b2309284
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T08:43:53Z

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

commit 941f7f3f6dc236910e5518be6b46d218ac721d19
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T09:30:13Z

Merge branch 'apache-master' into docker

commit ee4e1e3e37f9d2e65a35ba3c24aa77c582873bad
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T09:54:57Z

readme

commit 9af0f041e918e8d481a09cf407b57b109a8f07b7
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-31T10:11:41Z

Merge branch

[GitHub] incubator-griffin pull request #165: service bug fix

2017-11-03 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/165

service bug fix



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin docker

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/165.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #165


commit ffb818aa58ef9c330c0bb88731bac8f2975298d8
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-11T07:38:32Z

ignore ui tmp

commit dba1602366ef9084a392d7ca61e6e719827ee208
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-11T07:48:00Z

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

commit e980e6c48a4b4ad616c3209ccc69268250d87f30
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-12T04:29:48Z

doc

commit cf849f478592bf7d1c102fc33c0a3aaacd0a3ab5
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-12T04:49:37Z

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

commit 5cd047826016a8ba277c98a6cbc7978a3d2bc659
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-13T06:46:44Z

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

commit 7edf6ff9bf8d460f3b68c1a068ac597d908d0eae
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-16T02:21:33Z

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

commit 673b717765b5a1e3fbc566cff190c4e9b615159e
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-16T05:25:11Z

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

commit daecbfc69aefe484d2c9cc72f43571caafe8187e
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-16T08:46:53Z

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

commit e71a1c56ae074ae1de9472edcdbf11c5e3a2d4c1
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-17T04:57:10Z

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

commit 328a16701d5681961fbe3c824f3a033ea36010a4
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-24T02:09:34Z

add comments

commit 46c2a4fccc6a83d12557b07cb72c740d19d5b529
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-25T03:23:53Z

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

commit 6c3cea1f96d8dbc694b76eec2ef52be8ed1b4ae6
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:02:22Z

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

commit bd8a719ef7b98efb73ec30b7fce9e69d6c52621a
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:03:30Z

Merge branch 'apache-master' into docker

commit a68886b38793b4dac4d33f734749216c31f4b7a7
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:19:57Z

add docker doc

commit 243ec9a4006de7fbe14c39be7eea9cd74b3d13fc
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:24:23Z

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

commit 0be45fb85abec62999e320b4e9aaf94f5f77395d
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:44:57Z

yml license

commit 0d75c6593695563c8b3b6a5528901e44f567d1ec
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:53:00Z

yaml license

commit 0c82eeb22c133b360f48cc29baf8678fb32070c3
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:55:18Z

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

commit 35659974d19bc307a14c7ec9cb4ef54987c95428
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T06:56:34Z

Merge branch 'apache-master' into docker

commit 106849794fc4b84adb89bced411711d6a69731ac
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T08:17:46Z

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

commit f307409ebd3f1a0a806204ccf2d5fd56b2309284
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T08:43:53Z

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

commit 941f7f3f6dc236910e5518be6b46d218ac721d19
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T09:30:13Z

Merge branch 'apache-master' into docker

commit ee4e1e3e37f9d2e65a35ba3c24aa77c582873bad
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-30T09:54:57Z

readme

commit 9af0f041e918e8d481a09cf407b57b109a8f07b7
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-31T10:11:41Z

Merge br

[GitHub] incubator-griffin pull request #149: docker compose document and simple guid...

2017-10-30 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/149

docker compose document and simple guide



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin master

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/149.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #149


commit d82489bb9cd934acd546a84700074d5e033d23e8
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-08T08:26:57Z

log persist

commit c5a799372abd49209de9e5d9bacaf1e92ed0764e
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-08T08:30:11Z

persist

commit b34048a52dbcc9a43bb60b724988adfd4f10d202
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-12T01:57:49Z

Merge branch 'apache-master'

commit 07dc994caf1761e9c3fe4c915cbaee950cb060a0
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-12T05:17:32Z

Merge branch 'apache-master'

commit caeae99f292cbaadabe08eebae163229eb9379d0
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-13T04:53:12Z

Merge branch 'apache-master'

commit a4dae7351fd0295f3a523a56a62fe79b60049a63
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-13T08:55:13Z

Merge branch 'apache-master'

commit 19177dfeb3fb79b21c3493dfc0378ee42f72b66e
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-13T08:59:00Z

rm -0700

commit b01c2381b1a995774fb0e0b077f1d7670ccd7fd5
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-14T01:26:28Z

Merge branch 'apache-master'

commit ca5631a64365f703476223b88f55067af5229537
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-14T01:28:34Z

license of file

commit 930a1b15b3680590cf771454d3a1961725b6d315
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-14T01:30:49Z

Merge branch 'apache-master'

commit 7ea177ae8ac39062914339131dd0cd7bd520c3cc
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-14T06:46:22Z

Merge branch 'apache-master'

commit 1955bb741410077428745be52b87bfac416bdf70
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-14T07:32:14Z

Merge branch 'apache-master'

commit e0acd70246ec84e94b824d4d8b25e9664406af76
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-18T08:39:05Z

Merge branch 'apache-master'

commit 3163579df2330b60c530c6983de0b4bfe9bb03fa
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-26T06:58:25Z

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

commit 4ac2128af80fdd8b4f6e3a790d884873f0a48175
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-26T06:59:47Z

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

commit 296cdf5a85b2a313fd38943f6710669a79431a08
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-26T07:00:08Z

Merge branch 'apache-master'

commit dae0c2ed1ff71aa896c0f13783dac493a803f775
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-27T06:31:19Z

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

commit 71d9cbf3d7826a339afee23c47c1b200d0b03441
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-27T06:32:16Z

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

commit b3504d330899444bab12912ba7346a7045ca6d69
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-27T06:32:28Z

Merge branch 'apache-master'

commit 0b9b438c9f88dc43696bcdcd9ce132bae83bb4e7
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-07-05T05:00:27Z

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

commit 6f65a5ebf3e548e2d5c1a675d1db108a895530fe
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-07-05T05:00:53Z

Merge branch 'apache-master'

commit 4e4572c225b87dd1b025f0fd3acba2643113fa60
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-09-15T09:45:15Z

Merge branch 'apache-master'

commit ffb818aa58ef9c330c0bb88731bac8f2975298d8
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-11T07:38:32Z

ignore ui tmp

commit dba1602366ef9084a392d7ca61e6e719827ee208
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-11T07:48:00Z

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

commit e980e6c48a4b4ad616c3209ccc69268250d87f30
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-12T04:29:48Z

doc

commit cf849f478592bf7d1c102fc33c0a3aaacd0a3ab5
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-10-12T04:49:37Z

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

commit 5cd04782

[GitHub] incubator-griffin pull request #143: fix bug in service: remove find id in j...

2017-10-16 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/143

fix bug in service: remove find id in job instance repo



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin dsl-modify

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/143.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #143


commit d82489bb9cd934acd546a84700074d5e033d23e8
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-08T08:26:57Z

log persist

commit c5a799372abd49209de9e5d9bacaf1e92ed0764e
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-08T08:30:11Z

persist

commit b34048a52dbcc9a43bb60b724988adfd4f10d202
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-12T01:57:49Z

Merge branch 'apache-master'

commit 07dc994caf1761e9c3fe4c915cbaee950cb060a0
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-12T05:17:32Z

Merge branch 'apache-master'

commit db7a7eb5d63246f3d978fa1732781f1d48254bf8
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-12T11:51:58Z

refact

commit caeae99f292cbaadabe08eebae163229eb9379d0
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-13T04:53:12Z

Merge branch 'apache-master'

commit a4dae7351fd0295f3a523a56a62fe79b60049a63
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-13T08:55:13Z

Merge branch 'apache-master'

commit 19177dfeb3fb79b21c3493dfc0378ee42f72b66e
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-13T08:59:00Z

rm -0700

commit b01c2381b1a995774fb0e0b077f1d7670ccd7fd5
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-14T01:26:28Z

Merge branch 'apache-master'

commit ca5631a64365f703476223b88f55067af5229537
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-14T01:28:34Z

license of file

commit 930a1b15b3680590cf771454d3a1961725b6d315
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-14T01:30:49Z

Merge branch 'apache-master'

commit 7ea177ae8ac39062914339131dd0cd7bd520c3cc
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-14T06:46:22Z

Merge branch 'apache-master'

commit 1955bb741410077428745be52b87bfac416bdf70
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-14T07:32:14Z

Merge branch 'apache-master'

commit e0acd70246ec84e94b824d4d8b25e9664406af76
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-18T08:39:05Z

Merge branch 'apache-master'

commit f3e4eca0deb61bd98d4e0e0c4111f32c47a90489
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-18T08:42:54Z

Merge branch 'master' into streaming

commit 3163579df2330b60c530c6983de0b4bfe9bb03fa
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-26T06:58:25Z

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

commit 4ac2128af80fdd8b4f6e3a790d884873f0a48175
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-26T06:59:47Z

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

commit 296cdf5a85b2a313fd38943f6710669a79431a08
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-26T07:00:08Z

Merge branch 'apache-master'

commit fbb7de9e66d0aada1a8d7eb116ab9c9aa3b13db3
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-26T07:00:53Z

Merge branch 'master' into streaming

commit ea2d28b2d09f1ec29f316d92e59e9de2a217f622
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-27T06:30:41Z

v1

commit dae0c2ed1ff71aa896c0f13783dac493a803f775
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-27T06:31:19Z

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

commit 71d9cbf3d7826a339afee23c47c1b200d0b03441
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-27T06:32:16Z

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

commit 55ae1dc24d75105be905c0f82b4aa64855a184a4
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-27T06:59:42Z

v2

commit 3aea9317abef2875fa3dd50e8162a4c4720e96fb
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-07-05T05:00:00Z

v3

commit 0b9b438c9f88dc43696bcdcd9ce132bae83bb4e7
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-07-05T05:00:27Z

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

commit da7cfe213a1aea4deafa538522a1d34f2adce151
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-07-06T07:44:48Z

v4

commit 84d55c912d80791715c5b4a09b510bf9d4c51215
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-07-06T10:34:29Z

t1

commit 8a95c4a4d018d7f5d80642a6892249606482d029
Author

[GitHub] incubator-griffin pull request #136: Dsl modify

2017-10-11 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/136

Dsl modify



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin dsl-modify

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/136.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #136


commit d82489bb9cd934acd546a84700074d5e033d23e8
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-08T08:26:57Z

log persist

commit c5a799372abd49209de9e5d9bacaf1e92ed0764e
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-08T08:30:11Z

persist

commit b34048a52dbcc9a43bb60b724988adfd4f10d202
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-12T01:57:49Z

Merge branch 'apache-master'

commit 07dc994caf1761e9c3fe4c915cbaee950cb060a0
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-12T05:17:32Z

Merge branch 'apache-master'

commit db7a7eb5d63246f3d978fa1732781f1d48254bf8
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-12T11:51:58Z

refact

commit caeae99f292cbaadabe08eebae163229eb9379d0
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-13T04:53:12Z

Merge branch 'apache-master'

commit a4dae7351fd0295f3a523a56a62fe79b60049a63
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-13T08:55:13Z

Merge branch 'apache-master'

commit 19177dfeb3fb79b21c3493dfc0378ee42f72b66e
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-13T08:59:00Z

rm -0700

commit b01c2381b1a995774fb0e0b077f1d7670ccd7fd5
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-14T01:26:28Z

Merge branch 'apache-master'

commit ca5631a64365f703476223b88f55067af5229537
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-14T01:28:34Z

license of file

commit 930a1b15b3680590cf771454d3a1961725b6d315
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-14T01:30:49Z

Merge branch 'apache-master'

commit 7ea177ae8ac39062914339131dd0cd7bd520c3cc
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-14T06:46:22Z

Merge branch 'apache-master'

commit 1955bb741410077428745be52b87bfac416bdf70
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-14T07:32:14Z

Merge branch 'apache-master'

commit e0acd70246ec84e94b824d4d8b25e9664406af76
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-18T08:39:05Z

Merge branch 'apache-master'

commit f3e4eca0deb61bd98d4e0e0c4111f32c47a90489
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-18T08:42:54Z

Merge branch 'master' into streaming

commit 3163579df2330b60c530c6983de0b4bfe9bb03fa
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-26T06:58:25Z

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

commit 4ac2128af80fdd8b4f6e3a790d884873f0a48175
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-26T06:59:47Z

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

commit 296cdf5a85b2a313fd38943f6710669a79431a08
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-26T07:00:08Z

Merge branch 'apache-master'

commit fbb7de9e66d0aada1a8d7eb116ab9c9aa3b13db3
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-26T07:00:53Z

Merge branch 'master' into streaming

commit ea2d28b2d09f1ec29f316d92e59e9de2a217f622
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-27T06:30:41Z

v1

commit dae0c2ed1ff71aa896c0f13783dac493a803f775
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-27T06:31:19Z

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

commit 71d9cbf3d7826a339afee23c47c1b200d0b03441
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-27T06:32:16Z

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

commit 55ae1dc24d75105be905c0f82b4aa64855a184a4
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-27T06:59:42Z

v2

commit 3aea9317abef2875fa3dd50e8162a4c4720e96fb
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-07-05T05:00:00Z

v3

commit 0b9b438c9f88dc43696bcdcd9ce132bae83bb4e7
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-07-05T05:00:27Z

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

commit da7cfe213a1aea4deafa538522a1d34f2adce151
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-07-06T07:44:48Z

v4

commit 84d55c912d80791715c5b4a09b510bf9d4c51215
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-07-06T10:34:29Z

t1

commit 8a95c4a4d018d7f5d80642a6892249606482d029
Author: Lionel Liu <bhlx3l...@163.com>
D

[GitHub] incubator-griffin pull request #134: Document of demo docker

2017-10-11 Thread bhlx3lyx7
Github user bhlx3lyx7 closed the pull request at:

https://github.com/apache/incubator-griffin/pull/134


---


[GitHub] incubator-griffin pull request #134: Document of demo docker

2017-10-11 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/134

Document of demo docker



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin dsl-modify

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/134.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #134


commit d82489bb9cd934acd546a84700074d5e033d23e8
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-08T08:26:57Z

log persist

commit c5a799372abd49209de9e5d9bacaf1e92ed0764e
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-08T08:30:11Z

persist

commit b34048a52dbcc9a43bb60b724988adfd4f10d202
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-12T01:57:49Z

Merge branch 'apache-master'

commit 07dc994caf1761e9c3fe4c915cbaee950cb060a0
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-12T05:17:32Z

Merge branch 'apache-master'

commit db7a7eb5d63246f3d978fa1732781f1d48254bf8
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-12T11:51:58Z

refact

commit caeae99f292cbaadabe08eebae163229eb9379d0
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-13T04:53:12Z

Merge branch 'apache-master'

commit a4dae7351fd0295f3a523a56a62fe79b60049a63
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-13T08:55:13Z

Merge branch 'apache-master'

commit 19177dfeb3fb79b21c3493dfc0378ee42f72b66e
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-13T08:59:00Z

rm -0700

commit b01c2381b1a995774fb0e0b077f1d7670ccd7fd5
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-14T01:26:28Z

Merge branch 'apache-master'

commit ca5631a64365f703476223b88f55067af5229537
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-14T01:28:34Z

license of file

commit 930a1b15b3680590cf771454d3a1961725b6d315
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-14T01:30:49Z

Merge branch 'apache-master'

commit 7ea177ae8ac39062914339131dd0cd7bd520c3cc
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-14T06:46:22Z

Merge branch 'apache-master'

commit 1955bb741410077428745be52b87bfac416bdf70
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-14T07:32:14Z

Merge branch 'apache-master'

commit e0acd70246ec84e94b824d4d8b25e9664406af76
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-18T08:39:05Z

Merge branch 'apache-master'

commit f3e4eca0deb61bd98d4e0e0c4111f32c47a90489
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-18T08:42:54Z

Merge branch 'master' into streaming

commit 3163579df2330b60c530c6983de0b4bfe9bb03fa
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-26T06:58:25Z

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

commit 4ac2128af80fdd8b4f6e3a790d884873f0a48175
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-26T06:59:47Z

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

commit 296cdf5a85b2a313fd38943f6710669a79431a08
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-26T07:00:08Z

Merge branch 'apache-master'

commit fbb7de9e66d0aada1a8d7eb116ab9c9aa3b13db3
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-26T07:00:53Z

Merge branch 'master' into streaming

commit ea2d28b2d09f1ec29f316d92e59e9de2a217f622
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-27T06:30:41Z

v1

commit dae0c2ed1ff71aa896c0f13783dac493a803f775
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-27T06:31:19Z

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

commit 71d9cbf3d7826a339afee23c47c1b200d0b03441
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-27T06:32:16Z

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

commit 55ae1dc24d75105be905c0f82b4aa64855a184a4
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-27T06:59:42Z

v2

commit 3aea9317abef2875fa3dd50e8162a4c4720e96fb
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-07-05T05:00:00Z

v3

commit 0b9b438c9f88dc43696bcdcd9ce132bae83bb4e7
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-07-05T05:00:27Z

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

commit da7cfe213a1aea4deafa538522a1d34f2adce151
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-07-06T07:44:48Z

v4

commit 84d55c912d80791715c5b4a09b510bf9d4c51215
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-07-06T10:34:29Z

t1

commit 8a95c4a4d018d7f5d80642a6892249606482d029
Author: Lionel Liu <bhlx3l...@163.c

[GitHub] incubator-griffin pull request #132: Document of griffin dsl and sample

2017-10-11 Thread bhlx3lyx7
GitHub user bhlx3lyx7 opened a pull request:

https://github.com/apache/incubator-griffin/pull/132

Document of griffin dsl and sample



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bhlx3lyx7/incubator-griffin dsl-modify

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-griffin/pull/132.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #132


commit d82489bb9cd934acd546a84700074d5e033d23e8
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-08T08:26:57Z

log persist

commit c5a799372abd49209de9e5d9bacaf1e92ed0764e
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-08T08:30:11Z

persist

commit b34048a52dbcc9a43bb60b724988adfd4f10d202
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-12T01:57:49Z

Merge branch 'apache-master'

commit 07dc994caf1761e9c3fe4c915cbaee950cb060a0
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-12T05:17:32Z

Merge branch 'apache-master'

commit db7a7eb5d63246f3d978fa1732781f1d48254bf8
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-12T11:51:58Z

refact

commit caeae99f292cbaadabe08eebae163229eb9379d0
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-13T04:53:12Z

Merge branch 'apache-master'

commit a4dae7351fd0295f3a523a56a62fe79b60049a63
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-13T08:55:13Z

Merge branch 'apache-master'

commit 19177dfeb3fb79b21c3493dfc0378ee42f72b66e
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-13T08:59:00Z

rm -0700

commit b01c2381b1a995774fb0e0b077f1d7670ccd7fd5
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-14T01:26:28Z

Merge branch 'apache-master'

commit ca5631a64365f703476223b88f55067af5229537
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-14T01:28:34Z

license of file

commit 930a1b15b3680590cf771454d3a1961725b6d315
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-14T01:30:49Z

Merge branch 'apache-master'

commit 7ea177ae8ac39062914339131dd0cd7bd520c3cc
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-14T06:46:22Z

Merge branch 'apache-master'

commit 1955bb741410077428745be52b87bfac416bdf70
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-14T07:32:14Z

Merge branch 'apache-master'

commit e0acd70246ec84e94b824d4d8b25e9664406af76
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-18T08:39:05Z

Merge branch 'apache-master'

commit f3e4eca0deb61bd98d4e0e0c4111f32c47a90489
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-18T08:42:54Z

Merge branch 'master' into streaming

commit 3163579df2330b60c530c6983de0b4bfe9bb03fa
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-26T06:58:25Z

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

commit 4ac2128af80fdd8b4f6e3a790d884873f0a48175
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-26T06:59:47Z

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

commit 296cdf5a85b2a313fd38943f6710669a79431a08
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-26T07:00:08Z

Merge branch 'apache-master'

commit fbb7de9e66d0aada1a8d7eb116ab9c9aa3b13db3
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-26T07:00:53Z

Merge branch 'master' into streaming

commit ea2d28b2d09f1ec29f316d92e59e9de2a217f622
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-27T06:30:41Z

v1

commit dae0c2ed1ff71aa896c0f13783dac493a803f775
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-27T06:31:19Z

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

commit 71d9cbf3d7826a339afee23c47c1b200d0b03441
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-27T06:32:16Z

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

commit 55ae1dc24d75105be905c0f82b4aa64855a184a4
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-06-27T06:59:42Z

v2

commit 3aea9317abef2875fa3dd50e8162a4c4720e96fb
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-07-05T05:00:00Z

v3

commit 0b9b438c9f88dc43696bcdcd9ce132bae83bb4e7
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-07-05T05:00:27Z

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

commit da7cfe213a1aea4deafa538522a1d34f2adce151
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-07-06T07:44:48Z

v4

commit 84d55c912d80791715c5b4a09b510bf9d4c51215
Author: Lionel Liu <bhlx3l...@163.com>
Date:   2017-07-06T10:34:29Z

t1

commit 8a95c4a4d018d7f5d80642a6892249606482d029
Author: Lionel Liu <bhlx3l.

  1   2   >