[jira] [Created] (SLIDER-893) Add SecureBulkLoadEndpoint to hbase.coprocessor.region.classes

2015-06-01 Thread Ted Yu (JIRA)
Ted Yu created SLIDER-893: - Summary: Add SecureBulkLoadEndpoint to hbase.coprocessor.region.classes Key: SLIDER-893 URL: https://issues.apache.org/jira/browse/SLIDER-893 Project: Slider Issue Type:

Re: Keytab issue with Hbase secure

2015-06-01 Thread Jean-Baptiste Note
Hi, Thanks for the heads up. We're running on JDK8, however, it looks like 10786 is in CDH5.4.0 which we're using (and compiled against); see: http://archive.cloudera.com/cdh5/cdh/5/hadoop-2.6.0-cdh5.4.0.releasenotes.html This is so close a problem however that we'll dig in this direction.

Re: Keytab issue with Hbase secure

2015-06-01 Thread Yohan Bismuth
Hi, it seems to fix the issue :) However, like Jean Baptiste said, it shouldnt be a problem in cdh5.4.0. I'll try to dig it a little more. Anyway, thank you Jon On Mon, Jun 1, 2015 at 10:53 AM, Jean-Baptiste Note jbn...@gmail.com wrote: Hi, Thanks for the heads up. We're running on JDK8,

[jira] [Resolved] (SLIDER-893) Add SecureBulkLoadEndpoint to hbase.coprocessor.region.classes

2015-06-01 Thread Ted Yu (JIRA)
[ https://issues.apache.org/jira/browse/SLIDER-893?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ted Yu resolved SLIDER-893. --- Resolution: Fixed Resolved through commit 38d5d908b294bae703a76af90fa711e41b36082f Add

Error when using ${JAVA_HOME} in appConfig.json

2015-06-01 Thread Nathaniel Braun
Hello, I'm trying to use the environment JAVA_HOME in my appConfig.json file. It fails for a weird reason, and I think I've pinpointed the current behavior: 1. When the variable is used in the hostLevelParams part, it works: global: { application.def: ..., java_home:

[jira] [Resolved] (SLIDER-886) TestZKIntegration.testListUserClustersWithTwoCluster failing on Java8

2015-06-01 Thread Steve Loughran (JIRA)
[ https://issues.apache.org/jira/browse/SLIDER-886?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Steve Loughran resolved SLIDER-886. --- Resolution: Fixed Fix Version/s: (was: Slider 0.81) Slider 0.90

[jira] [Updated] (SLIDER-890) Bundle Solr as an app-package include with the Slider distribution

2015-06-01 Thread Timothy Potter (JIRA)
[ https://issues.apache.org/jira/browse/SLIDER-890?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Timothy Potter updated SLIDER-890: -- Attachment: SLIDER-890_remove_zk.patch Thanks for committing Gour. Here's an updated patch that

[jira] [Commented] (SLIDER-894) AgentWebPagesIT fails with AuthenticationException in secure clusters

2015-06-01 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/SLIDER-894?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14567497#comment-14567497 ] ASF subversion and git services commented on SLIDER-894: Commit

Need hostname for use in appConfig.json

2015-06-01 Thread Nathaniel Braun
Hi everyone, We are currently working on the configuration files with Kerberos principals in them, and it turns out that the Kerberos principal is linked to the hostname, so we need it. What we would like to do is something like that: 1. In appConfig.json Set the global hostname:

[jira] [Updated] (SLIDER-886) TestZKIntegration.testListUserClustersWithTwoCluster failing on Java8

2015-06-01 Thread Steve Loughran (JIRA)
[ https://issues.apache.org/jira/browse/SLIDER-886?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Steve Loughran updated SLIDER-886: -- Fix Version/s: (was: Slider 0.90) Slider 0.81

[jira] [Updated] (SLIDER-894) AgentWebPagesIT fails with AuthenticationException in secure clusters

2015-06-01 Thread Steve Loughran (JIRA)
[ https://issues.apache.org/jira/browse/SLIDER-894?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Steve Loughran updated SLIDER-894: -- Sprint: Slider April #1 AgentWebPagesIT fails with AuthenticationException in secure clusters

[jira] [Created] (SLIDER-894) AgentWebPagesIT fails with AuthenticationException in secure clusters

2015-06-01 Thread Steve Loughran (JIRA)
Steve Loughran created SLIDER-894: - Summary: AgentWebPagesIT fails with AuthenticationException in secure clusters Key: SLIDER-894 URL: https://issues.apache.org/jira/browse/SLIDER-894 Project:

Re: Need hostname for use in appConfig.json

2015-06-01 Thread Jon Maron
Alternatively, you could also try using the convention used elsewhere in hadoop: username/_HOST@domain. _HOST is generally replaced at runtime with the host name. Most applications currently honor that convention (Internally calling SecurityUtil.getServerPrincipal(String

[jira] [Commented] (SLIDER-894) AgentWebPagesIT fails with AuthenticationException in secure clusters

2015-06-01 Thread Steve Loughran (JIRA)
[ https://issues.apache.org/jira/browse/SLIDER-894?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14567495#comment-14567495 ] Steve Loughran commented on SLIDER-894: --- Slightly out of date (0.80) stack {code}

Re: Need hostname for use in appConfig.json

2015-06-01 Thread Gour Saha
Have you tried using ${THIS_HOST} in appConfig? Did it not work? -Gour On 6/1/15, 9:14 AM, Nathaniel Braun n.br...@criteo.com wrote: Hi everyone, We are currently working on the configuration files with Kerberos principals in them, and it turns out that the Kerberos principal is linked to the

Re: Error when using ${JAVA_HOME} in appConfig.json

2015-06-01 Thread Billie Rinaldi
You cannot set global java_home like this: global: { application.def: ..., java_home: ${JAVA_HOME}, None of the variables that look like ${X} in the appConfig are environment variables. They're internal Slider variables that Slider knows how to substitute for real values. Once you set

Re: Need hostname for use in appConfig.json

2015-06-01 Thread Nathaniel Braun
Thanks for your answer, I did try using {THIS_HOST}, it didn't work Regards, Nathaniel From: Jon Maron jma...@hortonworks.com Sent: Monday, June 1, 2015 6:39:41 PM To: dev@slider.incubator.apache.org Subject: Re: Need hostname for use in appConfig.json

Re: Need hostname for use in appConfig.json

2015-06-01 Thread Nathaniel Braun
By the way, regarding the _HOST convention: I indeed saw hat in the HBase package, and it works perfectly. What I meant was, I'm probably not the only one to need this. It would maybe be good to provide an official way of accomplishing it :) Thanks

Re: Need hostname for use in appConfig.json

2015-06-01 Thread Jon Maron
On Jun 1, 2015, at 1:37 PM, Nathaniel Braun n.br...@criteo.com wrote: By the way, regarding the _HOST convention: I indeed saw hat in the HBase package, and it works perfectly. What I meant was, I'm probably not the only one to need this. It would maybe be good to provide an official

Re: registry / export question

2015-06-01 Thread Gour Saha
There is a combination of ZK and REST way to find the info you are looking for. Use a zk client and do this - get /registry/users/user_id/services/org-apache-slider/app_id (with appropriate user_id and app_id of the koya cluster) From the json dump look for element with api = class

Re: Need hostname for use in appConfig.json

2015-06-01 Thread Nathaniel Braun
Yes exactly. From: Jon Maron jma...@hortonworks.com Sent: Monday, June 1, 2015 7:42 PM To: dev@slider.incubator.apache.org Subject: Re: Need hostname for use in appConfig.json On Jun 1, 2015, at 1:37 PM, Nathaniel Braun n.br...@criteo.com wrote: By the

[jira] [Updated] (SLIDER-895) Slider Unit Test Cases Failing on Windows

2015-06-01 Thread Gour Saha (JIRA)
[ https://issues.apache.org/jira/browse/SLIDER-895?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gour Saha updated SLIDER-895: - Affects Version/s: Slider 0.80 Slider Unit Test Cases Failing on Windows

[jira] [Updated] (SLIDER-895) Slider Unit Test Cases Failing on Windows

2015-06-01 Thread thomas liu (JIRA)
[ https://issues.apache.org/jira/browse/SLIDER-895?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] thomas liu updated SLIDER-895: -- Attachment: JIRA-895-001.patch 2) should be due to misconfig of 'winutils.exe'. For 3), communicated

Re: registry / export question

2015-06-01 Thread Jean-Baptiste Note
Thanks Gour, Indeed it does help; because I can see a way to combine these to avoid polling. By monitoring the ZK registry and doing CURL whenever there's a child change in the registry it looks I can reliably track changes in the export group, so this is perfect. I'll let you know how

[jira] [Updated] (SLIDER-895) Slider Unit Test Cases Failing on Windows

2015-06-01 Thread Gour Saha (JIRA)
[ https://issues.apache.org/jira/browse/SLIDER-895?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gour Saha updated SLIDER-895: - Component/s: windows Slider Unit Test Cases Failing on Windows

[jira] [Updated] (SLIDER-895) Slider Unit Test Cases Failing on Windows

2015-06-01 Thread Gour Saha (JIRA)
[ https://issues.apache.org/jira/browse/SLIDER-895?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gour Saha updated SLIDER-895: - Assignee: thomas liu Slider Unit Test Cases Failing on Windows

[jira] [Created] (SLIDER-895) Slider Unit Test Cases Failing on Windows

2015-06-01 Thread thomas liu (JIRA)
thomas liu created SLIDER-895: - Summary: Slider Unit Test Cases Failing on Windows Key: SLIDER-895 URL: https://issues.apache.org/jira/browse/SLIDER-895 Project: Slider Issue Type: Bug

[jira] [Commented] (SLIDER-208) Ongoing: keep Jenkins builds working

2015-06-01 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/SLIDER-208?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14567856#comment-14567856 ] ASF subversion and git services commented on SLIDER-208: Commit

Re: Interest in including a package for Solr in Slider?

2015-06-01 Thread Josh Elser
Belated strong +1 :) Timothy Potter wrote: I'm reaching out to see if there is interest in including Solr as one of the packages that ships with Slider, as you dotoday with Storm, memcached, HBase, etc ... If so, I can open a JIRA and prepare a patch based on my github project, but wanted to

[jira] [Commented] (SLIDER-895) Slider Unit Test Cases Failing on Windows

2015-06-01 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/SLIDER-895?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14567870#comment-14567870 ] ASF subversion and git services commented on SLIDER-895: Commit

[jira] [Commented] (SLIDER-890) Bundle Solr as an app-package include with the Slider distribution

2015-06-01 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/SLIDER-890?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14567929#comment-14567929 ] ASF subversion and git services commented on SLIDER-890: Commit

[jira] [Commented] (SLIDER-890) Bundle Solr as an app-package include with the Slider distribution

2015-06-01 Thread Gour Saha (JIRA)
[ https://issues.apache.org/jira/browse/SLIDER-890?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14567932#comment-14567932 ] Gour Saha commented on SLIDER-890: -- Updated patch checked in. Bundle Solr as an

[jira] [Resolved] (SLIDER-895) Slider Unit Test Cases Failing on Windows

2015-06-01 Thread Gour Saha (JIRA)
[ https://issues.apache.org/jira/browse/SLIDER-895?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Gour Saha resolved SLIDER-895. -- Resolution: Fixed Slider Unit Test Cases Failing on Windows -

[jira] [Commented] (SLIDER-873) Fix accumulo test failures

2015-06-01 Thread ASF subversion and git services (JIRA)
[ https://issues.apache.org/jira/browse/SLIDER-873?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14568351#comment-14568351 ] ASF subversion and git services commented on SLIDER-873: Commit