[jira] [Commented] (LENS-1270) AlarmService should be inited through configuration

2016-08-09 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/LENS-1270?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15414651#comment-15414651
 ] 

Hudson commented on LENS-1270:
--

UNSTABLE: Integrated in Lens-Commit-Java8 #236 (See 
[https://builds.apache.org/job/Lens-Commit-Java8/236/])
LENS-1270 : AlarmService should be inited through configuration (amareshwari: 
rev 12d4782444b77e6abbb311da0b9b0a2392cda871)
* lens-server/src/main/resources/lensserver-default.xml
* lens-server/src/main/java/org/apache/lens/server/LensServices.java
* lens-server/src/test/resources/lens-site.xml
* src/site/apt/admin/config.apt
* lens-server/src/main/java/org/apache/lens/server/scheduler/AlarmService.java


> AlarmService should be inited through configuration
> ---
>
> Key: LENS-1270
> URL: https://issues.apache.org/jira/browse/LENS-1270
> Project: Apache Lens
>  Issue Type: Improvement
>  Components: server
>Affects Versions: 2.6
>Reporter: Amareshwari Sriramadasu
>Assignee: Amareshwari Sriramadasu
> Fix For: 2.6
>
> Attachments: LENS-1270.2.patch, LENS-1270.patch
>
>
> Right now, AlarmService is inited directly in LensServices. Instead it should 
> be loaded through configuration sothat it can be opted out, if required.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


Re: Report - August, 2016

2016-08-09 Thread amareshwarisr .
Thanks all. Have posted the report.

Thanks


On Thu, Aug 4, 2016 at 11:55 AM, Sushil Mohanty 
wrote:

> +1, LGTM
>
> Thanks,
> Sushil
>
> On Thu, Aug 4, 2016 at 11:46 AM, archana h  wrote:
>
> > +1
> >
> > Thanks,
> > Archana
> >
> > On Thu, Aug 4, 2016 at 10:54 AM, Jean-Baptiste Onofré 
> > wrote:
> >
> > > +1
> > >
> > > Thanks !
> > >
> > > Regards
> > > JB
> > >
> > >
> > > On 08/04/2016 07:18 AM, Raju Bairishetti wrote:
> > >
> > >> +1 lgtm
> > >>
> > >> On Wed, Aug 3, 2016 at 3:50 PM, Amareshwari Sriramdasu <
> > >> amareshw...@apache.org> wrote:
> > >>
> > >> Hi all,
> > >>>
> > >>> I have put the project report to be submitted for August at
> > >>> https://cwiki.apache.org/confluence/display/LENS/August%2C2016.
> > >>>
> > >>> Please review and let me know your comments.
> > >>>
> > >>> Thanks
> > >>> Amareshwari
> > >>>
> > >>>
> > >>
> > >>
> > >>
> > > --
> > > Jean-Baptiste Onofré
> > > jbono...@apache.org
> > > http://blog.nanthrax.net
> > > Talend - http://www.talend.com
> > >
> >
>
>
>
> --
> -Sushil
>


[jira] [Updated] (LENS-1270) AlarmService should be inited through configuration

2016-08-09 Thread Amareshwari Sriramadasu (JIRA)

 [ 
https://issues.apache.org/jira/browse/LENS-1270?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amareshwari Sriramadasu updated LENS-1270:
--
   Resolution: Fixed
Fix Version/s: 2.6
   Status: Resolved  (was: Patch Available)

Committed to both master and current-release-line.

> AlarmService should be inited through configuration
> ---
>
> Key: LENS-1270
> URL: https://issues.apache.org/jira/browse/LENS-1270
> Project: Apache Lens
>  Issue Type: Improvement
>  Components: server
>Affects Versions: 2.6
>Reporter: Amareshwari Sriramadasu
>Assignee: Amareshwari Sriramadasu
> Fix For: 2.6
>
> Attachments: LENS-1270.2.patch, LENS-1270.patch
>
>
> Right now, AlarmService is inited directly in LensServices. Instead it should 
> be loaded through configuration sothat it can be opted out, if required.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


Re: Review Request 50783: LENS-1251 : Fix adding resources on HiveDriver

2016-08-09 Thread Puneet Gupta

---
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/50783/#review145303
---



+1 for the changes. They are not only fixing the issue but also simplifying the 
code.


lens-server/src/main/java/org/apache/lens/server/query/QueryExecutionServiceImpl.java
 (line 3123)


Will new jars added to session need separate handling ?


- Puneet Gupta


On Aug. 4, 2016, 10:22 a.m., Amareshwari Sriramadasu wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> https://reviews.apache.org/r/50783/
> ---
> 
> (Updated Aug. 4, 2016, 10:22 a.m.)
> 
> 
> Review request for lens.
> 
> 
> Bugs: LENS-1251
> https://issues.apache.org/jira/browse/LENS-1251
> 
> 
> Repository: lens
> 
> 
> Description
> ---
> 
> The bug is because of LensSessionImpl.getDBResources() is returning 
> failedDBResources instead of actual resources.
> 
> Changes include :
> - Removed failedDBResources from LensSessionImpl - which is not solving the 
> purpose. Once resource addition has failed, it would fail in subsequent tries 
> as well. 
> - Instead of adding resouces to HiveDriver on every execute/explain/prepare 
> and etc, adding resources on DriverSessionStarted event - synchronously. This 
> will make sure resources are added whenever new session is created and the 
> classloader will be uptodate in all cases. For ex: Query on a native table 
> fails in estimate with earlier code, because jars are not added and 
> HiveDriver will do explain on the query. 
> - Book-keeping in LensSessionImpl is only used in tests and all source code 
> usages are removed.
> - Removed book-keeping in HiveDriver which is maintaining whether resources 
> are added for a session or not.
> 
> 
> Diffs
> -
> 
>   lens-driver-hive/src/main/java/org/apache/lens/driver/hive/HiveDriver.java 
> 1326611 
>   
> lens-server/src/main/java/org/apache/lens/server/query/QueryExecutionServiceImpl.java
>  84dcecd 
>   
> lens-server/src/main/java/org/apache/lens/server/session/LensSessionImpl.java 
> 3003ab7 
>   lens-server/src/test/java/org/apache/lens/server/LensServerTestUtil.java 
> 67cee57 
>   lens-server/src/test/java/org/apache/lens/server/TestServerRestart.java 
> 20aa8cb 
>   
> lens-server/src/test/java/org/apache/lens/server/metastore/TestMetastoreService.java
>  61bc133 
>   
> lens-server/src/test/java/org/apache/lens/server/query/TestQueryService.java 
> 9f40a01 
> 
> Diff: https://reviews.apache.org/r/50783/diff/
> 
> 
> Testing
> ---
> 
> Added regression test which fails with ClassNotFoundException without the 
> changes.
> 
> [INFO] 
> 
> [INFO] Reactor Summary:
> [INFO] 
> [INFO] Lens Checkstyle Rules . SUCCESS [1.608s]
> [INFO] Lens .. SUCCESS [3.837s]
> [INFO] Lens API .. SUCCESS [21.476s]
> [INFO] Lens API for server and extensions  SUCCESS [18.842s]
> [INFO] Lens Cube . SUCCESS 
> [15:44.025s]
> [INFO] Lens DB storage ... SUCCESS [16.969s]
> [INFO] Lens Query Library  SUCCESS [14.158s]
> [INFO] Lens Hive Driver .. SUCCESS [1:22.657s]
> [INFO] Lens Driver for JDBC .. SUCCESS [36.501s]
> [INFO] Lens Elastic Search Driver  SUCCESS [21.397s]
> [INFO] Lens Server ... SUCCESS [9:14.088s]
> [INFO] Lens client ... SUCCESS [1:37.241s]
> [INFO] Lens CLI .. SUCCESS [1:29.427s]
> [INFO] Lens Examples . SUCCESS [8.243s]
> [INFO] Lens Ship Jars to Distributed Cache ... SUCCESS [0.618s]
> [INFO] Lens Distribution . SUCCESS [9.133s]
> [INFO] Lens ML Lib ... SUCCESS [1:15.242s]
> [INFO] Lens ML Ext Distribution .. SUCCESS [2.808s]
> [INFO] Lens Regression ... SUCCESS [16.170s]
> [INFO] Lens UI ... SUCCESS [33.806s]
> [INFO] 
> 
> [INFO] BUILD SUCCESS
> [INFO] 
> 
> [INFO] Total time: 34:08.950s
> [INFO] Finished at: Thu Aug 04 10:14:00 UTC 2016
> [INFO] Final Memory: 185M/2352M
> [INFO] 
> 
> 
> 
> Thanks,

[jira] [Commented] (LENS-1265) Scheduler Bug fixes

2016-08-09 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/LENS-1265?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15413538#comment-15413538
 ] 

Hadoop QA commented on LENS-1265:
-

Applied patch: 
[Scheduler-bug-fixes.patch|https://issues.apache.org/jira/secure/attachment/12822788/Scheduler-bug-fixes.patch]
 and ran command: mvn clean install -fae. Result: Failure. Build Job: 
https://builds.apache.org/job/PreCommit-Lens-Build/794/

> Scheduler Bug fixes
> ---
>
> Key: LENS-1265
> URL: https://issues.apache.org/jira/browse/LENS-1265
> Project: Apache Lens
>  Issue Type: Task
>Reporter: Lavkesh Lahngir
>Assignee: Lavkesh Lahngir
> Attachments: Scheduler-bug-fixes.patch, Scheduler-bug-fixes.patch, 
> Scheduler-bug-fixes.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (LENS-1243) Support Asynchronous status updates from drivers

2016-08-09 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/LENS-1243?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15413530#comment-15413530
 ] 

Hadoop QA commented on LENS-1243:
-

Applied patch: 
[LENS-1243.09.patch|https://issues.apache.org/jira/secure/attachment/12822789/LENS-1243.09.patch]
 and ran command: mvn clean install -fae. Result: Failure. Build Job: 
https://builds.apache.org/job/PreCommit-Lens-Build/793/

> Support Asynchronous status updates from drivers
> 
>
> Key: LENS-1243
> URL: https://issues.apache.org/jira/browse/LENS-1243
> Project: Apache Lens
>  Issue Type: Improvement
>Reporter: Rajat Khandelwal
>Assignee: Rajat Khandelwal
> Attachments: LENS-1243.07.patch, LENS-1243.09.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (LENS-1258) len-ui changes for session list page.

2016-08-09 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/LENS-1258?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15413514#comment-15413514
 ] 

Hudson commented on LENS-1258:
--

SUCCESS: Integrated in Lens-Commit #1319 (See 
[https://builds.apache.org/job/Lens-Commit/1319/])
LENS-1258: len-ui changes for session list page. (rajatgupta59: rev 
37136a5771e05c7e7354c9b3d60131f4c6820c00)
* lens-ui/app/components/SessionListComponent.js
* lens-ui/package.json
* lens-ui/app/adapters/SessionAdapter.js
* lens-ui/app/stores/SessionStore.js
* lens-ui/app/constants/SessionConstants.js
* lens-ui/app/actions/SessionAction.js
* lens-ui/app/styles/less/globals.less
* lens-ui/app/app.js


> len-ui changes for session list page.
> -
>
> Key: LENS-1258
> URL: https://issues.apache.org/jira/browse/LENS-1258
> Project: Apache Lens
>  Issue Type: Sub-task
>  Components: server
>Reporter: Lavkesh Lahngir
>Assignee: Lavkesh Lahngir
> Fix For: 2.7
>
> Attachments: Session-UI.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Assigned] (LENS-779) Delete resource does not delete resource if the file doesn't exist

2016-08-09 Thread Praveen Adlakha (JIRA)

 [ 
https://issues.apache.org/jira/browse/LENS-779?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Praveen Adlakha reassigned LENS-779:


Assignee: Praveen Adlakha

> Delete resource does not delete resource if the file doesn't exist
> --
>
> Key: LENS-779
> URL: https://issues.apache.org/jira/browse/LENS-779
> Project: Apache Lens
>  Issue Type: Bug
>  Components: server
>Reporter: Rajat Khandelwal
>Assignee: Praveen Adlakha
>  Labels: newbie
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (LENS-1257) Serverside changes for getting session list

2016-08-09 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/LENS-1257?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15413504#comment-15413504
 ] 

Hudson commented on LENS-1257:
--

UNSTABLE: Integrated in Lens-Commit-Java8 #235 (See 
[https://builds.apache.org/job/Lens-Commit-Java8/235/])
LENS-1257: Serverside changes for getting session list (rajatgupta59: rev 
b95e9157ae2cd385a132bed446f284684412c5ee)
* lens-server/src/main/java/org/apache/lens/server/session/SessionResource.java
* lens-server/src/main/java/org/apache/lens/server/BaseLensService.java
* 
lens-server-api/src/main/java/org/apache/lens/server/api/session/SessionService.java
* 
lens-server/src/test/java/org/apache/lens/server/session/TestSessionResource.java
* lens-api/src/main/java/org/apache/lens/api/session/UserSessionInfo.java


> Serverside changes for getting session list
> ---
>
> Key: LENS-1257
> URL: https://issues.apache.org/jira/browse/LENS-1257
> Project: Apache Lens
>  Issue Type: Sub-task
>  Components: server
>Reporter: Lavkesh Lahngir
>Assignee: Lavkesh Lahngir
> Fix For: 2.7
>
> Attachments: 0001-Session-info-api.patch, Session-info-api.patch, 
> Session-info-api.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (LENS-1243) Support Asynchronous status updates from drivers

2016-08-09 Thread Rajat Khandelwal (JIRA)

 [ 
https://issues.apache.org/jira/browse/LENS-1243?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Rajat Khandelwal updated LENS-1243:
---
Attachment: LENS-1243.09.patch

> Support Asynchronous status updates from drivers
> 
>
> Key: LENS-1243
> URL: https://issues.apache.org/jira/browse/LENS-1243
> Project: Apache Lens
>  Issue Type: Improvement
>Reporter: Rajat Khandelwal
>Assignee: Rajat Khandelwal
> Attachments: LENS-1243.07.patch, LENS-1243.09.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (LENS-1243) Support Asynchronous status updates from drivers

2016-08-09 Thread Rajat Khandelwal (JIRA)

[ 
https://issues.apache.org/jira/browse/LENS-1243?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15413481#comment-15413481
 ] 

Rajat Khandelwal commented on LENS-1243:


Taking patch from reviewboard and attaching

> Support Asynchronous status updates from drivers
> 
>
> Key: LENS-1243
> URL: https://issues.apache.org/jira/browse/LENS-1243
> Project: Apache Lens
>  Issue Type: Improvement
>Reporter: Rajat Khandelwal
>Assignee: Rajat Khandelwal
> Attachments: LENS-1243.07.patch, LENS-1243.09.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


Re: Review Request 50600: LENS-1243: Support Asynchronous status updates from drivers

2016-08-09 Thread Rajat Khandelwal

---
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/50600/
---

(Updated Aug. 9, 2016, 6:34 p.m.)


Review request for lens.


Bugs: LENS-1243
https://issues.apache.org/jira/browse/LENS-1243


Repository: lens


Description
---


Diffs (updated)
-

  lens-driver-es/src/main/java/org/apache/lens/driver/es/ESDriver.java 
8a4f4105ad6ffc75445e5e10a51f6fbd4f5f1d3f 
  lens-driver-hive/src/main/java/org/apache/lens/driver/hive/HiveDriver.java 
1326611d01e7a9b4f58877435f36b1391ca178b2 
  
lens-driver-hive/src/test/java/org/apache/lens/driver/hive/TestRemoteHiveDriver.java
 6dff173e26993e40e3cb82622be8173359f92592 
  lens-driver-jdbc/src/main/java/org/apache/lens/driver/jdbc/JDBCDriver.java 
bebb9ae9a4d694f224f0ec907df166880e0cf5b8 
  
lens-driver-jdbc/src/test/java/org/apache/lens/driver/jdbc/TestColumnarSQLRewriter.java
 12fa6f0328242b1bd06ff0397b2f2a3a9dec010d 
  
lens-driver-jdbc/src/test/java/org/apache/lens/driver/jdbc/TestJdbcDriver.java 
e7636d2e631cf86021af398ee31300441a335096 
  lens-driver-jdbc/src/test/resources/hive-site.xml 
b497ca19b14811ecb4474b7f9bf6dec2bdf0b036 
  
lens-server-api/src/main/java/org/apache/lens/server/api/driver/AbstractLensDriver.java
 f1d844a1987d7f7990b2e10f03d2e3af8e0294e0 
  
lens-server-api/src/main/java/org/apache/lens/server/api/driver/DriverQueryStatus.java
 2374c1e4b2737a0d1ea7123232800413baa9a560 
  
lens-server-api/src/main/java/org/apache/lens/server/api/driver/LensDriver.java 
95ea3608e612aff44ec78eee003c05ccd3068ffb 
  
lens-server-api/src/main/java/org/apache/lens/server/api/driver/QueryCompletionListener.java
 3713b5156e2cfc20528d9b3b9a6f9b117daeb284 
  
lens-server-api/src/main/java/org/apache/lens/server/api/driver/QueryDriverStatusUpdateListener.java
 PRE-CREATION 
  
lens-server-api/src/main/java/org/apache/lens/server/api/driver/StatusUpdateMethod.java
 PRE-CREATION 
  
lens-server-api/src/main/java/org/apache/lens/server/api/query/QueryContext.java
 2641b606faa20943a5f3b9de9b729380a35e8c25 
  
lens-server-api/src/test/java/org/apache/lens/server/api/driver/MockDriver.java 
59f85691d08e7deb5e3b5892b3ffc729265874d8 
  lens-server/src/main/java/org/apache/lens/server/LensServerConf.java 
e977ebd82118307bdbfd20be762a523337da4788 
  
lens-server/src/main/java/org/apache/lens/server/query/QueryExecutionServiceImpl.java
 1752414e89c550c31645f2a2fd686f5b06686a93 
  
lens-server/src/test/java/org/apache/lens/server/metastore/TestMetastoreService.java
 be1326f62e47c72514039fc6525eeea12ae28456 
  lens-server/src/test/resources/hive-site.xml 
94c5012821330e1a78aad2a7fdfca0cc1d0fade2 

Diff: https://reviews.apache.org/r/50600/diff/


Testing
---


Thanks,

Rajat Khandelwal



[jira] [Updated] (LENS-1265) Scheduler Bug fixes

2016-08-09 Thread Lavkesh Lahngir (JIRA)

 [ 
https://issues.apache.org/jira/browse/LENS-1265?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Lavkesh Lahngir updated LENS-1265:
--
Attachment: Scheduler-bug-fixes.patch

> Scheduler Bug fixes
> ---
>
> Key: LENS-1265
> URL: https://issues.apache.org/jira/browse/LENS-1265
> Project: Apache Lens
>  Issue Type: Task
>Reporter: Lavkesh Lahngir
>Assignee: Lavkesh Lahngir
> Attachments: Scheduler-bug-fixes.patch, Scheduler-bug-fixes.patch, 
> Scheduler-bug-fixes.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (LENS-1270) AlarmService should be inited through configuration

2016-08-09 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/LENS-1270?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15413476#comment-15413476
 ] 

Hadoop QA commented on LENS-1270:
-

Applied patch: 
[LENS-1270.2.patch|https://issues.apache.org/jira/secure/attachment/12822779/LENS-1270.2.patch]
 and ran command: mvn clean install -fae. Result: Success. Build Job: 
https://builds.apache.org/job/PreCommit-Lens-Build/791/

> AlarmService should be inited through configuration
> ---
>
> Key: LENS-1270
> URL: https://issues.apache.org/jira/browse/LENS-1270
> Project: Apache Lens
>  Issue Type: Improvement
>  Components: server
>Affects Versions: 2.6
>Reporter: Amareshwari Sriramadasu
>Assignee: Amareshwari Sriramadasu
> Attachments: LENS-1270.2.patch, LENS-1270.patch
>
>
> Right now, AlarmService is inited directly in LensServices. Instead it should 
> be loaded through configuration sothat it can be opted out, if required.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (LENS-1270) AlarmService should be inited through configuration

2016-08-09 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/LENS-1270?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15413448#comment-15413448
 ] 

Hadoop QA commented on LENS-1270:
-

Applied patch: 
[LENS-1270.2.patch|https://issues.apache.org/jira/secure/attachment/12822779/LENS-1270.2.patch]
 and ran command: mvn clean install -fae. Result: Failure. Build Job: 
https://builds.apache.org/job/PreCommit-Lens-Build/792/

> AlarmService should be inited through configuration
> ---
>
> Key: LENS-1270
> URL: https://issues.apache.org/jira/browse/LENS-1270
> Project: Apache Lens
>  Issue Type: Improvement
>  Components: server
>Affects Versions: 2.6
>Reporter: Amareshwari Sriramadasu
>Assignee: Amareshwari Sriramadasu
> Attachments: LENS-1270.2.patch, LENS-1270.patch
>
>
> Right now, AlarmService is inited directly in LensServices. Instead it should 
> be loaded through configuration sothat it can be opted out, if required.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (LENS-1258) len-ui changes for session list page.

2016-08-09 Thread Rajat Khandelwal (JIRA)

 [ 
https://issues.apache.org/jira/browse/LENS-1258?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Rajat Khandelwal updated LENS-1258:
---
Resolution: Fixed
Status: Resolved  (was: Patch Available)

> len-ui changes for session list page.
> -
>
> Key: LENS-1258
> URL: https://issues.apache.org/jira/browse/LENS-1258
> Project: Apache Lens
>  Issue Type: Sub-task
>  Components: server
>Reporter: Lavkesh Lahngir
>Assignee: Lavkesh Lahngir
> Fix For: 2.7
>
> Attachments: Session-UI.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (LENS-1258) len-ui changes for session list page.

2016-08-09 Thread Rajat Khandelwal (JIRA)

[ 
https://issues.apache.org/jira/browse/LENS-1258?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15413440#comment-15413440
 ] 

Rajat Khandelwal commented on LENS-1258:


Committed. Thanks [~lavkesh]

> len-ui changes for session list page.
> -
>
> Key: LENS-1258
> URL: https://issues.apache.org/jira/browse/LENS-1258
> Project: Apache Lens
>  Issue Type: Sub-task
>  Components: server
>Reporter: Lavkesh Lahngir
>Assignee: Lavkesh Lahngir
> Fix For: 2.7
>
> Attachments: Session-UI.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (LENS-1257) Serverside changes for getting session list

2016-08-09 Thread Rajat Khandelwal (JIRA)

 [ 
https://issues.apache.org/jira/browse/LENS-1257?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Rajat Khandelwal updated LENS-1257:
---
Resolution: Fixed
Status: Resolved  (was: Patch Available)

> Serverside changes for getting session list
> ---
>
> Key: LENS-1257
> URL: https://issues.apache.org/jira/browse/LENS-1257
> Project: Apache Lens
>  Issue Type: Sub-task
>  Components: server
>Reporter: Lavkesh Lahngir
>Assignee: Lavkesh Lahngir
> Fix For: 2.7
>
> Attachments: 0001-Session-info-api.patch, Session-info-api.patch, 
> Session-info-api.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (LENS-1257) Serverside changes for getting session list

2016-08-09 Thread Rajat Khandelwal (JIRA)

[ 
https://issues.apache.org/jira/browse/LENS-1257?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15413436#comment-15413436
 ] 

Rajat Khandelwal commented on LENS-1257:


Committed. Thanks [~lavkesh]

> Serverside changes for getting session list
> ---
>
> Key: LENS-1257
> URL: https://issues.apache.org/jira/browse/LENS-1257
> Project: Apache Lens
>  Issue Type: Sub-task
>  Components: server
>Reporter: Lavkesh Lahngir
>Assignee: Lavkesh Lahngir
> Fix For: 2.7
>
> Attachments: 0001-Session-info-api.patch, Session-info-api.patch, 
> Session-info-api.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


Re: Review Request 50814: Various Bug fixes and log messages.

2016-08-09 Thread Lavkesh Lahngir

---
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/50814/
---

(Updated Aug. 9, 2016, 12:16 p.m.)


Review request for lens.


Bugs: LENS-1265
https://issues.apache.org/jira/browse/LENS-1265


Repository: lens


Description (updated)
---

1. Scheduler's submit job is not setting db and session config passed
2. Scheduler's getJobDefinition api is giving response status 500
3. Instance run result path is set NULL in job_instance_run_table
4. Delete on scheduler job is failing with NPE
5. Alarm service will launch misfired events as soon as it gets them.
6. Added user varification when updating a job.


Diffs
-

  lens-api/src/main/java/org/apache/lens/api/scheduler/SchedulerJobInfo.java 
b19248f 
  
lens-api/src/main/java/org/apache/lens/api/scheduler/SchedulerJobInstanceInfo.java
 52b56ca 
  
lens-api/src/main/java/org/apache/lens/api/scheduler/SchedulerJobInstanceRun.java
 e6c1571 
  
lens-api/src/main/java/org/apache/lens/api/scheduler/SchedulerJobInstanceState.java
 93d3d7e 
  lens-api/src/main/java/org/apache/lens/api/scheduler/SchedulerJobState.java 
ffaae6c 
  lens-api/src/main/resources/scheduler-job-0.1.xsd 4e6c68b 
  
lens-server-api/src/main/java/org/apache/lens/server/api/scheduler/SchedulerService.java
 c7f73eb 
  lens-server/src/main/java/org/apache/lens/server/scheduler/AlarmService.java 
217879f 
  
lens-server/src/main/java/org/apache/lens/server/scheduler/ScheduleResource.java
 8603edf 
  lens-server/src/main/java/org/apache/lens/server/scheduler/SchedulerDAO.java 
7a2b06a 
  
lens-server/src/main/java/org/apache/lens/server/scheduler/SchedulerEventListener.java
 7323add 
  
lens-server/src/main/java/org/apache/lens/server/scheduler/SchedulerQueryEventListener.java
 5b12720 
  
lens-server/src/main/java/org/apache/lens/server/scheduler/SchedulerServiceImpl.java
 14ca32d 
  
lens-server/src/test/java/org/apache/lens/server/scheduler/AlarmServiceTest.java
 7b610de 
  
lens-server/src/test/java/org/apache/lens/server/scheduler/TestSchedulerServiceImpl.java
 ce744af 

Diff: https://reviews.apache.org/r/50814/diff/


Testing
---


Thanks,

Lavkesh Lahngir



Re: Review Request 50814: Various Bug fixes and log messages.

2016-08-09 Thread Lavkesh Lahngir

---
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/50814/
---

(Updated Aug. 9, 2016, 12:15 p.m.)


Review request for lens.


Changes
---

Clean up session apis.
Added session user validation


Bugs: LENS-1265
https://issues.apache.org/jira/browse/LENS-1265


Repository: lens


Description
---

1. Scheduler's submit job is not setting db and session config passed
2. Scheduler's getJobDefinition api is giving response status 500
3. Instance run result path is set NULL in job_instance_run_table
4. Delete on scheduler job is failing with NPE
5. Alarm service will launch misfired events as soon as it gets them.


Diffs (updated)
-

  lens-api/src/main/java/org/apache/lens/api/scheduler/SchedulerJobInfo.java 
b19248f 
  
lens-api/src/main/java/org/apache/lens/api/scheduler/SchedulerJobInstanceInfo.java
 52b56ca 
  
lens-api/src/main/java/org/apache/lens/api/scheduler/SchedulerJobInstanceRun.java
 e6c1571 
  
lens-api/src/main/java/org/apache/lens/api/scheduler/SchedulerJobInstanceState.java
 93d3d7e 
  lens-api/src/main/java/org/apache/lens/api/scheduler/SchedulerJobState.java 
ffaae6c 
  lens-api/src/main/resources/scheduler-job-0.1.xsd 4e6c68b 
  
lens-server-api/src/main/java/org/apache/lens/server/api/scheduler/SchedulerService.java
 c7f73eb 
  lens-server/src/main/java/org/apache/lens/server/scheduler/AlarmService.java 
217879f 
  
lens-server/src/main/java/org/apache/lens/server/scheduler/ScheduleResource.java
 8603edf 
  lens-server/src/main/java/org/apache/lens/server/scheduler/SchedulerDAO.java 
7a2b06a 
  
lens-server/src/main/java/org/apache/lens/server/scheduler/SchedulerEventListener.java
 7323add 
  
lens-server/src/main/java/org/apache/lens/server/scheduler/SchedulerQueryEventListener.java
 5b12720 
  
lens-server/src/main/java/org/apache/lens/server/scheduler/SchedulerServiceImpl.java
 14ca32d 
  
lens-server/src/test/java/org/apache/lens/server/scheduler/AlarmServiceTest.java
 7b610de 
  
lens-server/src/test/java/org/apache/lens/server/scheduler/TestSchedulerServiceImpl.java
 ce744af 

Diff: https://reviews.apache.org/r/50814/diff/


Testing
---


Thanks,

Lavkesh Lahngir



[jira] [Updated] (LENS-1270) AlarmService should be inited through configuration

2016-08-09 Thread Amareshwari Sriramadasu (JIRA)

 [ 
https://issues.apache.org/jira/browse/LENS-1270?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amareshwari Sriramadasu updated LENS-1270:
--
Attachment: LENS-1270.2.patch

> AlarmService should be inited through configuration
> ---
>
> Key: LENS-1270
> URL: https://issues.apache.org/jira/browse/LENS-1270
> Project: Apache Lens
>  Issue Type: Improvement
>  Components: server
>Affects Versions: 2.6
>Reporter: Amareshwari Sriramadasu
>Assignee: Amareshwari Sriramadasu
> Attachments: LENS-1270.2.patch, LENS-1270.patch
>
>
> Right now, AlarmService is inited directly in LensServices. Instead it should 
> be loaded through configuration sothat it can be opted out, if required.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


Re: Review Request 50918: LENS-1270 : AlarmService to be inited through configuration

2016-08-09 Thread Amareshwari Sriramadasu

---
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/50918/
---

(Updated Aug. 9, 2016, 12:06 p.m.)


Review request for lens.


Changes
---

Fixed test and review comments


Bugs: LENS-1270
https://issues.apache.org/jira/browse/LENS-1270


Repository: lens


Description
---

AlarmService to be inited through configuration


Diffs (updated)
-

  lens-server/src/main/java/org/apache/lens/server/LensServices.java a709f16 
  lens-server/src/main/java/org/apache/lens/server/scheduler/AlarmService.java 
217879f 
  lens-server/src/main/resources/lensserver-default.xml d672c88 
  lens-server/src/test/resources/lens-site.xml 908fbb2 
  src/site/apt/admin/config.apt 4291798 

Diff: https://reviews.apache.org/r/50918/diff/


Testing
---


Thanks,

Amareshwari Sriramadasu



Re: Review Request 50814: Various Bug fixes and log messages.

2016-08-09 Thread Rajat Khandelwal

---
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/50814/#review145181
---




lens-server-api/src/main/java/org/apache/lens/server/api/session/SessionService.java
 (lines 60 - 62)


Shouldn't be needed. Adding this removes the usefulness of the other 
`openSession` method. Besides, we should try to not expose `auth` on interface 
level.



lens-server/src/main/java/org/apache/lens/server/scheduler/ScheduleResource.java
 (lines 216 - 218)


Shouldn't be needed.



lens-server/src/main/java/org/apache/lens/server/scheduler/SchedulerEventListener.java
 (line 40)


Let's use service instead of impl.



lens-server/src/main/java/org/apache/lens/server/scheduler/SchedulerEventListener.java
 (line 75)


We can probably remove the `"dummy"` argument.



lens-server/src/main/java/org/apache/lens/server/scheduler/SchedulerEventListener.java
 (lines 80 - 81)


Directly use `BaseLensService.getSession`. Might have to make that static.



lens-server/src/main/java/org/apache/lens/server/scheduler/SchedulerEventListener.java
 (line 81)


We can move `getSession` to `SessionValidator` and then we'll not have to 
cast to `BaseLensService`.



lens-server/src/main/java/org/apache/lens/server/scheduler/SchedulerEventListener.java
 (lines 92 - 97)


Can we directly use `sessionService.addResource` instead of making those 
calls here.


- Rajat Khandelwal


On Aug. 8, 2016, 6:12 p.m., Lavkesh Lahngir wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> https://reviews.apache.org/r/50814/
> ---
> 
> (Updated Aug. 8, 2016, 6:12 p.m.)
> 
> 
> Review request for lens.
> 
> 
> Bugs: LENS-1265
> https://issues.apache.org/jira/browse/LENS-1265
> 
> 
> Repository: lens
> 
> 
> Description
> ---
> 
> 1. Scheduler's submit job is not setting db and session config passed
> 2. Scheduler's getJobDefinition api is giving response status 500
> 3. Instance run result path is set NULL in job_instance_run_table
> 4. Delete on scheduler job is failing with NPE
> 5. Alarm service will launch misfired events as soon as it gets them.
> 
> 
> Diffs
> -
> 
>   lens-api/src/main/java/org/apache/lens/api/scheduler/SchedulerJobInfo.java 
> b19248f 
>   
> lens-api/src/main/java/org/apache/lens/api/scheduler/SchedulerJobInstanceInfo.java
>  52b56ca 
>   
> lens-api/src/main/java/org/apache/lens/api/scheduler/SchedulerJobInstanceRun.java
>  e6c1571 
>   
> lens-api/src/main/java/org/apache/lens/api/scheduler/SchedulerJobInstanceState.java
>  93d3d7e 
>   lens-api/src/main/java/org/apache/lens/api/scheduler/SchedulerJobState.java 
> ffaae6c 
>   lens-api/src/main/resources/scheduler-job-0.1.xsd 4e6c68b 
>   
> lens-server-api/src/main/java/org/apache/lens/server/api/session/SessionService.java
>  027a32b 
>   
> lens-server/src/main/java/org/apache/lens/server/scheduler/AlarmService.java 
> 217879f 
>   
> lens-server/src/main/java/org/apache/lens/server/scheduler/ScheduleResource.java
>  8603edf 
>   
> lens-server/src/main/java/org/apache/lens/server/scheduler/SchedulerDAO.java 
> 7a2b06a 
>   
> lens-server/src/main/java/org/apache/lens/server/scheduler/SchedulerEventListener.java
>  7323add 
>   
> lens-server/src/main/java/org/apache/lens/server/scheduler/SchedulerQueryEventListener.java
>  5b12720 
>   
> lens-server/src/main/java/org/apache/lens/server/scheduler/SchedulerServiceImpl.java
>  14ca32d 
>   
> lens-server/src/main/java/org/apache/lens/server/session/HiveSessionService.java
>  8909098 
>   
> lens-server/src/test/java/org/apache/lens/server/scheduler/AlarmServiceTest.java
>  7b610de 
>   
> lens-server/src/test/java/org/apache/lens/server/scheduler/TestSchedulerServiceImpl.java
>  ce744af 
> 
> Diff: https://reviews.apache.org/r/50814/diff/
> 
> 
> Testing
> ---
> 
> 
> Thanks,
> 
> Lavkesh Lahngir
> 
>



[jira] [Updated] (LENS-1270) AlarmService should be inited through configuration

2016-08-09 Thread Amareshwari Sriramadasu (JIRA)

 [ 
https://issues.apache.org/jira/browse/LENS-1270?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amareshwari Sriramadasu updated LENS-1270:
--
Attachment: LENS-1270.patch

review request - https://reviews.apache.org/r/50918/

> AlarmService should be inited through configuration
> ---
>
> Key: LENS-1270
> URL: https://issues.apache.org/jira/browse/LENS-1270
> Project: Apache Lens
>  Issue Type: Improvement
>  Components: server
>Affects Versions: 2.6
>Reporter: Amareshwari Sriramadasu
>Assignee: Amareshwari Sriramadasu
> Attachments: LENS-1270.patch
>
>
> Right now, AlarmService is inited directly in LensServices. Instead it should 
> be loaded through configuration sothat it can be opted out, if required.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (LENS-1268) Lens build on dev enviornment is failing

2016-08-09 Thread Rajat Khandelwal (JIRA)

[ 
https://issues.apache.org/jira/browse/LENS-1268?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15413147#comment-15413147
 ] 

Rajat Khandelwal commented on LENS-1268:


Committed. Thanks [~Praveen]

> Lens build on dev enviornment is failing 
> -
>
> Key: LENS-1268
> URL: https://issues.apache.org/jira/browse/LENS-1268
> Project: Apache Lens
>  Issue Type: Bug
>Reporter: Praveen Adlakha
>Assignee: Praveen Adlakha
> Fix For: 2.7
>
> Attachments: LENS-1268.patch
>
>
> Hi All,
> Lens build is failing in dev enviornment with error :
> {code}
> [INFO] Building Lens API for server and extensions 2.7.0-SNAPSHOT
> [INFO] 
> 
> Downloading: 
> http://repo1.maven.org/maven2/org/pentaho/pentaho-aggdesigner-algorithm/5.1.5-jhyde/pentaho-aggdesigner-algorithm-5.1.5-jhyde.pom
> Downloading: 
> https://repository.cloudera.com/artifactory/cloudera-repos/org/pentaho/pentaho-aggdesigner-algorithm/5.1.5-jhyde/pentaho-aggdesigner-algorithm-5.1.5-jhyde.pom
> Downloading: 
> https://repository.apache.org/content/groups/public/org/pentaho/pentaho-aggdesigner-algorithm/5.1.5-jhyde/pentaho-aggdesigner-algorithm-5.1.5-jhyde.pom
> Downloading: 
> http://projectlombok.org/mavenrepo/org/pentaho/pentaho-aggdesigner-algorithm/5.1.5-jhyde/pentaho-aggdesigner-algorithm-5.1.5-jhyde.pom
> Downloading: 
> http://repo.springsource.org/simple/ext-release-local/org/pentaho/pentaho-aggdesigner-algorithm/5.1.5-jhyde/pentaho-aggdesigner-algorithm-5.1.5-jhyde.pom
> [WARNING] The POM for 
> org.pentaho:pentaho-aggdesigner-algorithm:jar:5.1.5-jhyde is missing, no 
> dependency information available
> Downloading: 
> http://repo1.maven.org/maven2/org/pentaho/pentaho-aggdesigner-algorithm/5.1.5-jhyde/pentaho-aggdesigner-algorithm-5.1.5-jhyde.jar
> Downloading: 
> https://repository.cloudera.com/artifactory/cloudera-repos/org/pentaho/pentaho-aggdesigner-algorithm/5.1.5-jhyde/pentaho-aggdesigner-algorithm-5.1.5-jhyde.jar
> Downloading: 
> https://repository.apache.org/content/groups/public/org/pentaho/pentaho-aggdesigner-algorithm/5.1.5-jhyde/pentaho-aggdesigner-algorithm-5.1.5-jhyde.jar
> Downloading: 
> http://projectlombok.org/mavenrepo/org/pentaho/pentaho-aggdesigner-algorithm/5.1.5-jhyde/pentaho-aggdesigner-algorithm-5.1.5-jhyde.jar
> Downloading: 
> http://repo.springsource.org/simple/ext-release-local/org/pentaho/pentaho-aggdesigner-algorithm/5.1.5-jhyde/pentaho-aggdesigner-algorithm-5.1.5-jhyde.jar
> [INFO] 
> 
> [INFO] Reactor Summary:
> [INFO] 
> [INFO] Lens Checkstyle Rules .. SUCCESS [  1.158 
> s]
> [INFO] Lens ... SUCCESS [  4.648 
> s]
> [INFO] Lens API ... SUCCESS [ 13.168 
> s]
> [INFO] Lens API for server and extensions . FAILURE [ 13.287 
> s]
> [INFO] Lens Cube .. SKIPPED
> [INFO] Lens DB storage  SKIPPED
> [INFO] Lens Query Library . SKIPPED
> [INFO] Lens Hive Driver ... SKIPPED
> [INFO] Lens Driver for JDBC ... SKIPPED
> [INFO] Lens Elastic Search Driver . SKIPPED
> [INFO] Lens Server  SKIPPED
> [INFO] Lens client  SKIPPED
> [INFO] Lens CLI ... SKIPPED
> [INFO] Lens Examples .. SKIPPED
> [INFO] Lens Ship Jars to Distributed Cache  SKIPPED
> [INFO] Lens Distribution .. SKIPPED
> [INFO] Lens ML Lib  SKIPPED
> [INFO] Lens ML Ext Distribution ... SKIPPED
> [INFO] Lens Regression  SKIPPED
> [INFO] Lens UI  SKIPPED
> [INFO] 
> 
> [INFO] BUILD FAILURE
> [INFO] 
> 
> [INFO] Total time: 32.630 s
> [INFO] Finished at: 2016-08-08T15:13:49+05:30
> [INFO] Final Memory: 74M/995M
> [INFO] 
> 
> [ERROR] Failed to execute goal on project lens-server-api: Could not resolve 
> dependencies for project org.apache.lens:lens-server-api:jar:2.7.0-SNAPSHOT: 
> Could not find artifact 
> org.pentaho:pentaho-aggdesigner-algorithm:jar:5.1.5-jhyde in central 
> (http://repo1.maven.org/maven2) -> [Help 1]
> [ERROR] 
> [ERROR] To see the full stack 

[jira] [Commented] (LENS-1258) len-ui changes for session list page.

2016-08-09 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/LENS-1258?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15413112#comment-15413112
 ] 

Hadoop QA commented on LENS-1258:
-

Applied patch: 
[Session-UI.patch|https://issues.apache.org/jira/secure/attachment/12822736/Session-UI.patch]
 and ran command: mvn clean install -fae. Result: Failure. Build Job: 
https://builds.apache.org/job/PreCommit-Lens-Build/789/

> len-ui changes for session list page.
> -
>
> Key: LENS-1258
> URL: https://issues.apache.org/jira/browse/LENS-1258
> Project: Apache Lens
>  Issue Type: Sub-task
>  Components: server
>Reporter: Lavkesh Lahngir
>Assignee: Lavkesh Lahngir
> Fix For: 2.7
>
> Attachments: Session-UI.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (LENS-1270) AlarmService should be inited through configuration

2016-08-09 Thread Amareshwari Sriramadasu (JIRA)
Amareshwari Sriramadasu created LENS-1270:
-

 Summary: AlarmService should be inited through configuration
 Key: LENS-1270
 URL: https://issues.apache.org/jira/browse/LENS-1270
 Project: Apache Lens
  Issue Type: Improvement
  Components: server
Affects Versions: 2.6
Reporter: Amareshwari Sriramadasu
Assignee: Amareshwari Sriramadasu


Right now, AlarmService is inited directly in LensServices. Instead it should 
be loaded through configuration sothat it can be opted out, if required.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (LENS-1258) len-ui changes for session list page.

2016-08-09 Thread Lavkesh Lahngir (JIRA)

 [ 
https://issues.apache.org/jira/browse/LENS-1258?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Lavkesh Lahngir updated LENS-1258:
--
Status: Patch Available  (was: Open)

> len-ui changes for session list page.
> -
>
> Key: LENS-1258
> URL: https://issues.apache.org/jira/browse/LENS-1258
> Project: Apache Lens
>  Issue Type: Sub-task
>  Components: server
>Reporter: Lavkesh Lahngir
>Assignee: Lavkesh Lahngir
> Fix For: 2.7
>
> Attachments: Session-UI.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (LENS-1258) len-ui changes for session list page.

2016-08-09 Thread Lavkesh Lahngir (JIRA)

 [ 
https://issues.apache.org/jira/browse/LENS-1258?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Lavkesh Lahngir updated LENS-1258:
--
Attachment: Session-UI.patch

> len-ui changes for session list page.
> -
>
> Key: LENS-1258
> URL: https://issues.apache.org/jira/browse/LENS-1258
> Project: Apache Lens
>  Issue Type: Sub-task
>  Components: server
>Reporter: Lavkesh Lahngir
>Assignee: Lavkesh Lahngir
> Fix For: 2.7
>
> Attachments: Session-UI.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


Re: Review Request 50784: [LENS-1257] Add ability to analyze sessions

2016-08-09 Thread Lavkesh Lahngir

---
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/50784/
---

(Updated Aug. 9, 2016, 6:01 a.m.)


Review request for lens.


Changes
---

Deleting the session after the test


Bugs: LENS-1257
https://issues.apache.org/jira/browse/LENS-1257


Repository: lens


Description (updated)
---

Server side changes for session API.


Diffs (updated)
-

  lens-api/src/main/java/org/apache/lens/api/session/UserSessionInfo.java 
PRE-CREATION 
  
lens-server-api/src/main/java/org/apache/lens/server/api/session/SessionService.java
 027a32b 
  lens-server/src/main/java/org/apache/lens/server/BaseLensService.java 19a86c6 
  lens-server/src/main/java/org/apache/lens/server/session/SessionResource.java 
fdfd09c 
  
lens-server/src/test/java/org/apache/lens/server/session/TestSessionResource.java
 9ebe17c 

Diff: https://reviews.apache.org/r/50784/diff/


Testing
---


Thanks,

Lavkesh Lahngir



[jira] [Updated] (LENS-1257) Serverside changes for getting session list

2016-08-09 Thread Lavkesh Lahngir (JIRA)

 [ 
https://issues.apache.org/jira/browse/LENS-1257?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Lavkesh Lahngir updated LENS-1257:
--
Attachment: Session-info-api.patch

> Serverside changes for getting session list
> ---
>
> Key: LENS-1257
> URL: https://issues.apache.org/jira/browse/LENS-1257
> Project: Apache Lens
>  Issue Type: Sub-task
>  Components: server
>Reporter: Lavkesh Lahngir
>Assignee: Lavkesh Lahngir
> Fix For: 2.7
>
> Attachments: 0001-Session-info-api.patch, Session-info-api.patch, 
> Session-info-api.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)