[jira] [Updated] (SPARK-7107) Add parameter for zookeeper.znode.parent to hbase_inputformat.py

2015-04-23 Thread Ted Yu (JIRA)

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

Ted Yu updated SPARK-7107:
--
Description: 
[~yeshavora] first reported encountering the following exception running 
hbase_inputformat.py :
{code}
py4j.protocol.Py4JJavaError: An error occurred while calling 
z:org.apache.spark.api.python.PythonRDD.newAPIHadoopRDD.
: java.lang.RuntimeException: java.lang.NullPointerException
at 
org.apache.hadoop.hbase.client.RpcRetryingCaller.callWithoutRetries(RpcRetryingCaller.java:208)
at org.apache.hadoop.hbase.client.ClientScanner.call(ClientScanner.java:313)
at 
org.apache.hadoop.hbase.client.ClientScanner.nextScanner(ClientScanner.java:288)
at 
org.apache.hadoop.hbase.client.ClientScanner.initializeScannerInConstruction(ClientScanner.java:160)
{code}
It turned out that the hbase cluster has custom znode parent:
{code}

  zookeeper.znode.parent
  /hbase-unsecure

{code}
hbase_inputformat.py should support specification of custom znode parent.

  was:
We encountered the following exception running hbase_inputformat.py :
{code}
py4j.protocol.Py4JJavaError: An error occurred while calling 
z:org.apache.spark.api.python.PythonRDD.newAPIHadoopRDD.
: java.lang.RuntimeException: java.lang.NullPointerException
at 
org.apache.hadoop.hbase.client.RpcRetryingCaller.callWithoutRetries(RpcRetryingCaller.java:208)
at org.apache.hadoop.hbase.client.ClientScanner.call(ClientScanner.java:313)
at 
org.apache.hadoop.hbase.client.ClientScanner.nextScanner(ClientScanner.java:288)
at 
org.apache.hadoop.hbase.client.ClientScanner.initializeScannerInConstruction(ClientScanner.java:160)
{code}
It turned out that the hbase cluster has custom znode parent:
{code}

  zookeeper.znode.parent
  /hbase-unsecure

{code}
hbase_inputformat.py should support specification of custom znode parent.


> Add parameter for zookeeper.znode.parent to hbase_inputformat.py
> 
>
> Key: SPARK-7107
> URL: https://issues.apache.org/jira/browse/SPARK-7107
> Project: Spark
>  Issue Type: Bug
>Reporter: Ted Yu
>Priority: Minor
>
> [~yeshavora] first reported encountering the following exception running 
> hbase_inputformat.py :
> {code}
> py4j.protocol.Py4JJavaError: An error occurred while calling 
> z:org.apache.spark.api.python.PythonRDD.newAPIHadoopRDD.
> : java.lang.RuntimeException: java.lang.NullPointerException
> at 
> org.apache.hadoop.hbase.client.RpcRetryingCaller.callWithoutRetries(RpcRetryingCaller.java:208)
> at org.apache.hadoop.hbase.client.ClientScanner.call(ClientScanner.java:313)
> at 
> org.apache.hadoop.hbase.client.ClientScanner.nextScanner(ClientScanner.java:288)
> at 
> org.apache.hadoop.hbase.client.ClientScanner.initializeScannerInConstruction(ClientScanner.java:160)
> {code}
> It turned out that the hbase cluster has custom znode parent:
> {code}
> 
>   zookeeper.znode.parent
>   /hbase-unsecure
> 
> {code}
> hbase_inputformat.py should support specification of custom znode parent.



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

-
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org



[jira] [Updated] (SPARK-7107) Add parameter for zookeeper.znode.parent to hbase_inputformat.py

2015-04-24 Thread Reynold Xin (JIRA)

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

Reynold Xin updated SPARK-7107:
---
Assignee: Ted Yu

> Add parameter for zookeeper.znode.parent to hbase_inputformat.py
> 
>
> Key: SPARK-7107
> URL: https://issues.apache.org/jira/browse/SPARK-7107
> Project: Spark
>  Issue Type: Bug
>Reporter: Ted Yu
>Assignee: Ted Yu
>Priority: Minor
>
> [~yeshavora] first reported encountering the following exception running 
> hbase_inputformat.py :
> {code}
> py4j.protocol.Py4JJavaError: An error occurred while calling 
> z:org.apache.spark.api.python.PythonRDD.newAPIHadoopRDD.
> : java.lang.RuntimeException: java.lang.NullPointerException
> at 
> org.apache.hadoop.hbase.client.RpcRetryingCaller.callWithoutRetries(RpcRetryingCaller.java:208)
> at org.apache.hadoop.hbase.client.ClientScanner.call(ClientScanner.java:313)
> at 
> org.apache.hadoop.hbase.client.ClientScanner.nextScanner(ClientScanner.java:288)
> at 
> org.apache.hadoop.hbase.client.ClientScanner.initializeScannerInConstruction(ClientScanner.java:160)
> {code}
> It turned out that the hbase cluster has custom znode parent:
> {code}
> 
>   zookeeper.znode.parent
>   /hbase-unsecure
> 
> {code}
> hbase_inputformat.py should support specification of custom znode parent.



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

-
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org



[jira] [Updated] (SPARK-7107) Add parameter for zookeeper.znode.parent to hbase_inputformat.py

2015-04-25 Thread Sean Owen (JIRA)

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

Sean Owen updated SPARK-7107:
-
Component/s: PySpark

> Add parameter for zookeeper.znode.parent to hbase_inputformat.py
> 
>
> Key: SPARK-7107
> URL: https://issues.apache.org/jira/browse/SPARK-7107
> Project: Spark
>  Issue Type: Bug
>  Components: PySpark
>Reporter: Ted Yu
>Assignee: Ted Yu
>Priority: Minor
>
> [~yeshavora] first reported encountering the following exception running 
> hbase_inputformat.py :
> {code}
> py4j.protocol.Py4JJavaError: An error occurred while calling 
> z:org.apache.spark.api.python.PythonRDD.newAPIHadoopRDD.
> : java.lang.RuntimeException: java.lang.NullPointerException
> at 
> org.apache.hadoop.hbase.client.RpcRetryingCaller.callWithoutRetries(RpcRetryingCaller.java:208)
> at org.apache.hadoop.hbase.client.ClientScanner.call(ClientScanner.java:313)
> at 
> org.apache.hadoop.hbase.client.ClientScanner.nextScanner(ClientScanner.java:288)
> at 
> org.apache.hadoop.hbase.client.ClientScanner.initializeScannerInConstruction(ClientScanner.java:160)
> {code}
> It turned out that the hbase cluster has custom znode parent:
> {code}
> 
>   zookeeper.znode.parent
>   /hbase-unsecure
> 
> {code}
> hbase_inputformat.py should support specification of custom znode parent.



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

-
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org



[jira] [Updated] (SPARK-7107) Add parameter for zookeeper.znode.parent to hbase_inputformat.py

2015-04-25 Thread Reynold Xin (JIRA)

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

Reynold Xin updated SPARK-7107:
---
Component/s: Examples

> Add parameter for zookeeper.znode.parent to hbase_inputformat.py
> 
>
> Key: SPARK-7107
> URL: https://issues.apache.org/jira/browse/SPARK-7107
> Project: Spark
>  Issue Type: Bug
>  Components: Examples, PySpark
>Reporter: Ted Yu
>Assignee: Ted Yu
>Priority: Minor
>
> [~yeshavora] first reported encountering the following exception running 
> hbase_inputformat.py :
> {code}
> py4j.protocol.Py4JJavaError: An error occurred while calling 
> z:org.apache.spark.api.python.PythonRDD.newAPIHadoopRDD.
> : java.lang.RuntimeException: java.lang.NullPointerException
> at 
> org.apache.hadoop.hbase.client.RpcRetryingCaller.callWithoutRetries(RpcRetryingCaller.java:208)
> at org.apache.hadoop.hbase.client.ClientScanner.call(ClientScanner.java:313)
> at 
> org.apache.hadoop.hbase.client.ClientScanner.nextScanner(ClientScanner.java:288)
> at 
> org.apache.hadoop.hbase.client.ClientScanner.initializeScannerInConstruction(ClientScanner.java:160)
> {code}
> It turned out that the hbase cluster has custom znode parent:
> {code}
> 
>   zookeeper.znode.parent
>   /hbase-unsecure
> 
> {code}
> hbase_inputformat.py should support specification of custom znode parent.



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

-
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org