()
| 898 | } |
| 899 | |
| 900 | private Deferred<SortedMap<byte[], Span>> findSpansWithMultiGetter() throws HBaseException { |
| 901 | final short metric_width = tsdb.metrics.width(); |
| 902 | final TreeMap<byte[], Span> spans = // The key is a row key from HBase. |
| 903 | new TreeMap<byte[], Span>(new SpanCmp(metric_width)); |
| 904 | |
| 905 | scan_start_time = System.nanoTime(); |
| 906 | |
| 907 | return new MultiGetQuery(tsdb, this, metric, row_key_literals_list, |
| 908 | getScanStartTimeSeconds(), getScanEndTimeSeconds(), |
| 909 | tableToBeScanned(), spans, null, 0, rollup_query, query_stats, query_index, 0, |
| 910 | false, search_query_failure).fetch(); |
| 911 | } |
| 912 | |
| 913 | /** |
| 914 | * Finds all the {@link HistogramSpan}s that match this query. |
no test coverage detected