MCPcopy Index your code
hub / github.com/OpenTSDB/opentsdb / fetch

Method fetch

src/core/MultiGetQuery.java:332–343  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

330 }
331
332 public Object fetch() {
333
334 mul_get_start_time = DateTime.nanoTime();
335
336 if (LOG.isDebugEnabled()) {
337 LOG.debug("Trying to fetch data for concurrency index: "
338 + concurrency_index + "; with " + gets.size() + " gets");
339 }
340 return tsdb.client.get(gets)
341 .addCallback(this)
342 .addErrback(new ErrorCb());
343 }
344
345 /**
346 * Iterate through each row of the multi get results, parses out data

Callers 2

closeMethod · 0.95
startFetchMethod · 0.95

Calls 3

nanoTimeMethod · 0.95
sizeMethod · 0.65
getMethod · 0.45

Tested by

no test coverage detected