[
https://issues.apache.org/jira/browse/HBASE-18570?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16945282#comment-16945282
]
Frederick Ayala commented on HBASE-18570:
-----------------------------------------
Hi, I'm participating into Hacktoberfest and I'm new to open source. This seems
like a good thing I could contribute to. Could I work on this?
> use hbase-spark without HBaseContext runs into NPE
> --------------------------------------------------
>
> Key: HBASE-18570
> URL: https://issues.apache.org/jira/browse/HBASE-18570
> Project: HBase
> Issue Type: Improvement
> Affects Versions: 1.2.0
> Reporter: Yuexin Zhang
> Priority: Minor
>
> I recently run into the same issue as described in stackoverflow :
> https://stackoverflow.com/questions/38865558/sparksql-dataframes-does-not-work-in-spark-shell-and-application#
> If we don't explicitly initialize a HBaseContext and don't set
> hbase.use.hbase.context option to false, it will run into NPE at:
> {code}
> val wrappedConf = new SerializableConfiguration(hbaseContext.config)
> {code}
> https://github.com/apache/hbase/blob/master/hbase-spark/src/main/scala/org/apache/hadoop/hbase/spark/DefaultSource.scala#L140
> Should we safe guard with a NULL validation on hbaseContext?
> Something like:
> {code}
> //create or get latest HBaseContext
> val hbaseContext:HBaseContext = if (useHBaseContext && null !=
> LatestHBaseContextCache.latest) {
> LatestHBaseContextCache.latest
> } else {
> val config = HBaseConfiguration.create()
> configResources.split(",").foreach( r => config.addResource(r))
> new HBaseContext(sqlContext.sparkContext, config)
> }
> {code}
> Or maybe it's better to make sure the HBaseContext is instantiated properly.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)