[GitHub] incubator-griffin issue #435: [GRIFFIN-206] fix job timezone when creating f...

2018-10-14 Thread ahutsunshine
Github user ahutsunshine commented on the issue:

https://github.com/apache/incubator-griffin/pull/435
  
> cron.time.zone

you are right.


---


[GitHub] incubator-griffin issue #435: [GRIFFIN-206] fix job timezone when creating f...

2018-10-14 Thread ahutsunshine
Github user ahutsunshine commented on the issue:

https://github.com/apache/incubator-griffin/pull/435
  
> Added time zone information to batch UI:
> https://user-images.githubusercontent.com/867294/46914000-4c567a00-cf4c-11e8-85cb-be6428e91895.png;>



> Added time zone information to batch UI:
> https://user-images.githubusercontent.com/867294/46914000-4c567a00-cf4c-11e8-85cb-be6428e91895.png;>

Actually, this timezone is used for data partition not scheduling time. For 
example, Converting hive partition format, such as dt=#MMdd# AND hour=#HH#, 
to specific date, such as dt=20181015 AND hour=01. So I think we'd better 
revise the hints 'Cron expression is using brower's time zone'.


---


[GitHub] incubator-griffin pull request #435: [GRIFFIN-206] fix job timezone when cre...

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

https://github.com/apache/incubator-griffin/pull/435#discussion_r224951998
  
--- Diff: service/src/main/java/org/apache/griffin/core/util/TimeUtil.java 
---
@@ -148,4 +149,11 @@ private static String refreshEscapeHashTag(String str) 
{
 return str.replaceAll(escapeHashTagPattern, hashTag);
 }
 
+public static TimeZone getTimeZone(String timezone) {
+if (StringUtils.isEmpty(timezone)) {
+return TimeZone.getDefault();
+}
+return TimeZone.getTimeZone(timezone);
+}
+
 }
--- End diff --

@chemikadze 
I suggest this code be kept in its original place. Currently just modify ui 
code to fix bug.


---


[GitHub] incubator-griffin issue #435: [GRIFFIN-206] fix job timezone when creating f...

2018-10-12 Thread ahutsunshine
Github user ahutsunshine commented on the issue:

https://github.com/apache/incubator-griffin/pull/435
  
@chemikadze 
You are right. In backend, the method of getTimeZone always returns GMT 
timezone for  UTC-1 or UTC+01:00 or other similar formats, as the given 
timezone ID cannot be understood. Currently, I have no better idea to parse 
different timezone formats in backend. I prefer to solve the problem in front 
end using a full name such as "America/Los_Angeles", or a standard ID such as 
"GMT-1:00". Do you have better idea for backend ? 


---


[GitHub] incubator-griffin pull request #413: fix startup failure bug

2018-09-09 Thread ahutsunshine
GitHub user ahutsunshine opened a pull request:

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

fix startup failure bug

Griffin starts up failure, as it  is could not resolve placeholder 
'fs.defaultFS' in string value "${fs.defaultFS}". Add fs.defaultFS filed in 
application.properties  to fix the failure.

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

$ git pull https://github.com/ahutsunshine/incubator-griffin master

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

https://github.com/apache/incubator-griffin/pull/413.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 #413


commit a1c4d2d9efecd79f1c0207d2787d99960ac6a7f3
Author: ahutsunshine 
Date:   2018-08-09T19:09:37Z

update measure field and ut

commit 9e6348f5ebc9dee60dd1d6d39f4a1c658368bfd3
Author: ahutsunshine 
Date:   2018-08-10T04:00:47Z

update field name

commit 9c6af9ee9324dc44244eabef63ba234d461b6fa3
Author: ahutsunshine 
Date:   2018-08-13T08:53:58Z

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

commit 3a0200850ee330b6f1b99b026e2296a80845b4f2
Author: ahutsunshine 
Date:   2018-09-05T04:09:47Z

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

commit 7fbbe0eb6fca1da8b43fd7a1ba52b4e6b51f2c0d
Author: ahutsunshine 
Date:   2018-09-07T12:35:01Z

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

commit 48d6011e41e5f80c10ed1991c32c7e1d827eeae8
Author: ahutsunshine 
Date:   2018-09-09T14:14:11Z

add hdfs default name




---


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

2018-08-09 Thread ahutsunshine
GitHub user ahutsunshine opened a pull request:

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

update measure field to support new format and ut

1.update env_batch.json and env_streaming.json
2.Rule
- add "inDataFrameName" and "outDataFrameName", remove "name"
-  add "out" param array, move "metric", "record" param inside "out" array
DataSource
- add boolean field "baseline"
- change "cache" to "checkpoint"
DataConnector
- add "dataFrameName"
Measure
- add "sinks" string array
- update dqType from String to enum
JobServiceImpl
- change "persist" to "sinks"
-  compare literal string "hdfs" case insensitively

    3.update measure ut and fix predicate ut bug

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

$ git pull https://github.com/ahutsunshine/incubator-griffin master

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

https://github.com/apache/incubator-griffin/pull/389.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 #389


commit a1c4d2d9efecd79f1c0207d2787d99960ac6a7f3
Author: ahutsunshine 
Date:   2018-08-09T19:09:37Z

update measure field and ut




---


[GitHub] incubator-griffin issue #320: refactor job structure to remove redundant cla...

2018-06-21 Thread ahutsunshine
Github user ahutsunshine commented on the issue:

https://github.com/apache/incubator-griffin/pull/320
  
hi @guoyuepeng ,

I have solved conflicting files. If you have time, pls review this pr.

Thanks,
Kevin Yao


---


[GitHub] incubator-griffin pull request #320: refactor job structure to remove redund...

2018-06-21 Thread ahutsunshine
GitHub user ahutsunshine opened a pull request:

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

refactor job structure to remove redundant class and api

1.refactor job structure
2.remove JobSchedule class to make job structure more clear
3.remove JobDataBean to make response more clear
4.remove "/jobs/config" api

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

$ git pull https://github.com/ahutsunshine/incubator-griffin master

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

https://github.com/apache/incubator-griffin/pull/320.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 #320


commit 7a2e27ffe05faeda7bb584f96ad3995500c42ada
Author: ahutsunshine 
Date:   2018-05-22T07:41:40Z

add streaming job and job state management

commit ae387399caa50a937950d25ae2a65bff30852d77
Author: ahutsunshine 
Date:   2018-05-22T08:48:53Z

update ut

commit 28fcc5e024b2b9cf4f0498c5e6a54b704b54da9e
Author: ahutsunshine 
Date:   2018-05-22T10:35:55Z

update api

commit 2f510ad40d28546f6979a2da2c7536b40f7a3041
Author: ahutsunshine 
Date:   2018-05-24T08:12:21Z

update streaming env name

commit 9533cf36cfdae26163c66358856ca4b48b061dbb
Author: ahutsunshine 
Date:   2018-05-24T08:13:08Z

update streaming env name

commit 5e3a3021179043ff2110b3b613cecbabb8cb7668
Author: ahutsunshine 
Date:   2018-05-28T02:46:41Z

fix bug of throwing exception when job key doesn't exist

commit d5c4dfb7aa6c642eb82e4ce772e2f48e214cedf1
Author: ahutsunshine 
Date:   2018-05-28T06:03:13Z

add env external replace function

commit 8d3a07a5a3a85bd1fc0eb1d054122e9ee4553d51
Author: ahutsunshine 
Date:   2018-05-28T08:17:56Z

fix read properties wrong when having external application.properties

commit 9f45cfec37f7605af87e1dc75758369722331a8c
Author: ahutsunshine 
Date:   2018-05-28T10:35:36Z

update properties and get ways

commit 1aeac6462cc5fedc8d21b5e7ad236214cb1c89a8
Author: ahutsunshine 
Date:   2018-05-28T10:37:06Z

add livy config map

commit 66382442b4384e0550eea5a9fb952799081381d8
Author: ahutsunshine 
Date:   2018-05-28T10:38:23Z

convert spark properties format from .properties to .json

commit ae5113fe52f22eb016753edeb3baa79fac6b9dbc
Author: ahutsunshine 
Date:   2018-05-29T05:04:37Z

fix bug of always query when sessionId is overdue and appId is null

commit 0ad7e3496aeeb1350dc3c50036c734d3138b15ac
Author: ahutsunshine 
Date:   2018-05-29T10:42:32Z

add detail log and annotation

commit 20a1737f7e73a0bc09a96869c4f8e65091816333
Author: ahutsunshine 
Date:   2018-05-31T07:16:55Z

update ut

commit 4db9ac4387e2f2538ae0d1c0391451ed0eb982d2
Author: ahutsunshine 
Date:   2018-05-31T07:17:49Z

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

commit 16ca7ba977d540ca78a843fee3286960c8901b1e
Author: ahutsunshine 
Date:   2018-06-01T03:42:23Z

refactor job structure

commit c61ff3ef5b875e7e6aff1c29704f7f41e9a3769b
Author: ahutsunshine 
Date:   2018-06-01T05:51:19Z

add job type mark

commit e50240847be4a504c980c0a23bbe154ce0ebcd00
Author: ahutsunshine 
Date:   2018-06-01T05:52:42Z

fix add job null exception

commit 1e4bdd810be48a412bff17bf5fdb2963a17fdd38
Author: ahutsunshine 
Date:   2018-06-01T05:53:31Z

fix bug of Interge cannot cast to String

commit 48214aa216ac349d705a130f6f1d61c9ebf30ee9
Author: ahutsunshine 
Date:   2018-06-01T07:14:17Z

update ut

commit 226f04317677c431e086826127d77371e6e2914a
Author: ahutsunshine 
Date:   2018-06-01T07:15:48Z

Merge branch 'config'

commit ff6281af11fd8fd1e2bafc182a40841d33f4a5a0
Author: ahutsunshine 
Date:   2018-06-01T07:17:46Z

annotate properties config test

commit 28dd9935157934216dd5936dd6e9875cf5c1f7c2
Author: ahutsunshine 
Date:   2018-06-15T09:44:42Z

change default database to h2

commit 2229535498915e1e34683d03600696514be13d99
Author: ahutsunshine 
Date:   2018-06-15T09:51:37Z

change database name

commit aa5e1f141a0442da0df9936b1ee7e5798a62127f
Author: ahutsunshine 
Date:   2018-06-15T10:58:22Z

fix conflict

commit 86b2a064af422249cb5eb9ed0b4443e104e8d118
Author: ahutsunshine 
Date:   2018-06-15T11:38:26Z

refactor job entity structure

commit 5447f597ab894e6dac127f314d98d8522dd512ec
Author: ahutsunshine 
Date:   2018-06-15T11:51:51Z

fix get state bug

commit d50562e4c526c753deeec48847e051257743c8e2
Author: ahutsunshine 
Date:   2018-06-15T11:58:55Z

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

commit 3ccd3e14dc8c1d0b83ac9f239a01248757883614
Author: ahutsunshine 
Date:   2018-06-16T13:17:24Z

change default database to h2 in application-dev.properties

commit 24cc1ccafa8cdbdcc70843ac7851cc3154092629
Author: ahutsunshine 
Date:   2018-06-16T13:52:17Z

change database to h2 in application-dev.properties




---


[GitHub] incubator-griffin issue #309: change default database to h2

2018-06-16 Thread ahutsunshine
Github user ahutsunshine commented on the issue:

https://github.com/apache/incubator-griffin/pull/309
  
Hi @guoyuepeng ,
Now I have changed database from postgresql to h2 in 
application-dev.properties. Pls check and merge.
Thank you,
Kevin Yao


---


[GitHub] incubator-griffin pull request #309: change default database to h2

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

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

change default database to h2



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

$ git pull https://github.com/ahutsunshine/incubator-griffin h2

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

https://github.com/apache/incubator-griffin/pull/309.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 #309


commit 28dd9935157934216dd5936dd6e9875cf5c1f7c2
Author: ahutsunshine 
Date:   2018-06-15T09:44:42Z

change default database to h2

commit 2229535498915e1e34683d03600696514be13d99
Author: ahutsunshine 
Date:   2018-06-15T09:51:37Z

change database name




---


[GitHub] incubator-griffin pull request #308: convert default database to h2

2018-06-15 Thread ahutsunshine
Github user ahutsunshine closed the pull request at:

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


---


[GitHub] incubator-griffin pull request #290: [GRIFFIN-91] enhance livy configuration...

2018-06-01 Thread ahutsunshine
GitHub user ahutsunshine opened a pull request:

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

[GRIFFIN-91] enhance livy configuration to support all the parameters

1.Enhance livy configuration, to support all the parameters of livy in 
users' environments
2. Fix bug of reading application.properties

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

$ git pull https://github.com/ahutsunshine/incubator-griffin master

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

https://github.com/apache/incubator-griffin/pull/290.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 #290


commit 7a2e27ffe05faeda7bb584f96ad3995500c42ada
Author: ahutsunshine 
Date:   2018-05-22T07:41:40Z

add streaming job and job state management

commit ae387399caa50a937950d25ae2a65bff30852d77
Author: ahutsunshine 
Date:   2018-05-22T08:48:53Z

update ut

commit 28fcc5e024b2b9cf4f0498c5e6a54b704b54da9e
Author: ahutsunshine 
Date:   2018-05-22T10:35:55Z

update api

commit 2f510ad40d28546f6979a2da2c7536b40f7a3041
Author: ahutsunshine 
Date:   2018-05-24T08:12:21Z

update streaming env name

commit 9533cf36cfdae26163c66358856ca4b48b061dbb
Author: ahutsunshine 
Date:   2018-05-24T08:13:08Z

update streaming env name

commit 5e3a3021179043ff2110b3b613cecbabb8cb7668
Author: ahutsunshine 
Date:   2018-05-28T02:46:41Z

fix bug of throwing exception when job key doesn't exist

commit d5c4dfb7aa6c642eb82e4ce772e2f48e214cedf1
Author: ahutsunshine 
Date:   2018-05-28T06:03:13Z

add env external replace function

commit 8d3a07a5a3a85bd1fc0eb1d054122e9ee4553d51
Author: ahutsunshine 
Date:   2018-05-28T08:17:56Z

fix read properties wrong when having external application.properties

commit 9f45cfec37f7605af87e1dc75758369722331a8c
Author: ahutsunshine 
Date:   2018-05-28T10:35:36Z

update properties and get ways

commit 1aeac6462cc5fedc8d21b5e7ad236214cb1c89a8
Author: ahutsunshine 
Date:   2018-05-28T10:37:06Z

add livy config map

commit 66382442b4384e0550eea5a9fb952799081381d8
Author: ahutsunshine 
Date:   2018-05-28T10:38:23Z

convert spark properties format from .properties to .json

commit ae5113fe52f22eb016753edeb3baa79fac6b9dbc
Author: ahutsunshine 
Date:   2018-05-29T05:04:37Z

fix bug of always query when sessionId is overdue and appId is null

commit 0ad7e3496aeeb1350dc3c50036c734d3138b15ac
Author: ahutsunshine 
Date:   2018-05-29T10:42:32Z

add detail log and annotation

commit 20a1737f7e73a0bc09a96869c4f8e65091816333
Author: ahutsunshine 
Date:   2018-05-31T07:16:55Z

update ut

commit 4db9ac4387e2f2538ae0d1c0391451ed0eb982d2
Author: ahutsunshine 
Date:   2018-05-31T07:17:49Z

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

commit 226f04317677c431e086826127d77371e6e2914a
Author: ahutsunshine 
Date:   2018-06-01T07:15:48Z

Merge branch 'config'

commit ff6281af11fd8fd1e2bafc182a40841d33f4a5a0
Author: ahutsunshine 
Date:   2018-06-01T07:17:46Z

annotate properties config test




---


[GitHub] incubator-griffin pull request #284: add function of streaming job and job s...

2018-05-21 Thread ahutsunshine
Github user ahutsunshine closed the pull request at:

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


---


[GitHub] incubator-griffin issue #284: add function of streaming job and job state ma...

2018-05-21 Thread ahutsunshine
Github user ahutsunshine commented on the issue:

https://github.com/apache/incubator-griffin/pull/284
  
to fix conflict


---


[GitHub] incubator-griffin pull request #284: add function of streaming job and job s...

2018-05-20 Thread ahutsunshine
GitHub user ahutsunshine opened a pull request:

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

add function of streaming job and job state management

1.add streaming job function
2.add job state management function
3.update part ut
4.fix few bugs

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

$ git pull https://github.com/ahutsunshine/incubator-griffin master

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

https://github.com/apache/incubator-griffin/pull/284.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 #284


commit e9b160dff7dec47cbdd16b13f5afd3cdda8c36ea
Author: ahutsunshine <ahutsunshine@...>
Date:   2018-02-07T08:04:40Z

update predict name

commit 56ce5812cafb46a2a7067a559679f0fece5c9e89
Author: ahutsunshine <ahutsunshine@...>
Date:   2018-02-07T08:04:52Z

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

commit e72cea84e28f67b5e72bb24deb41f4919fd97f7e
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-02-07T08:18:52Z

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

commit 994d6e898807c1c960b03cc0fde237f943af0ec9
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-02-07T08:19:29Z

Merge branch 'apache-master' into tmst

commit 5a10717b2e2efb6952e9c5e4c011a7fa3ac33614
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-02-07T08:23:41Z

regex replacement

commit 4b75055b29a0e6c7b0256c2d21e1f2dfd26b3eeb
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-02-07T10:19:22Z

regex replace

commit b4c2d36679004f08ac7804acfe6ba188e05dc0ec
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-02-07T10:23:27Z

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

commit 9e9cb45e50d40162bc0a39460d42d06d408266ab
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-02-07T10:24:09Z

Merge branch 'apache-master' into tmst

commit db5368c166dd8fffb2f68f378869c3d2b820a825
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-02-07T10:44:41Z

modify distinct trans

commit 41d3794698e6c2e82c2a216c0ea972ba0ea6ba99
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-02-07T10:46:41Z

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

commit 62ec88c9609686e1af093fb487a96f5af510e307
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-02-07T10:46:51Z

Merge branch 'apache-master' into tmst

commit cb149ade1c374dbd07cffb69c1881a60fe8256d0
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-02-08T07:22:41Z

json

commit f538b33db525c3d280d1af3516ea289fce8e7f8f
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-02-08T07:42:33Z

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

commit 155c4201dc7e4107c3d4db33386090b84bcc0f83
Author: ahutsunshine <ahutsunshine@...>
Date:   2018-02-08T07:55:51Z

add suppresswarning unchecked

commit a671c45d306da92134cd66baf547afcfaf2baf9d
Author: ahutsunshine <ahutsunshine@...>
Date:   2018-02-08T07:57:19Z

fix conflict

commit 274ec19ba78d43f01ee35dd03e05d371f39fa13b
Author: ahutsunshine <ahutsunshine@...>
Date:   2018-02-08T08:07:27Z

update saveJobInstance param

commit 4c6578c97c028a12ff31b770585462abcfc08412
Author: ahutsunshine <ahutsunshine@...>
Date:   2018-02-08T08:10:48Z

add maps null assert

commit bb03b7e99b742dad38340a860ec1e4dc9b7438fe
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-02-08T08:23:01Z

Merge branch 'apache-master' into tmst

commit fb5045f393af97e4117ad82caa67addafdfbca89
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-02-09T02:08:51Z

update version in docker doc

commit 555ec9fb3dabfd9b8bef53121f448b06ed3273ef
Author: Lionel Liu <bhlx3lyx7@...>
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 <bhlx3lyx7@...>
Date:   2018-02-09T03:59:42Z

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

commit 232279453173da7a5f6f42fe832558035d58f975
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-02-09T04:00:00Z

Merge branch 'apache-master' into tmst

commit 925d508fd53d689596b675c21195a5899b6341cd
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-02-09T09:59:45Z

fix bug of data connector

commit c06caa915b787c73d7340c72d076a9d33973c63f
Author: Lionel Liu <bhlx3lyx7@...>
Date:   2018-02-09T11:01:07Z

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

commit 611cc48bb4472fd4762b430142b28329192ac55d
Author: ahutsunshine <ahutsunshine@...>
Date:   2018-02-11T02:02:10Z

Merge b

[GitHub] incubator-griffin pull request #249: add eclipselink and hibernate,mysql and...

2018-04-08 Thread ahutsunshine
GitHub user ahutsunshine opened a pull request:

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

add eclipselink and hibernate,mysql and postgresql document



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

$ git pull https://github.com/ahutsunshine/incubator-griffin master

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

https://github.com/apache/incubator-griffin/pull/249.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 #249


commit f116a4c833344473b6a07f4d2f0022fd7944e3ba
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-15T14:04:12Z

update several coding style

commit 4a688e56f7225288c3360261735cbf97d8e2cb53
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T04:34:48Z

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

commit 53804676b51d76fbcea2f2dec97a3861d61b25f1
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T05:28:59Z

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

commit 0cd65ee8bf4f62eb86c94ffc3da23deb23207680
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T08:22:53Z

optimize hive cache and update measure to json with format

commit db2f141c099812159dff84b0b0c6d1082aff594f
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T09:01:33Z

update hive cache

commit 1ffa2efccd88604a6caaad7f2532053d43809ceb
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T09:06:03Z

update hive cache

commit 7019b53c5697806f701b91de7d4a10776a7e72f8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T04:57:23Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 2545faf3fa7e39fa2084b39dcd1e9e44b7349e00
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T04:58:04Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 9b0cb273c5a752f5e46f729bb5b3e72789d24337
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T04:58:40Z

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

commit 72f7b9356a6db6924b0e6ffcb95b0f8d8af4b8e4
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T05:09:58Z

add postman document

commit 487d6432603ebda5e046f4a1a04fc543377f3817
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T05:41:40Z

hide part of controller

commit ee761e2e69c005eb5c1980693d42f3eb9411c5e8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:10:26Z

add license and fix swagger ui

commit 07d92346ecba0d6467d07426979011d249a80d98
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:12:54Z

add license and fix swagger ui

commit 0afa6c37583ea626b22dcc29cb1361709a9da8d4
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:38:52Z

fix job conflict

commit 17d196e997f37a20434441ba5ac764bc63739c01
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:40:18Z

    fix job conflict

commit 1b1d22cece040ab3365dc223da7744f52fbbb674
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T02:21:42Z

fix hive log error and update postman document

commit 845f1d384257964a1afbe9ad911b5b84092ff400
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T02:22:05Z

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

commit 8f1ed95042e3e6e4c93fd7bf581660ca92305146
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T05:34:56Z

fix javadoc compiler error

commit 923585ab2289d1de435ec20db51c0dfdabdea823
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T05:55:21Z

remove swagger2

commit 7bca2b71a820e73bb7c91cf4d1722a19dc37f5ae
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T06:34:00Z

update org structure

commit 48b447cd9f13c07dfaec0df59f936593937914c8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T07:27:05Z

update ut

commit 1513fe20e3a924a212aac39440803ed52c73bdf0
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-01T07:00:16Z

fix get job health count error

commit 1d1def52a0eaad16b5b3fbab7cf4d5ea24fd1c23
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-01T07:05:57Z

fix conflict

commit bcdf2b2603af03fa29b64234b954b6f04b9cc798
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-02T06:48:00Z

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

commit 5a80d10c0adf8fc5d156dbbc8d1224bd90930767
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-02T12:54:07Z

uppdate job health ut

commit 6df023d1b9a043e78c80cf524becb06fda6a86a8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-02T12:54:40Z

Merge branch 'bugFix'

commit addf5bc743f9f05a112de6821375ce7176f88b51
Author: ahutsunshine <ah

[GitHub] incubator-griffin pull request #238: replaced hibernate with eclipselink and...

2018-03-28 Thread ahutsunshine
GitHub user ahutsunshine opened a pull request:

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

replaced hibernate with eclipselink and fix jobschedule bug

1.replaced hibernate with eclipselink to comply with APL2
2.fix jobschedule bug
3.update ut

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

$ git pull https://github.com/ahutsunshine/incubator-griffin master

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

https://github.com/apache/incubator-griffin/pull/238.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 #238


commit f116a4c833344473b6a07f4d2f0022fd7944e3ba
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-15T14:04:12Z

update several coding style

commit 4a688e56f7225288c3360261735cbf97d8e2cb53
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T04:34:48Z

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

commit 53804676b51d76fbcea2f2dec97a3861d61b25f1
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T05:28:59Z

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

commit 0cd65ee8bf4f62eb86c94ffc3da23deb23207680
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T08:22:53Z

optimize hive cache and update measure to json with format

commit db2f141c099812159dff84b0b0c6d1082aff594f
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T09:01:33Z

update hive cache

commit 1ffa2efccd88604a6caaad7f2532053d43809ceb
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T09:06:03Z

update hive cache

commit 7019b53c5697806f701b91de7d4a10776a7e72f8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T04:57:23Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 2545faf3fa7e39fa2084b39dcd1e9e44b7349e00
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T04:58:04Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 9b0cb273c5a752f5e46f729bb5b3e72789d24337
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T04:58:40Z

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

commit 72f7b9356a6db6924b0e6ffcb95b0f8d8af4b8e4
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T05:09:58Z

add postman document

commit 487d6432603ebda5e046f4a1a04fc543377f3817
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T05:41:40Z

hide part of controller

commit ee761e2e69c005eb5c1980693d42f3eb9411c5e8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:10:26Z

add license and fix swagger ui

commit 07d92346ecba0d6467d07426979011d249a80d98
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:12:54Z

add license and fix swagger ui

commit 0afa6c37583ea626b22dcc29cb1361709a9da8d4
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:38:52Z

fix job conflict

commit 17d196e997f37a20434441ba5ac764bc63739c01
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:40:18Z

    fix job conflict

commit 1b1d22cece040ab3365dc223da7744f52fbbb674
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T02:21:42Z

fix hive log error and update postman document

commit 845f1d384257964a1afbe9ad911b5b84092ff400
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T02:22:05Z

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

commit 8f1ed95042e3e6e4c93fd7bf581660ca92305146
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T05:34:56Z

fix javadoc compiler error

commit 923585ab2289d1de435ec20db51c0dfdabdea823
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T05:55:21Z

remove swagger2

commit 7bca2b71a820e73bb7c91cf4d1722a19dc37f5ae
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T06:34:00Z

update org structure

commit 48b447cd9f13c07dfaec0df59f936593937914c8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T07:27:05Z

update ut

commit 1513fe20e3a924a212aac39440803ed52c73bdf0
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-01T07:00:16Z

fix get job health count error

commit 1d1def52a0eaad16b5b3fbab7cf4d5ea24fd1c23
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-01T07:05:57Z

fix conflict

commit bcdf2b2603af03fa29b64234b954b6f04b9cc798
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-02T06:48:00Z

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

commit 5a80d10c0adf8fc5d156dbbc8d1224bd90930767
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-02T12:54:07Z

uppdate job health ut

commit 6df023d1b9a043e78c80cf524becb06fda6a86a8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-02T12:54:40Z

Mer

[GitHub] incubator-griffin pull request #215: fix predicate path not replace bug and ...

2018-02-07 Thread ahutsunshine
GitHub user ahutsunshine opened a pull request:

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

fix predicate path not replace bug and update docker document



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

$ git pull https://github.com/ahutsunshine/incubator-griffin master

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

https://github.com/apache/incubator-griffin/pull/215.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 #215


commit f116a4c833344473b6a07f4d2f0022fd7944e3ba
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-15T14:04:12Z

update several coding style

commit 4a688e56f7225288c3360261735cbf97d8e2cb53
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T04:34:48Z

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

commit 53804676b51d76fbcea2f2dec97a3861d61b25f1
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T05:28:59Z

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

commit 0cd65ee8bf4f62eb86c94ffc3da23deb23207680
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T08:22:53Z

optimize hive cache and update measure to json with format

commit db2f141c099812159dff84b0b0c6d1082aff594f
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T09:01:33Z

update hive cache

commit 1ffa2efccd88604a6caaad7f2532053d43809ceb
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T09:06:03Z

update hive cache

commit 7019b53c5697806f701b91de7d4a10776a7e72f8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T04:57:23Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 2545faf3fa7e39fa2084b39dcd1e9e44b7349e00
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T04:58:04Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 9b0cb273c5a752f5e46f729bb5b3e72789d24337
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T04:58:40Z

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

commit 72f7b9356a6db6924b0e6ffcb95b0f8d8af4b8e4
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T05:09:58Z

add postman document

commit 487d6432603ebda5e046f4a1a04fc543377f3817
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T05:41:40Z

hide part of controller

commit ee761e2e69c005eb5c1980693d42f3eb9411c5e8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:10:26Z

add license and fix swagger ui

commit 07d92346ecba0d6467d07426979011d249a80d98
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:12:54Z

add license and fix swagger ui

commit 0afa6c37583ea626b22dcc29cb1361709a9da8d4
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:38:52Z

fix job conflict

commit 17d196e997f37a20434441ba5ac764bc63739c01
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:40:18Z

    fix job conflict

commit 1b1d22cece040ab3365dc223da7744f52fbbb674
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T02:21:42Z

fix hive log error and update postman document

commit 845f1d384257964a1afbe9ad911b5b84092ff400
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T02:22:05Z

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

commit 8f1ed95042e3e6e4c93fd7bf581660ca92305146
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T05:34:56Z

fix javadoc compiler error

commit 923585ab2289d1de435ec20db51c0dfdabdea823
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T05:55:21Z

remove swagger2

commit 7bca2b71a820e73bb7c91cf4d1722a19dc37f5ae
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T06:34:00Z

update org structure

commit 48b447cd9f13c07dfaec0df59f936593937914c8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T07:27:05Z

update ut

commit 1513fe20e3a924a212aac39440803ed52c73bdf0
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-01T07:00:16Z

fix get job health count error

commit 1d1def52a0eaad16b5b3fbab7cf4d5ea24fd1c23
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-01T07:05:57Z

fix conflict

commit bcdf2b2603af03fa29b64234b954b6f04b9cc798
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-02T06:48:00Z

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

commit 5a80d10c0adf8fc5d156dbbc8d1224bd90930767
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-02T12:54:07Z

uppdate job health ut

commit 6df023d1b9a043e78c80cf524becb06fda6a86a8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-02T12:54:40Z

Merge branch 'bugFix'

commit addf5bc743f9f05a112de6821375ce7176f88b51
Author: ahutsunshine <ah

[GitHub] incubator-griffin pull request #211: Fix bugs and update info

2018-02-05 Thread ahutsunshine
GitHub user ahutsunshine opened a pull request:

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

Fix bugs and update info

Fix:  
1.fix data connector name cannot be repeated in one measure bug
2.fix read properties bug
3.fix data unit may empty string bug
4.fix range and data timezone bug
5.fix file predicator check wrong bug
Update:
   1.add get job config api 
   2.update rule some field not null
   3.update measure rule description and add null check
   4.update add job return type
   5.update code style

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

$ git pull https://github.com/ahutsunshine/incubator-griffin master

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

https://github.com/apache/incubator-griffin/pull/211.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 #211


commit f116a4c833344473b6a07f4d2f0022fd7944e3ba
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-15T14:04:12Z

update several coding style

commit 4a688e56f7225288c3360261735cbf97d8e2cb53
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T04:34:48Z

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

commit 53804676b51d76fbcea2f2dec97a3861d61b25f1
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T05:28:59Z

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

commit 0cd65ee8bf4f62eb86c94ffc3da23deb23207680
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T08:22:53Z

optimize hive cache and update measure to json with format

commit db2f141c099812159dff84b0b0c6d1082aff594f
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T09:01:33Z

update hive cache

commit 1ffa2efccd88604a6caaad7f2532053d43809ceb
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T09:06:03Z

update hive cache

commit 7019b53c5697806f701b91de7d4a10776a7e72f8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T04:57:23Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 2545faf3fa7e39fa2084b39dcd1e9e44b7349e00
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T04:58:04Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 9b0cb273c5a752f5e46f729bb5b3e72789d24337
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T04:58:40Z

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

commit 72f7b9356a6db6924b0e6ffcb95b0f8d8af4b8e4
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T05:09:58Z

add postman document

commit 487d6432603ebda5e046f4a1a04fc543377f3817
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T05:41:40Z

hide part of controller

commit ee761e2e69c005eb5c1980693d42f3eb9411c5e8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:10:26Z

add license and fix swagger ui

commit 07d92346ecba0d6467d07426979011d249a80d98
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:12:54Z

add license and fix swagger ui

commit 0afa6c37583ea626b22dcc29cb1361709a9da8d4
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:38:52Z

fix job conflict

commit 17d196e997f37a20434441ba5ac764bc63739c01
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:40:18Z

    fix job conflict

commit 1b1d22cece040ab3365dc223da7744f52fbbb674
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T02:21:42Z

fix hive log error and update postman document

commit 845f1d384257964a1afbe9ad911b5b84092ff400
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T02:22:05Z

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

commit 8f1ed95042e3e6e4c93fd7bf581660ca92305146
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T05:34:56Z

fix javadoc compiler error

commit 923585ab2289d1de435ec20db51c0dfdabdea823
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T05:55:21Z

remove swagger2

commit 7bca2b71a820e73bb7c91cf4d1722a19dc37f5ae
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T06:34:00Z

update org structure

commit 48b447cd9f13c07dfaec0df59f936593937914c8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T07:27:05Z

update ut

commit 1513fe20e3a924a212aac39440803ed52c73bdf0
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-01T07:00:16Z

fix get job health count error

commit 1d1def52a0eaad16b5b3fbab7cf4d5ea24fd1c23
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-01T07:05:57Z

fix conflict

commit bcdf2b2603af03fa29b64234b954b6f04b9cc798
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-02T06:48:00Z

[GitHub] incubator-griffin pull request #195: fix transaction and schedule bug and up...

2018-01-18 Thread ahutsunshine
GitHub user ahutsunshine opened a pull request:

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

fix transaction and schedule bug  and update ut 

Fix Bugs:
 1.fix transaction rollback failure bug
 2.job schedule range null bug
 3.fix  time fromat without timezone bug

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

$ git pull https://github.com/ahutsunshine/incubator-griffin master

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

https://github.com/apache/incubator-griffin/pull/195.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 #195


commit f116a4c833344473b6a07f4d2f0022fd7944e3ba
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-15T14:04:12Z

update several coding style

commit 4a688e56f7225288c3360261735cbf97d8e2cb53
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T04:34:48Z

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

commit 53804676b51d76fbcea2f2dec97a3861d61b25f1
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T05:28:59Z

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

commit 0cd65ee8bf4f62eb86c94ffc3da23deb23207680
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T08:22:53Z

optimize hive cache and update measure to json with format

commit db2f141c099812159dff84b0b0c6d1082aff594f
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T09:01:33Z

update hive cache

commit 1ffa2efccd88604a6caaad7f2532053d43809ceb
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T09:06:03Z

update hive cache

commit 7019b53c5697806f701b91de7d4a10776a7e72f8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T04:57:23Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 2545faf3fa7e39fa2084b39dcd1e9e44b7349e00
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T04:58:04Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 9b0cb273c5a752f5e46f729bb5b3e72789d24337
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T04:58:40Z

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

commit 72f7b9356a6db6924b0e6ffcb95b0f8d8af4b8e4
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T05:09:58Z

add postman document

commit 487d6432603ebda5e046f4a1a04fc543377f3817
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T05:41:40Z

hide part of controller

commit ee761e2e69c005eb5c1980693d42f3eb9411c5e8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:10:26Z

add license and fix swagger ui

commit 07d92346ecba0d6467d07426979011d249a80d98
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:12:54Z

add license and fix swagger ui

commit 0afa6c37583ea626b22dcc29cb1361709a9da8d4
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:38:52Z

fix job conflict

commit 17d196e997f37a20434441ba5ac764bc63739c01
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:40:18Z

    fix job conflict

commit 1b1d22cece040ab3365dc223da7744f52fbbb674
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T02:21:42Z

fix hive log error and update postman document

commit 845f1d384257964a1afbe9ad911b5b84092ff400
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T02:22:05Z

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

commit 8f1ed95042e3e6e4c93fd7bf581660ca92305146
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T05:34:56Z

fix javadoc compiler error

commit 923585ab2289d1de435ec20db51c0dfdabdea823
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T05:55:21Z

remove swagger2

commit 7bca2b71a820e73bb7c91cf4d1722a19dc37f5ae
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T06:34:00Z

update org structure

commit 48b447cd9f13c07dfaec0df59f936593937914c8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T07:27:05Z

update ut

commit 1513fe20e3a924a212aac39440803ed52c73bdf0
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-01T07:00:16Z

fix get job health count error

commit 1d1def52a0eaad16b5b3fbab7cf4d5ea24fd1c23
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-01T07:05:57Z

fix conflict

commit bcdf2b2603af03fa29b64234b954b6f04b9cc798
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-02T06:48:00Z

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

commit 5a80d10c0adf8fc5d156dbbc8d1224bd90930767
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-02T12:54:07Z

uppdate job health ut

commit 6df023d1b9a043e78c80cf524becb06fda6a86a8
Author: ahutsunshine <ahutsunshine@...>
Date

[GitHub] incubator-griffin pull request #194: fix transaction rollback failure bug,jo...

2018-01-18 Thread ahutsunshine
Github user ahutsunshine closed the pull request at:

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


---


[GitHub] incubator-griffin pull request #194: fix transaction rollback failure bug,jo...

2018-01-18 Thread ahutsunshine
GitHub user ahutsunshine opened a pull request:

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

fix transaction rollback failure bug,job schedule range null bug and update 
ut 



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

$ git pull https://github.com/ahutsunshine/incubator-griffin master

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

https://github.com/apache/incubator-griffin/pull/194.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 #194


commit f116a4c833344473b6a07f4d2f0022fd7944e3ba
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-15T14:04:12Z

update several coding style

commit 4a688e56f7225288c3360261735cbf97d8e2cb53
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T04:34:48Z

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

commit 53804676b51d76fbcea2f2dec97a3861d61b25f1
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T05:28:59Z

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

commit 0cd65ee8bf4f62eb86c94ffc3da23deb23207680
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T08:22:53Z

optimize hive cache and update measure to json with format

commit db2f141c099812159dff84b0b0c6d1082aff594f
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T09:01:33Z

update hive cache

commit 1ffa2efccd88604a6caaad7f2532053d43809ceb
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T09:06:03Z

update hive cache

commit 7019b53c5697806f701b91de7d4a10776a7e72f8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T04:57:23Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 2545faf3fa7e39fa2084b39dcd1e9e44b7349e00
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T04:58:04Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 9b0cb273c5a752f5e46f729bb5b3e72789d24337
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T04:58:40Z

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

commit 72f7b9356a6db6924b0e6ffcb95b0f8d8af4b8e4
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T05:09:58Z

add postman document

commit 487d6432603ebda5e046f4a1a04fc543377f3817
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T05:41:40Z

hide part of controller

commit ee761e2e69c005eb5c1980693d42f3eb9411c5e8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:10:26Z

add license and fix swagger ui

commit 07d92346ecba0d6467d07426979011d249a80d98
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:12:54Z

add license and fix swagger ui

commit 0afa6c37583ea626b22dcc29cb1361709a9da8d4
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:38:52Z

fix job conflict

commit 17d196e997f37a20434441ba5ac764bc63739c01
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:40:18Z

    fix job conflict

commit 1b1d22cece040ab3365dc223da7744f52fbbb674
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T02:21:42Z

fix hive log error and update postman document

commit 845f1d384257964a1afbe9ad911b5b84092ff400
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T02:22:05Z

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

commit 8f1ed95042e3e6e4c93fd7bf581660ca92305146
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T05:34:56Z

fix javadoc compiler error

commit 923585ab2289d1de435ec20db51c0dfdabdea823
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T05:55:21Z

remove swagger2

commit 7bca2b71a820e73bb7c91cf4d1722a19dc37f5ae
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T06:34:00Z

update org structure

commit 48b447cd9f13c07dfaec0df59f936593937914c8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T07:27:05Z

update ut

commit 1513fe20e3a924a212aac39440803ed52c73bdf0
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-01T07:00:16Z

fix get job health count error

commit 1d1def52a0eaad16b5b3fbab7cf4d5ea24fd1c23
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-01T07:05:57Z

fix conflict

commit bcdf2b2603af03fa29b64234b954b6f04b9cc798
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-02T06:48:00Z

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

commit 5a80d10c0adf8fc5d156dbbc8d1224bd90930767
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-02T12:54:07Z

uppdate job health ut

commit 6df023d1b9a043e78c80cf524becb06fda6a86a8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-02T12:54:40Z

Merge branch 'bugFix'

commit addf5bc743f9f05a112de6821375ce7176f88b51
Author: ahuts

[GitHub] incubator-griffin pull request #190: fix job management sysnc bug and delete...

2018-01-15 Thread ahutsunshine
GitHub user ahutsunshine opened a pull request:

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

fix job management sysnc bug and delete job triggerkey not exist bug



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

$ git pull https://github.com/ahutsunshine/incubator-griffin master

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

https://github.com/apache/incubator-griffin/pull/190.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 #190


commit f116a4c833344473b6a07f4d2f0022fd7944e3ba
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-15T14:04:12Z

update several coding style

commit 4a688e56f7225288c3360261735cbf97d8e2cb53
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T04:34:48Z

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

commit 53804676b51d76fbcea2f2dec97a3861d61b25f1
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T05:28:59Z

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

commit 0cd65ee8bf4f62eb86c94ffc3da23deb23207680
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T08:22:53Z

optimize hive cache and update measure to json with format

commit db2f141c099812159dff84b0b0c6d1082aff594f
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T09:01:33Z

update hive cache

commit 1ffa2efccd88604a6caaad7f2532053d43809ceb
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T09:06:03Z

update hive cache

commit 7019b53c5697806f701b91de7d4a10776a7e72f8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T04:57:23Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 2545faf3fa7e39fa2084b39dcd1e9e44b7349e00
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T04:58:04Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 9b0cb273c5a752f5e46f729bb5b3e72789d24337
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T04:58:40Z

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

commit 72f7b9356a6db6924b0e6ffcb95b0f8d8af4b8e4
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T05:09:58Z

add postman document

commit 487d6432603ebda5e046f4a1a04fc543377f3817
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T05:41:40Z

hide part of controller

commit ee761e2e69c005eb5c1980693d42f3eb9411c5e8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:10:26Z

add license and fix swagger ui

commit 07d92346ecba0d6467d07426979011d249a80d98
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:12:54Z

add license and fix swagger ui

commit 0afa6c37583ea626b22dcc29cb1361709a9da8d4
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:38:52Z

fix job conflict

commit 17d196e997f37a20434441ba5ac764bc63739c01
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:40:18Z

    fix job conflict

commit 1b1d22cece040ab3365dc223da7744f52fbbb674
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T02:21:42Z

fix hive log error and update postman document

commit 845f1d384257964a1afbe9ad911b5b84092ff400
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T02:22:05Z

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

commit 8f1ed95042e3e6e4c93fd7bf581660ca92305146
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T05:34:56Z

fix javadoc compiler error

commit 923585ab2289d1de435ec20db51c0dfdabdea823
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T05:55:21Z

remove swagger2

commit 7bca2b71a820e73bb7c91cf4d1722a19dc37f5ae
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T06:34:00Z

update org structure

commit 48b447cd9f13c07dfaec0df59f936593937914c8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T07:27:05Z

update ut

commit 1513fe20e3a924a212aac39440803ed52c73bdf0
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-01T07:00:16Z

fix get job health count error

commit 1d1def52a0eaad16b5b3fbab7cf4d5ea24fd1c23
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-01T07:05:57Z

fix conflict

commit bcdf2b2603af03fa29b64234b954b6f04b9cc798
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-02T06:48:00Z

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

commit 5a80d10c0adf8fc5d156dbbc8d1224bd90930767
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-02T12:54:07Z

uppdate job health ut

commit 6df023d1b9a043e78c80cf524becb06fda6a86a8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-02T12:54:40Z

Merge branch 'bugFix'

commit addf5bc743f9f05a112de6821375ce7176f88b51
Author: ahuts

[GitHub] incubator-griffin pull request #189: fix job management sysnc bug and delete...

2018-01-15 Thread ahutsunshine
Github user ahutsunshine closed the pull request at:

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


---


[GitHub] incubator-griffin pull request #189: fix job management sysnc bug and delete...

2018-01-15 Thread ahutsunshine
GitHub user ahutsunshine opened a pull request:

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

fix job management sysnc bug and delete job triggerkey not exist bug



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

$ git pull https://github.com/ahutsunshine/incubator-griffin master

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

https://github.com/apache/incubator-griffin/pull/189.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 #189


commit f116a4c833344473b6a07f4d2f0022fd7944e3ba
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-15T14:04:12Z

update several coding style

commit 4a688e56f7225288c3360261735cbf97d8e2cb53
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T04:34:48Z

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

commit 53804676b51d76fbcea2f2dec97a3861d61b25f1
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T05:28:59Z

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

commit 0cd65ee8bf4f62eb86c94ffc3da23deb23207680
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T08:22:53Z

optimize hive cache and update measure to json with format

commit db2f141c099812159dff84b0b0c6d1082aff594f
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T09:01:33Z

update hive cache

commit 1ffa2efccd88604a6caaad7f2532053d43809ceb
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T09:06:03Z

update hive cache

commit 7019b53c5697806f701b91de7d4a10776a7e72f8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T04:57:23Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 2545faf3fa7e39fa2084b39dcd1e9e44b7349e00
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T04:58:04Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 9b0cb273c5a752f5e46f729bb5b3e72789d24337
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T04:58:40Z

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

commit 72f7b9356a6db6924b0e6ffcb95b0f8d8af4b8e4
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T05:09:58Z

add postman document

commit 487d6432603ebda5e046f4a1a04fc543377f3817
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T05:41:40Z

hide part of controller

commit ee761e2e69c005eb5c1980693d42f3eb9411c5e8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:10:26Z

add license and fix swagger ui

commit 07d92346ecba0d6467d07426979011d249a80d98
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:12:54Z

add license and fix swagger ui

commit 0afa6c37583ea626b22dcc29cb1361709a9da8d4
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:38:52Z

fix job conflict

commit 17d196e997f37a20434441ba5ac764bc63739c01
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:40:18Z

    fix job conflict

commit 1b1d22cece040ab3365dc223da7744f52fbbb674
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T02:21:42Z

fix hive log error and update postman document

commit 845f1d384257964a1afbe9ad911b5b84092ff400
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T02:22:05Z

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

commit 8f1ed95042e3e6e4c93fd7bf581660ca92305146
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T05:34:56Z

fix javadoc compiler error

commit 923585ab2289d1de435ec20db51c0dfdabdea823
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T05:55:21Z

remove swagger2

commit 7bca2b71a820e73bb7c91cf4d1722a19dc37f5ae
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T06:34:00Z

update org structure

commit 48b447cd9f13c07dfaec0df59f936593937914c8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T07:27:05Z

update ut

commit 1513fe20e3a924a212aac39440803ed52c73bdf0
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-01T07:00:16Z

fix get job health count error

commit 1d1def52a0eaad16b5b3fbab7cf4d5ea24fd1c23
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-01T07:05:57Z

fix conflict

commit bcdf2b2603af03fa29b64234b954b6f04b9cc798
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-02T06:48:00Z

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

commit 5a80d10c0adf8fc5d156dbbc8d1224bd90930767
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-02T12:54:07Z

uppdate job health ut

commit 6df023d1b9a043e78c80cf524becb06fda6a86a8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-02T12:54:40Z

Merge branch 'bugFix'

commit addf5bc743f9f05a112de6821375ce7176f88b51
Author: ahuts

[GitHub] incubator-griffin pull request #185: upgrade new version

2018-01-09 Thread ahutsunshine
GitHub user ahutsunshine opened a pull request:

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

upgrade new version



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

$ git pull https://github.com/ahutsunshine/incubator-griffin master

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

https://github.com/apache/incubator-griffin/pull/185.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 #185


commit f116a4c833344473b6a07f4d2f0022fd7944e3ba
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-15T14:04:12Z

update several coding style

commit 4a688e56f7225288c3360261735cbf97d8e2cb53
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T04:34:48Z

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

commit 53804676b51d76fbcea2f2dec97a3861d61b25f1
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T05:28:59Z

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

commit 0cd65ee8bf4f62eb86c94ffc3da23deb23207680
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T08:22:53Z

optimize hive cache and update measure to json with format

commit db2f141c099812159dff84b0b0c6d1082aff594f
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T09:01:33Z

update hive cache

commit 1ffa2efccd88604a6caaad7f2532053d43809ceb
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-16T09:06:03Z

update hive cache

commit 7019b53c5697806f701b91de7d4a10776a7e72f8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T04:57:23Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 2545faf3fa7e39fa2084b39dcd1e9e44b7349e00
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T04:58:04Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 9b0cb273c5a752f5e46f729bb5b3e72789d24337
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T04:58:40Z

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

commit 72f7b9356a6db6924b0e6ffcb95b0f8d8af4b8e4
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T05:09:58Z

add postman document

commit 487d6432603ebda5e046f4a1a04fc543377f3817
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T05:41:40Z

hide part of controller

commit ee761e2e69c005eb5c1980693d42f3eb9411c5e8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:10:26Z

add license and fix swagger ui

commit 07d92346ecba0d6467d07426979011d249a80d98
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:12:54Z

add license and fix swagger ui

commit 0afa6c37583ea626b22dcc29cb1361709a9da8d4
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:38:52Z

fix job conflict

commit 17d196e997f37a20434441ba5ac764bc63739c01
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-30T08:40:18Z

    fix job conflict

commit 1b1d22cece040ab3365dc223da7744f52fbbb674
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T02:21:42Z

fix hive log error and update postman document

commit 845f1d384257964a1afbe9ad911b5b84092ff400
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T02:22:05Z

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

commit 8f1ed95042e3e6e4c93fd7bf581660ca92305146
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T05:34:56Z

fix javadoc compiler error

commit 923585ab2289d1de435ec20db51c0dfdabdea823
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T05:55:21Z

remove swagger2

commit 7bca2b71a820e73bb7c91cf4d1722a19dc37f5ae
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T06:34:00Z

update org structure

commit 48b447cd9f13c07dfaec0df59f936593937914c8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-10-31T07:27:05Z

update ut

commit 1513fe20e3a924a212aac39440803ed52c73bdf0
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-01T07:00:16Z

fix get job health count error

commit 1d1def52a0eaad16b5b3fbab7cf4d5ea24fd1c23
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-01T07:05:57Z

fix conflict

commit bcdf2b2603af03fa29b64234b954b6f04b9cc798
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-02T06:48:00Z

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

commit 5a80d10c0adf8fc5d156dbbc8d1224bd90930767
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-02T12:54:07Z

uppdate job health ut

commit 6df023d1b9a043e78c80cf524becb06fda6a86a8
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-02T12:54:40Z

Merge branch 'bugFix'

commit addf5bc743f9f05a112de6821375ce7176f88b51
Author: ahutsunshine <ahutsunshine@...>
Date:   2017-11-03T03:05:

[GitHub] incubator-griffin pull request #181: change partition format

2017-11-22 Thread ahutsunshine
GitHub user ahutsunshine opened a pull request:

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

change partition format



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

$ git pull https://github.com/ahutsunshine/incubator-griffin master

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

https://github.com/apache/incubator-griffin/pull/181.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 #181


commit f116a4c833344473b6a07f4d2f0022fd7944e3ba
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-15T14:04:12Z

update several coding style

commit 4a688e56f7225288c3360261735cbf97d8e2cb53
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T04:34:48Z

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

commit 53804676b51d76fbcea2f2dec97a3861d61b25f1
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T05:28:59Z

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

commit 0cd65ee8bf4f62eb86c94ffc3da23deb23207680
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T08:22:53Z

optimize hive cache and update measure to json with format

commit db2f141c099812159dff84b0b0c6d1082aff594f
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T09:01:33Z

update hive cache

commit 1ffa2efccd88604a6caaad7f2532053d43809ceb
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T09:06:03Z

update hive cache

commit 7019b53c5697806f701b91de7d4a10776a7e72f8
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T04:57:23Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 2545faf3fa7e39fa2084b39dcd1e9e44b7349e00
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T04:58:04Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 9b0cb273c5a752f5e46f729bb5b3e72789d24337
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T04:58:40Z

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

commit 72f7b9356a6db6924b0e6ffcb95b0f8d8af4b8e4
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T05:09:58Z

add postman document

commit 487d6432603ebda5e046f4a1a04fc543377f3817
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T05:41:40Z

hide part of controller

commit ee761e2e69c005eb5c1980693d42f3eb9411c5e8
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:10:26Z

add license and fix swagger ui

commit 07d92346ecba0d6467d07426979011d249a80d98
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:12:54Z

add license and fix swagger ui

commit 0afa6c37583ea626b22dcc29cb1361709a9da8d4
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:38:52Z

fix job conflict

commit 17d196e997f37a20434441ba5ac764bc63739c01
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:40:18Z

fix job conflict

commit 1b1d22cece040ab3365dc223da7744f52fbbb674
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T02:21:42Z

fix hive log error and update postman document

commit 845f1d384257964a1afbe9ad911b5b84092ff400
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T02:22:05Z

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

commit 8f1ed95042e3e6e4c93fd7bf581660ca92305146
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T05:34:56Z

fix javadoc compiler error

commit 923585ab2289d1de435ec20db51c0dfdabdea823
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T05:55:21Z

remove swagger2

commit 7bca2b71a820e73bb7c91cf4d1722a19dc37f5ae
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T06:34:00Z

update org structure

commit 48b447cd9f13c07dfaec0df59f936593937914c8
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T07:27:05Z

update ut

commit 1513fe20e3a924a212aac39440803ed52c73bdf0
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-11-01T07:00:16Z

fix get job health count error

commit 1d1def52a0eaad16b5b3fbab7cf4d5ea24fd1c23
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-11-01T07:05:57Z

fix conflict

commit bcdf2b2603af03fa29b64234b954b6f04b9cc798
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-11-02T06:48:00Z

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

commit 5a80d10c0adf8fc5d156dbbc8d1224bd90930767
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-11-02T12:54:07Z

uppdate job health ut

commit 6df023d1b9a043e78c80cf524becb06fda6a86a8
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-11-02T

[GitHub] incubator-griffin pull request #179: fix rule details format and update ut

2017-11-22 Thread ahutsunshine
GitHub user ahutsunshine opened a pull request:

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

 fix rule details format and update ut



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

$ git pull https://github.com/ahutsunshine/incubator-griffin master

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

https://github.com/apache/incubator-griffin/pull/179.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 #179


commit f116a4c833344473b6a07f4d2f0022fd7944e3ba
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-15T14:04:12Z

update several coding style

commit 4a688e56f7225288c3360261735cbf97d8e2cb53
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T04:34:48Z

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

commit 53804676b51d76fbcea2f2dec97a3861d61b25f1
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T05:28:59Z

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

commit 0cd65ee8bf4f62eb86c94ffc3da23deb23207680
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T08:22:53Z

optimize hive cache and update measure to json with format

commit db2f141c099812159dff84b0b0c6d1082aff594f
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T09:01:33Z

update hive cache

commit 1ffa2efccd88604a6caaad7f2532053d43809ceb
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T09:06:03Z

update hive cache

commit 7019b53c5697806f701b91de7d4a10776a7e72f8
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T04:57:23Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 2545faf3fa7e39fa2084b39dcd1e9e44b7349e00
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T04:58:04Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 9b0cb273c5a752f5e46f729bb5b3e72789d24337
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T04:58:40Z

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

commit 72f7b9356a6db6924b0e6ffcb95b0f8d8af4b8e4
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T05:09:58Z

add postman document

commit 487d6432603ebda5e046f4a1a04fc543377f3817
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T05:41:40Z

hide part of controller

commit ee761e2e69c005eb5c1980693d42f3eb9411c5e8
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:10:26Z

add license and fix swagger ui

commit 07d92346ecba0d6467d07426979011d249a80d98
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:12:54Z

add license and fix swagger ui

commit 0afa6c37583ea626b22dcc29cb1361709a9da8d4
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:38:52Z

fix job conflict

commit 17d196e997f37a20434441ba5ac764bc63739c01
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:40:18Z

fix job conflict

commit 1b1d22cece040ab3365dc223da7744f52fbbb674
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T02:21:42Z

fix hive log error and update postman document

commit 845f1d384257964a1afbe9ad911b5b84092ff400
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T02:22:05Z

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

commit 8f1ed95042e3e6e4c93fd7bf581660ca92305146
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T05:34:56Z

fix javadoc compiler error

commit 923585ab2289d1de435ec20db51c0dfdabdea823
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T05:55:21Z

remove swagger2

commit 7bca2b71a820e73bb7c91cf4d1722a19dc37f5ae
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T06:34:00Z

update org structure

commit 48b447cd9f13c07dfaec0df59f936593937914c8
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T07:27:05Z

update ut

commit 1513fe20e3a924a212aac39440803ed52c73bdf0
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-11-01T07:00:16Z

fix get job health count error

commit 1d1def52a0eaad16b5b3fbab7cf4d5ea24fd1c23
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-11-01T07:05:57Z

fix conflict

commit bcdf2b2603af03fa29b64234b954b6f04b9cc798
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-11-02T06:48:00Z

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

commit 5a80d10c0adf8fc5d156dbbc8d1224bd90930767
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-11-02T12:54:07Z

uppdate job health ut

commit 6df023d1b9a043e78c80cf524becb06fda6a86a8
Author: ahutsunshine <ahutsunsh...@gmail.com>

[GitHub] incubator-griffin pull request #178: fix rule details format

2017-11-22 Thread ahutsunshine
Github user ahutsunshine closed the pull request at:

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


---


[GitHub] incubator-griffin pull request #178: fix rule details format

2017-11-22 Thread ahutsunshine
GitHub user ahutsunshine opened a pull request:

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

 fix rule details format



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

$ git pull https://github.com/ahutsunshine/incubator-griffin master

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

https://github.com/apache/incubator-griffin/pull/178.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 #178


commit f116a4c833344473b6a07f4d2f0022fd7944e3ba
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-15T14:04:12Z

update several coding style

commit 4a688e56f7225288c3360261735cbf97d8e2cb53
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T04:34:48Z

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

commit 53804676b51d76fbcea2f2dec97a3861d61b25f1
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T05:28:59Z

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

commit 0cd65ee8bf4f62eb86c94ffc3da23deb23207680
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T08:22:53Z

optimize hive cache and update measure to json with format

commit db2f141c099812159dff84b0b0c6d1082aff594f
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T09:01:33Z

update hive cache

commit 1ffa2efccd88604a6caaad7f2532053d43809ceb
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T09:06:03Z

update hive cache

commit 7019b53c5697806f701b91de7d4a10776a7e72f8
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T04:57:23Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 2545faf3fa7e39fa2084b39dcd1e9e44b7349e00
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T04:58:04Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 9b0cb273c5a752f5e46f729bb5b3e72789d24337
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T04:58:40Z

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

commit 72f7b9356a6db6924b0e6ffcb95b0f8d8af4b8e4
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T05:09:58Z

add postman document

commit 487d6432603ebda5e046f4a1a04fc543377f3817
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T05:41:40Z

hide part of controller

commit ee761e2e69c005eb5c1980693d42f3eb9411c5e8
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:10:26Z

add license and fix swagger ui

commit 07d92346ecba0d6467d07426979011d249a80d98
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:12:54Z

add license and fix swagger ui

commit 0afa6c37583ea626b22dcc29cb1361709a9da8d4
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:38:52Z

fix job conflict

commit 17d196e997f37a20434441ba5ac764bc63739c01
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:40:18Z

fix job conflict

commit 1b1d22cece040ab3365dc223da7744f52fbbb674
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T02:21:42Z

fix hive log error and update postman document

commit 845f1d384257964a1afbe9ad911b5b84092ff400
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T02:22:05Z

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

commit 8f1ed95042e3e6e4c93fd7bf581660ca92305146
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T05:34:56Z

fix javadoc compiler error

commit 923585ab2289d1de435ec20db51c0dfdabdea823
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T05:55:21Z

remove swagger2

commit 7bca2b71a820e73bb7c91cf4d1722a19dc37f5ae
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T06:34:00Z

update org structure

commit 48b447cd9f13c07dfaec0df59f936593937914c8
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T07:27:05Z

update ut

commit 1513fe20e3a924a212aac39440803ed52c73bdf0
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-11-01T07:00:16Z

fix get job health count error

commit 1d1def52a0eaad16b5b3fbab7cf4d5ea24fd1c23
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-11-01T07:05:57Z

fix conflict

commit bcdf2b2603af03fa29b64234b954b6f04b9cc798
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-11-02T06:48:00Z

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

commit 5a80d10c0adf8fc5d156dbbc8d1224bd90930767
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-11-02T12:54:07Z

uppdate job health ut

commit 6df023d1b9a043e78c80cf524becb06fda6a86a8
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-11-

[GitHub] incubator-griffin pull request #177: fix livy backquote bug and add rule det...

2017-11-21 Thread ahutsunshine
GitHub user ahutsunshine opened a pull request:

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

 fix livy backquote bug and add rule details



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

$ git pull https://github.com/ahutsunshine/incubator-griffin master

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

https://github.com/apache/incubator-griffin/pull/177.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 #177


commit f116a4c833344473b6a07f4d2f0022fd7944e3ba
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-15T14:04:12Z

update several coding style

commit 4a688e56f7225288c3360261735cbf97d8e2cb53
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T04:34:48Z

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

commit 53804676b51d76fbcea2f2dec97a3861d61b25f1
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T05:28:59Z

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

commit 0cd65ee8bf4f62eb86c94ffc3da23deb23207680
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T08:22:53Z

optimize hive cache and update measure to json with format

commit db2f141c099812159dff84b0b0c6d1082aff594f
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T09:01:33Z

update hive cache

commit 1ffa2efccd88604a6caaad7f2532053d43809ceb
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T09:06:03Z

update hive cache

commit 7019b53c5697806f701b91de7d4a10776a7e72f8
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T04:57:23Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 2545faf3fa7e39fa2084b39dcd1e9e44b7349e00
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T04:58:04Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 9b0cb273c5a752f5e46f729bb5b3e72789d24337
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T04:58:40Z

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

commit 72f7b9356a6db6924b0e6ffcb95b0f8d8af4b8e4
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T05:09:58Z

add postman document

commit 487d6432603ebda5e046f4a1a04fc543377f3817
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T05:41:40Z

hide part of controller

commit ee761e2e69c005eb5c1980693d42f3eb9411c5e8
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:10:26Z

add license and fix swagger ui

commit 07d92346ecba0d6467d07426979011d249a80d98
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:12:54Z

add license and fix swagger ui

commit 0afa6c37583ea626b22dcc29cb1361709a9da8d4
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:38:52Z

fix job conflict

commit 17d196e997f37a20434441ba5ac764bc63739c01
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:40:18Z

fix job conflict

commit 1b1d22cece040ab3365dc223da7744f52fbbb674
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T02:21:42Z

fix hive log error and update postman document

commit 845f1d384257964a1afbe9ad911b5b84092ff400
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T02:22:05Z

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

commit 8f1ed95042e3e6e4c93fd7bf581660ca92305146
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T05:34:56Z

fix javadoc compiler error

commit 923585ab2289d1de435ec20db51c0dfdabdea823
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T05:55:21Z

remove swagger2

commit 7bca2b71a820e73bb7c91cf4d1722a19dc37f5ae
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T06:34:00Z

update org structure

commit 48b447cd9f13c07dfaec0df59f936593937914c8
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T07:27:05Z

update ut

commit 1513fe20e3a924a212aac39440803ed52c73bdf0
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-11-01T07:00:16Z

fix get job health count error

commit 1d1def52a0eaad16b5b3fbab7cf4d5ea24fd1c23
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-11-01T07:05:57Z

fix conflict

commit bcdf2b2603af03fa29b64234b954b6f04b9cc798
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-11-02T06:48:00Z

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

commit 5a80d10c0adf8fc5d156dbbc8d1224bd90930767
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-11-02T12:54:07Z

uppdate job health ut

commit 6df023d1b9a043e78c80cf524becb06fda6a86a8
Author: ahutsunshine <ahutsunsh...@gmail.c

[GitHub] incubator-griffin pull request #171: fix bugs and add record triggered time ...

2017-11-06 Thread ahutsunshine
GitHub user ahutsunshine opened a pull request:

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

fix bugs and add record triggered time of measure



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

$ git pull https://github.com/ahutsunshine/incubator-griffin master

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

https://github.com/apache/incubator-griffin/pull/171.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 #171


commit f116a4c833344473b6a07f4d2f0022fd7944e3ba
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-15T14:04:12Z

update several coding style

commit 4a688e56f7225288c3360261735cbf97d8e2cb53
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T04:34:48Z

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

commit 53804676b51d76fbcea2f2dec97a3861d61b25f1
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T05:28:59Z

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

commit 0cd65ee8bf4f62eb86c94ffc3da23deb23207680
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T08:22:53Z

optimize hive cache and update measure to json with format

commit db2f141c099812159dff84b0b0c6d1082aff594f
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T09:01:33Z

update hive cache

commit 1ffa2efccd88604a6caaad7f2532053d43809ceb
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T09:06:03Z

update hive cache

commit 7019b53c5697806f701b91de7d4a10776a7e72f8
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T04:57:23Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 2545faf3fa7e39fa2084b39dcd1e9e44b7349e00
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T04:58:04Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 9b0cb273c5a752f5e46f729bb5b3e72789d24337
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T04:58:40Z

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

commit 72f7b9356a6db6924b0e6ffcb95b0f8d8af4b8e4
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T05:09:58Z

add postman document

commit 487d6432603ebda5e046f4a1a04fc543377f3817
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T05:41:40Z

hide part of controller

commit ee761e2e69c005eb5c1980693d42f3eb9411c5e8
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:10:26Z

add license and fix swagger ui

commit 07d92346ecba0d6467d07426979011d249a80d98
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:12:54Z

add license and fix swagger ui

commit 0afa6c37583ea626b22dcc29cb1361709a9da8d4
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:38:52Z

fix job conflict

commit 17d196e997f37a20434441ba5ac764bc63739c01
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:40:18Z

fix job conflict

commit 1b1d22cece040ab3365dc223da7744f52fbbb674
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T02:21:42Z

fix hive log error and update postman document

commit 845f1d384257964a1afbe9ad911b5b84092ff400
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T02:22:05Z

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

commit 8f1ed95042e3e6e4c93fd7bf581660ca92305146
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T05:34:56Z

fix javadoc compiler error

commit 923585ab2289d1de435ec20db51c0dfdabdea823
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T05:55:21Z

remove swagger2

commit 7bca2b71a820e73bb7c91cf4d1722a19dc37f5ae
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T06:34:00Z

update org structure

commit 48b447cd9f13c07dfaec0df59f936593937914c8
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T07:27:05Z

update ut

commit 1513fe20e3a924a212aac39440803ed52c73bdf0
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-11-01T07:00:16Z

fix get job health count error

commit 1d1def52a0eaad16b5b3fbab7cf4d5ea24fd1c23
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-11-01T07:05:57Z

fix conflict

commit bcdf2b2603af03fa29b64234b954b6f04b9cc798
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-11-02T06:48:00Z

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

commit 5a80d10c0adf8fc5d156dbbc8d1224bd90930767
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-11-02T12:54:07Z

uppdate job health ut

commit 6df023d1b9a043e78c80cf524becb06fda6a86a8
Author: ahutsunshine <ahutsunsh...@gmail.c

[GitHub] incubator-griffin pull request #167: fix measure id not exist , job health a...

2017-11-03 Thread ahutsunshine
GitHub user ahutsunshine opened a pull request:

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

fix measure id not exist , job health and update job service ut



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

$ git pull https://github.com/ahutsunshine/incubator-griffin master

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

https://github.com/apache/incubator-griffin/pull/167.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 #167


commit f116a4c833344473b6a07f4d2f0022fd7944e3ba
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-15T14:04:12Z

update several coding style

commit 4a688e56f7225288c3360261735cbf97d8e2cb53
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T04:34:48Z

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

commit 53804676b51d76fbcea2f2dec97a3861d61b25f1
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T05:28:59Z

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

commit 0cd65ee8bf4f62eb86c94ffc3da23deb23207680
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T08:22:53Z

optimize hive cache and update measure to json with format

commit db2f141c099812159dff84b0b0c6d1082aff594f
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T09:01:33Z

update hive cache

commit 1ffa2efccd88604a6caaad7f2532053d43809ceb
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T09:06:03Z

update hive cache

commit 7019b53c5697806f701b91de7d4a10776a7e72f8
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T04:57:23Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 2545faf3fa7e39fa2084b39dcd1e9e44b7349e00
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T04:58:04Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 9b0cb273c5a752f5e46f729bb5b3e72789d24337
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T04:58:40Z

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

commit 72f7b9356a6db6924b0e6ffcb95b0f8d8af4b8e4
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T05:09:58Z

add postman document

commit 487d6432603ebda5e046f4a1a04fc543377f3817
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T05:41:40Z

hide part of controller

commit ee761e2e69c005eb5c1980693d42f3eb9411c5e8
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:10:26Z

add license and fix swagger ui

commit 07d92346ecba0d6467d07426979011d249a80d98
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:12:54Z

add license and fix swagger ui

commit 0afa6c37583ea626b22dcc29cb1361709a9da8d4
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:38:52Z

fix job conflict

commit 17d196e997f37a20434441ba5ac764bc63739c01
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:40:18Z

fix job conflict

commit 1b1d22cece040ab3365dc223da7744f52fbbb674
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T02:21:42Z

fix hive log error and update postman document

commit 845f1d384257964a1afbe9ad911b5b84092ff400
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T02:22:05Z

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

commit 8f1ed95042e3e6e4c93fd7bf581660ca92305146
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T05:34:56Z

fix javadoc compiler error

commit 923585ab2289d1de435ec20db51c0dfdabdea823
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T05:55:21Z

remove swagger2

commit 7bca2b71a820e73bb7c91cf4d1722a19dc37f5ae
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T06:34:00Z

update org structure

commit 48b447cd9f13c07dfaec0df59f936593937914c8
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T07:27:05Z

update ut

commit 1513fe20e3a924a212aac39440803ed52c73bdf0
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-11-01T07:00:16Z

fix get job health count error

commit 1d1def52a0eaad16b5b3fbab7cf4d5ea24fd1c23
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-11-01T07:05:57Z

fix conflict

commit bcdf2b2603af03fa29b64234b954b6f04b9cc798
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-11-02T06:48:00Z

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

commit 5a80d10c0adf8fc5d156dbbc8d1224bd90930767
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-11-02T12:54:07Z

uppdate job health ut

commit 6df023d1b9a043e78c80cf524becb06fda6a86a8
Author: ahutsunshine 

[GitHub] incubator-griffin pull request #166: fix measure id not exist , job health a...

2017-11-03 Thread ahutsunshine
GitHub user ahutsunshine opened a pull request:

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

fix measure id not exist , job health and update ut



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

$ git pull https://github.com/ahutsunshine/incubator-griffin master

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

https://github.com/apache/incubator-griffin/pull/166.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 #166


commit f116a4c833344473b6a07f4d2f0022fd7944e3ba
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-15T14:04:12Z

update several coding style

commit 4a688e56f7225288c3360261735cbf97d8e2cb53
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T04:34:48Z

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

commit 53804676b51d76fbcea2f2dec97a3861d61b25f1
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T05:28:59Z

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

commit 0cd65ee8bf4f62eb86c94ffc3da23deb23207680
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T08:22:53Z

optimize hive cache and update measure to json with format

commit db2f141c099812159dff84b0b0c6d1082aff594f
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T09:01:33Z

update hive cache

commit 1ffa2efccd88604a6caaad7f2532053d43809ceb
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T09:06:03Z

update hive cache

commit 7019b53c5697806f701b91de7d4a10776a7e72f8
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T04:57:23Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 2545faf3fa7e39fa2084b39dcd1e9e44b7349e00
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T04:58:04Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 9b0cb273c5a752f5e46f729bb5b3e72789d24337
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T04:58:40Z

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

commit 72f7b9356a6db6924b0e6ffcb95b0f8d8af4b8e4
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T05:09:58Z

add postman document

commit 487d6432603ebda5e046f4a1a04fc543377f3817
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T05:41:40Z

hide part of controller

commit ee761e2e69c005eb5c1980693d42f3eb9411c5e8
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:10:26Z

add license and fix swagger ui

commit 07d92346ecba0d6467d07426979011d249a80d98
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:12:54Z

add license and fix swagger ui

commit 0afa6c37583ea626b22dcc29cb1361709a9da8d4
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:38:52Z

fix job conflict

commit 17d196e997f37a20434441ba5ac764bc63739c01
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:40:18Z

fix job conflict

commit 1b1d22cece040ab3365dc223da7744f52fbbb674
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T02:21:42Z

fix hive log error and update postman document

commit 845f1d384257964a1afbe9ad911b5b84092ff400
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T02:22:05Z

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

commit 8f1ed95042e3e6e4c93fd7bf581660ca92305146
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T05:34:56Z

fix javadoc compiler error

commit 923585ab2289d1de435ec20db51c0dfdabdea823
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T05:55:21Z

remove swagger2

commit 7bca2b71a820e73bb7c91cf4d1722a19dc37f5ae
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T06:34:00Z

update org structure

commit 48b447cd9f13c07dfaec0df59f936593937914c8
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T07:27:05Z

update ut

commit 1513fe20e3a924a212aac39440803ed52c73bdf0
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-11-01T07:00:16Z

fix get job health count error

commit 1d1def52a0eaad16b5b3fbab7cf4d5ea24fd1c23
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-11-01T07:05:57Z

fix conflict

commit bcdf2b2603af03fa29b64234b954b6f04b9cc798
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-11-02T06:48:00Z

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

commit 5a80d10c0adf8fc5d156dbbc8d1224bd90930767
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-11-02T12:54:07Z

uppdate job health ut

commit 6df023d1b9a043e78c80cf524becb06fda6a86a8
Author: ahutsunshine <ahutsun

[GitHub] incubator-griffin pull request #158: fix javadoc,hive log error,remove swagg...

2017-10-31 Thread ahutsunshine
GitHub user ahutsunshine opened a pull request:

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

fix javadoc,hive log error,remove swagger2 and update ut



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

$ git pull https://github.com/ahutsunshine/incubator-griffin master

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

https://github.com/apache/incubator-griffin/pull/158.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 #158


commit f116a4c833344473b6a07f4d2f0022fd7944e3ba
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-15T14:04:12Z

update several coding style

commit 4a688e56f7225288c3360261735cbf97d8e2cb53
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T04:34:48Z

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

commit 53804676b51d76fbcea2f2dec97a3861d61b25f1
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T05:28:59Z

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

commit 0cd65ee8bf4f62eb86c94ffc3da23deb23207680
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T08:22:53Z

optimize hive cache and update measure to json with format

commit db2f141c099812159dff84b0b0c6d1082aff594f
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T09:01:33Z

update hive cache

commit 1ffa2efccd88604a6caaad7f2532053d43809ceb
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T09:06:03Z

update hive cache

commit 7019b53c5697806f701b91de7d4a10776a7e72f8
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T04:57:23Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 2545faf3fa7e39fa2084b39dcd1e9e44b7349e00
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T04:58:04Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 9b0cb273c5a752f5e46f729bb5b3e72789d24337
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T04:58:40Z

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

commit 72f7b9356a6db6924b0e6ffcb95b0f8d8af4b8e4
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T05:09:58Z

add postman document

commit 487d6432603ebda5e046f4a1a04fc543377f3817
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T05:41:40Z

hide part of controller

commit ee761e2e69c005eb5c1980693d42f3eb9411c5e8
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:10:26Z

add license and fix swagger ui

commit 07d92346ecba0d6467d07426979011d249a80d98
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:12:54Z

add license and fix swagger ui

commit 0afa6c37583ea626b22dcc29cb1361709a9da8d4
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:38:52Z

fix job conflict

commit 17d196e997f37a20434441ba5ac764bc63739c01
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:40:18Z

fix job conflict

commit 1b1d22cece040ab3365dc223da7744f52fbbb674
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T02:21:42Z

fix hive log error and update postman document

commit 845f1d384257964a1afbe9ad911b5b84092ff400
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T02:22:05Z

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

commit 8f1ed95042e3e6e4c93fd7bf581660ca92305146
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T05:34:56Z

fix javadoc compiler error

commit 923585ab2289d1de435ec20db51c0dfdabdea823
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T05:55:21Z

remove swagger2

commit 7bca2b71a820e73bb7c91cf4d1722a19dc37f5ae
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T06:34:00Z

update org structure

commit 48b447cd9f13c07dfaec0df59f936593937914c8
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-31T07:27:05Z

update ut




---


[GitHub] incubator-griffin pull request #157: fix javadoc,hive log error,remove swagg...

2017-10-31 Thread ahutsunshine
Github user ahutsunshine closed the pull request at:

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


---


[GitHub] incubator-griffin pull request #156: fix job conflict

2017-10-30 Thread ahutsunshine
GitHub user ahutsunshine opened a pull request:

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

fix job conflict



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

$ git pull https://github.com/ahutsunshine/incubator-griffin master

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

https://github.com/apache/incubator-griffin/pull/156.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 #156


commit f116a4c833344473b6a07f4d2f0022fd7944e3ba
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-15T14:04:12Z

update several coding style

commit 4a688e56f7225288c3360261735cbf97d8e2cb53
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T04:34:48Z

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

commit 53804676b51d76fbcea2f2dec97a3861d61b25f1
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T05:28:59Z

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

commit 0cd65ee8bf4f62eb86c94ffc3da23deb23207680
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T08:22:53Z

optimize hive cache and update measure to json with format

commit db2f141c099812159dff84b0b0c6d1082aff594f
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T09:01:33Z

update hive cache

commit 1ffa2efccd88604a6caaad7f2532053d43809ceb
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T09:06:03Z

update hive cache

commit 7019b53c5697806f701b91de7d4a10776a7e72f8
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T04:57:23Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 2545faf3fa7e39fa2084b39dcd1e9e44b7349e00
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T04:58:04Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 9b0cb273c5a752f5e46f729bb5b3e72789d24337
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T04:58:40Z

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

commit 72f7b9356a6db6924b0e6ffcb95b0f8d8af4b8e4
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T05:09:58Z

add postman document

commit 487d6432603ebda5e046f4a1a04fc543377f3817
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T05:41:40Z

hide part of controller

commit ee761e2e69c005eb5c1980693d42f3eb9411c5e8
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:10:26Z

add license and fix swagger ui

commit 07d92346ecba0d6467d07426979011d249a80d98
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:12:54Z

add license and fix swagger ui

commit 0afa6c37583ea626b22dcc29cb1361709a9da8d4
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:38:52Z

fix job conflict

commit 17d196e997f37a20434441ba5ac764bc63739c01
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:40:18Z

fix job conflict




---


[GitHub] incubator-griffin pull request #153: add license and fix swagger ui

2017-10-30 Thread ahutsunshine
GitHub user ahutsunshine opened a pull request:

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

add license and fix swagger ui



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

$ git pull https://github.com/ahutsunshine/incubator-griffin master

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

https://github.com/apache/incubator-griffin/pull/153.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 #153


commit f116a4c833344473b6a07f4d2f0022fd7944e3ba
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-15T14:04:12Z

update several coding style

commit 4a688e56f7225288c3360261735cbf97d8e2cb53
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T04:34:48Z

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

commit 53804676b51d76fbcea2f2dec97a3861d61b25f1
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T05:28:59Z

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

commit 0cd65ee8bf4f62eb86c94ffc3da23deb23207680
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T08:22:53Z

optimize hive cache and update measure to json with format

commit db2f141c099812159dff84b0b0c6d1082aff594f
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T09:01:33Z

update hive cache

commit 1ffa2efccd88604a6caaad7f2532053d43809ceb
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T09:06:03Z

update hive cache

commit 7019b53c5697806f701b91de7d4a10776a7e72f8
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T04:57:23Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 2545faf3fa7e39fa2084b39dcd1e9e44b7349e00
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T04:58:04Z

swagger, structure modification, hive metastore bug fix, ut updated

commit 9b0cb273c5a752f5e46f729bb5b3e72789d24337
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T04:58:40Z

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

commit 72f7b9356a6db6924b0e6ffcb95b0f8d8af4b8e4
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T05:09:58Z

add postman document

commit 487d6432603ebda5e046f4a1a04fc543377f3817
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T05:41:40Z

hide part of controller

commit ee761e2e69c005eb5c1980693d42f3eb9411c5e8
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:10:26Z

add license and fix swagger ui

commit 07d92346ecba0d6467d07426979011d249a80d98
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-30T08:12:54Z

add license and fix swagger ui




---


[GitHub] incubator-griffin pull request #142: optimize hive cache and update measure ...

2017-10-16 Thread ahutsunshine
GitHub user ahutsunshine opened a pull request:

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

optimize hive cache and update measure to json with format



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

$ git pull https://github.com/ahutsunshine/incubator-griffin master

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

https://github.com/apache/incubator-griffin/pull/142.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 #142


commit f116a4c833344473b6a07f4d2f0022fd7944e3ba
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-15T14:04:12Z

update several coding style

commit 4a688e56f7225288c3360261735cbf97d8e2cb53
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T04:34:48Z

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

commit 53804676b51d76fbcea2f2dec97a3861d61b25f1
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T05:28:59Z

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

commit 0cd65ee8bf4f62eb86c94ffc3da23deb23207680
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-16T08:22:53Z

optimize hive cache and update measure to json with format




---


[GitHub] incubator-griffin pull request #140: update several coding style

2017-10-15 Thread ahutsunshine
GitHub user ahutsunshine opened a pull request:

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

update several coding style



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

$ git pull https://github.com/ahutsunshine/incubator-griffin master

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

https://github.com/apache/incubator-griffin/pull/140.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 #140


commit f116a4c833344473b6a07f4d2f0022fd7944e3ba
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-15T14:04:12Z

update several coding style




---


[GitHub] incubator-griffin issue #138: update restful api

2017-10-12 Thread ahutsunshine
Github user ahutsunshine commented on the issue:

https://github.com/apache/incubator-griffin/pull/138
  
in addition,fix test url path


---


[GitHub] incubator-griffin pull request #139: update restful api and test api

2017-10-12 Thread ahutsunshine
GitHub user ahutsunshine opened a pull request:

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

update restful api and test api



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

$ git pull https://github.com/ahutsunshine/incubator-griffin master

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

https://github.com/apache/incubator-griffin/pull/139.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 #139


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 b15c89fb3d0ddf67ec2115e6ee6da59d2f5ff561
Author: Yao <dey...@ebay.com>
Date:   2017-10-09T05:31:02Z

change json format,update unit test and fix hive connect

commit 1ac1b12246d2fe940090ec8f9424c9c04dced20d
Author: Yao <dey...@ebay.com>
Date:   2017-10-09T05:43:49Z

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

commit bcb57d56c4143d8126a084aa5a05eaa92c4c6245
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-10T06:48:57Z

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

commit 3b909440f07fa5f9ce0037c8e93da9e0ce05d48b
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-10T09:03:29Z

 

[GitHub] incubator-griffin pull request #138: update restful api

2017-10-12 Thread ahutsunshine
GitHub user ahutsunshine opened a pull request:

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

update restful api



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

$ git pull https://github.com/ahutsunshine/incubator-griffin master

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

https://github.com/apache/incubator-griffin/pull/138.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 #138


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 b15c89fb3d0ddf67ec2115e6ee6da59d2f5ff561
Author: Yao <dey...@ebay.com>
Date:   2017-10-09T05:31:02Z

change json format,update unit test and fix hive connect

commit 1ac1b12246d2fe940090ec8f9424c9c04dced20d
Author: Yao <dey...@ebay.com>
Date:   2017-10-09T05:43:49Z

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

commit bcb57d56c4143d8126a084aa5a05eaa92c4c6245
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-10T06:48:57Z

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

commit 3b909440f07fa5f9ce0037c8e93da9e0ce05d48b
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-10T09:03:29Z

refactor uni

[GitHub] incubator-griffin pull request #137: update restful api

2017-10-12 Thread ahutsunshine
Github user ahutsunshine closed the pull request at:

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


---


[GitHub] incubator-griffin pull request #137: update restful api

2017-10-12 Thread ahutsunshine
GitHub user ahutsunshine opened a pull request:

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

update restful api



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

$ git pull https://github.com/ahutsunshine/incubator-griffin master

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

https://github.com/apache/incubator-griffin/pull/137.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 #137


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 b15c89fb3d0ddf67ec2115e6ee6da59d2f5ff561
Author: Yao <dey...@ebay.com>
Date:   2017-10-09T05:31:02Z

change json format,update unit test and fix hive connect

commit 1ac1b12246d2fe940090ec8f9424c9c04dced20d
Author: Yao <dey...@ebay.com>
Date:   2017-10-09T05:43:49Z

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

commit bcb57d56c4143d8126a084aa5a05eaa92c4c6245
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-10T06:48:57Z

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

commit 3b909440f07fa5f9ce0037c8e93da9e0ce05d48b
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-10T09:03:29Z

refactor uni

[GitHub] incubator-griffin pull request #129: refactor unit test

2017-10-10 Thread ahutsunshine
GitHub user ahutsunshine opened a pull request:

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

refactor unit test



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

$ git pull https://github.com/ahutsunshine/incubator-griffin master

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

https://github.com/apache/incubator-griffin/pull/129.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 #129


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 b15c89fb3d0ddf67ec2115e6ee6da59d2f5ff561
Author: Yao <dey...@ebay.com>
Date:   2017-10-09T05:31:02Z

change json format,update unit test and fix hive connect

commit 1ac1b12246d2fe940090ec8f9424c9c04dced20d
Author: Yao <dey...@ebay.com>
Date:   2017-10-09T05:43:49Z

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

commit bcb57d56c4143d8126a084aa5a05eaa92c4c6245
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-10T06:48:57Z

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

commit 3b909440f07fa5f9ce0037c8e93da9e0ce05d48b
Author: ahutsunshine <ahutsunsh...@gmail.com>
Date:   2017-10-10T09:03:29Z

refactor unit test




---


[GitHub] incubator-griffin pull request #126: change json format,update unit test and...

2017-10-09 Thread ahutsunshine
GitHub user ahutsunshine opened a pull request:

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

change json format,update unit test and fix hive connect



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

$ git pull https://github.com/ahutsunshine/incubator-griffin master

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

https://github.com/apache/incubator-griffin/pull/126.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 #126


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 b15c89fb3d0ddf67ec2115e6ee6da59d2f5ff561
Author: Yao <dey...@ebay.com>
Date:   2017-10-09T05:31:02Z

change json format,update unit test and fix hive connect

commit 1ac1b12246d2fe940090ec8f9424c9c04dced20d
Author: Yao <dey...@ebay.com>
Date:   2017-10-09T05:43:49Z

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




---