[
https://issues.apache.org/jira/browse/HBASE-16804?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15564630#comment-15564630
]
Hudson commented on HBASE-16804:
--------------------------------
FAILURE: Integrated in Jenkins build HBase-Trunk_matrix #1765 (See
[https://builds.apache.org/job/HBase-Trunk_matrix/1765/])
HBASE-16804 JavaHBaseContext.streamBulkGet is void but should be (tedyu: rev
83fc59d5c98e4847eda01d08510cd3c0ee9cfa05)
* (edit)
hbase-spark/src/main/scala/org/apache/hadoop/hbase/spark/JavaHBaseContext.scala
> JavaHBaseContext.streamBulkGet is void but should be JavaDStream
> -----------------------------------------------------------------
>
> Key: HBASE-16804
> URL: https://issues.apache.org/jira/browse/HBASE-16804
> Project: HBase
> Issue Type: Bug
> Components: spark
> Affects Versions: 2.0.0
> Reporter: Igor Yurinok
> Assignee: Igor Yurinok
> Labels: beginner, spark
> Fix For: 2.0.0
>
> Attachments: HBASE-16804.patch
>
>
> This is current implementation in JavaHBaseContext.scala:
> {code}
> def streamBulkGet[T, U](tableName: TableName,
> batchSize: Integer,
> javaDStream: JavaDStream[T],
> makeGet: Function[T, Get],
> convertResult: Function[Result, U])
> {code}
> Should be:
> {code}
> def streamBulkGet[T, U](tableName: TableName,
> batchSize: Integer,
> javaDStream: JavaDStream[T],
> makeGet: Function[T, Get],
> convertResult: Function[Result, U]): JavaDStream[U]
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)