Re: User Mailing List?

2018-08-03 Thread William Guo
Hi Dan,

Sorry for the inconvenience.

To subscribe griffin user list, you need to subscribe to

users-subscr...@griffin.incubator.apache.org

as said in

https://github.com/apache/incubator-griffin/blob/master/README.md


Thanks,
William


On Sat, Aug 4, 2018 at 4:14 AM, Marshall, Daniel J (Dan)  <
daniel.marsh...@cigna.com> wrote:

> I am not able to subscribe to the user list using "user-subscribe@griffin.
> apache.org".
>
> Is that the correct email address?
>
> I am exploring Griffin and wanted to ask some general user questions
> without "polluting" the dev list.
>
> Thanks
>
>
> Dan Marshall
>
> Cigna Data & Analytics
> Legal-Compliance-Finance and Information Life Cycle Management
> IM Software Engineer Manager
>
> Phone: 770.261.0733
> daniel.marsh...@cigna.com
>
>
> Confidential, unpublished property of Cigna. Do not duplicate or
> distribute. Use and distribution limited solely to authorized personnel.
> (c) Copyright 2018 Cigna.
>
>
> 
> --
> CONFIDENTIALITY NOTICE: If you have received this email in error,
> please immediately notify the sender by e-mail at the address shown.
> This email transmission may contain confidential information.  This
> information is intended only for the use of the individual(s) or entity to
> whom it is intended even if addressed incorrectly.  Please delete it from
> your files if you are not the intended recipient.  Thank you for your
> compliance.  Copyright (c) 2018 Cigna
> 
> ==
>
>


User Mailing List?

2018-08-03 Thread Marshall, Daniel J (Dan) HHHH
I am not able to subscribe to the user list using 
"user-subscr...@griffin.apache.org".

Is that the correct email address?

I am exploring Griffin and wanted to ask some general user questions without 
"polluting" the dev list.

Thanks


Dan Marshall

Cigna Data & Analytics
Legal-Compliance-Finance and Information Life Cycle Management
IM Software Engineer Manager

Phone: 770.261.0733
daniel.marsh...@cigna.com


Confidential, unpublished property of Cigna. Do not duplicate or distribute. 
Use and distribution limited solely to authorized personnel. (c) Copyright 2018 
Cigna.


--
CONFIDENTIALITY NOTICE: If you have received this email in error,
please immediately notify the sender by e-mail at the address shown. 
This email transmission may contain confidential information.  This
information is intended only for the use of the individual(s) or entity to
whom it is intended even if addressed incorrectly.  Please delete it from
your files if you are not the intended recipient.  Thank you for your
compliance.  Copyright (c) 2018 Cigna
==



[jira] [Commented] (GRIFFIN-164) Make 'Regular expression detection count' available in UI

2018-08-03 Thread ASF GitHub Bot (JIRA)


[ 
https://issues.apache.org/jira/browse/GRIFFIN-164?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16567895#comment-16567895
 ] 

ASF GitHub Bot commented on GRIFFIN-164:


Github user asfgit closed the pull request at:

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


> Make 'Regular expression detection count' available in UI
> -
>
> Key: GRIFFIN-164
> URL: https://issues.apache.org/jira/browse/GRIFFIN-164
> Project: Griffin (Incubating)
>  Issue Type: Improvement
>Affects Versions: 0.1.6-incubating
>Reporter: Enrico D'Urso
>Priority: Minor
> Fix For: 1.0.0-incubating
>
>
> Hi,
> I have been playing for one month now with Griffin.
> Given my experience, some companies (included the one am working for as a 
> consultant) prefer doing stuff using UI.
> Personally, I find very useful the following feature:
>  
>  * Regular expression detection count
> which is, I have a column which should contain just numbers so I want to 
> check if my ETL process, wrongly, has populated my table with non-numeric 
> values.
> I have been able to run such a job creating my self the right config.json, in 
> particular, using spark-sql as dialect:
> {code:java}
> select count(*) from src where account_id rlike [^0-9]  
> {code}
> I saw that in pr.component.ts there is a commented line of code:
> {code:java}
> // {"id":10,"itemName":"Regular Expression Detection Count","category": 
> "Advanced Statistics"}
> {code}
> which I think is what I am talking about.
> Also, I can read:
> {code:java}
> // case 'Regular Expression Detection Count': // return 
> 'count(source.`'+col.name+'`) where source.`'+col.name+'` LIKE ';
> {code}
> which should be the griffin-dsl dialect, even if, probably, the regex should 
> be added just after LIKE.
> Then, once that the above griffin-dsl statement is available in the backend, 
> ProfilingRulePlanTrans class
> should map that into 'rlike' Spark-sql clause.
> Am not sure where (and if) ProfilingRulePlanTrans should be modified as 
> preGroupbyClause should contains everything, but I do not have enough 
> knowledge about it.
>  
> Please judge yourself the priority of such a feature, which knowing well the 
> code, should not be too hard to make.
> Thanks,
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[GitHub] incubator-griffin pull request #381: GRIFFIN-164 GRIFFIN-186 GRIFFIN-187: Pr...

2018-08-03 Thread asfgit
Github user asfgit closed the pull request at:

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


---


[jira] [Commented] (GRIFFIN-164) Make 'Regular expression detection count' available in UI

2018-08-03 Thread ASF GitHub Bot (JIRA)


[ 
https://issues.apache.org/jira/browse/GRIFFIN-164?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16567884#comment-16567884
 ] 

ASF GitHub Bot commented on GRIFFIN-164:


Github user icesmartjuan commented on the issue:

https://github.com/apache/incubator-griffin/pull/381
  
tested with newly commit, create Profiling measure successfully, create 
jobs with the Profiling measure sucessfully


> Make 'Regular expression detection count' available in UI
> -
>
> Key: GRIFFIN-164
> URL: https://issues.apache.org/jira/browse/GRIFFIN-164
> Project: Griffin (Incubating)
>  Issue Type: Improvement
>Affects Versions: 0.1.6-incubating
>Reporter: Enrico D'Urso
>Priority: Minor
> Fix For: 1.0.0-incubating
>
>
> Hi,
> I have been playing for one month now with Griffin.
> Given my experience, some companies (included the one am working for as a 
> consultant) prefer doing stuff using UI.
> Personally, I find very useful the following feature:
>  
>  * Regular expression detection count
> which is, I have a column which should contain just numbers so I want to 
> check if my ETL process, wrongly, has populated my table with non-numeric 
> values.
> I have been able to run such a job creating my self the right config.json, in 
> particular, using spark-sql as dialect:
> {code:java}
> select count(*) from src where account_id rlike [^0-9]  
> {code}
> I saw that in pr.component.ts there is a commented line of code:
> {code:java}
> // {"id":10,"itemName":"Regular Expression Detection Count","category": 
> "Advanced Statistics"}
> {code}
> which I think is what I am talking about.
> Also, I can read:
> {code:java}
> // case 'Regular Expression Detection Count': // return 
> 'count(source.`'+col.name+'`) where source.`'+col.name+'` LIKE ';
> {code}
> which should be the griffin-dsl dialect, even if, probably, the regex should 
> be added just after LIKE.
> Then, once that the above griffin-dsl statement is available in the backend, 
> ProfilingRulePlanTrans class
> should map that into 'rlike' Spark-sql clause.
> Am not sure where (and if) ProfilingRulePlanTrans should be modified as 
> preGroupbyClause should contains everything, but I do not have enough 
> knowledge about it.
>  
> Please judge yourself the priority of such a feature, which knowing well the 
> code, should not be too hard to make.
> Thanks,
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


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

2018-08-03 Thread icesmartjuan
Github user icesmartjuan commented on the issue:

https://github.com/apache/incubator-griffin/pull/381
  
tested with newly commit, create Profiling measure successfully, create 
jobs with the Profiling measure sucessfully


---


[GitHub] incubator-griffin pull request #380: Fix java import style violations in cod...

2018-08-03 Thread asfgit
Github user asfgit closed the pull request at:

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


---