Hi HBase users. I'm using HBase with Spark; What I am trying to do is to perform a multirange scan, first of all tried to use MultiRowRangeFilter for setting up scanner ranges and TableInputFormat, but it looks like this solution scans all rows in a table? What is such filter use case then?
The next step was just to use separate scanners, and MultiTableInputFormat to read data, it helped and works indeed faster, and i guess this solution not walks through the whole table. Is MultiTableInputFormat a kind of an optimal solution in this case? How usually such situations (multirange scans) handled (exmpl: Accumulo API has setRanges function to set ranges for InputFormat)? -- View this message in context: http://apache-hbase.679495.n3.nabble.com/Multirange-Scan-performance-tp4082215.html Sent from the HBase User mailing list archive at Nabble.com.
