com.addthis.hydra.data.query.Query.isTraced()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(5.3k)|赞(0)|评价(0)|浏览(247)

本文整理了Java中com.addthis.hydra.data.query.Query.isTraced方法的一些代码示例,展示了Query.isTraced的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.isTraced方法的具体详情如下:
包路径:com.addthis.hydra.data.query.Query
类名称:Query
方法名:isTraced

Query.isTraced介绍

暂无

代码示例

代码示例来源:origin: addthis/hydra

  1. void checkForStragglersMeans() {
  2. int totalTasks = sourceAggregator.totalTasks;
  3. int numRemaining = totalTasks - sourceAggregator.completed;
  4. int tasksDoneCutoff = Math.max(1, (int) Math.ceil(AggregateConfig.stragglerCheckHostPercentage * totalTasks));
  5. long elapsedTime = JitterClock.globalTime() - sourceAggregator.startTime;
  6. double timeCutoff = AggregateConfig.stragglerCheckMeanRuntimeFactor * getMeanRuntime();
  7. if (numRemaining == 0) {
  8. if (MeshSourceAggregator.log.isDebugEnabled() || sourceAggregator.query.isTraced()) {
  9. Query.traceLog.info("Straggler checker for {} detected query done. Exiting.",
  10. sourceAggregator.query.uuid());
  11. }
  12. } else if ((numRemaining <= tasksDoneCutoff) && (elapsedTime > timeCutoff)) {
  13. handleStragglers();
  14. }
  15. }

代码示例来源:origin: addthis/hydra

  1. void checkForStragglersStdDev() {
  2. Query query = sourceAggregator.query;
  3. int totalTasks = sourceAggregator.totalTasks;
  4. int numRemaining = totalTasks - sourceAggregator.completed;
  5. int tasksDoneCutoff = Math.max(1, (int) Math.ceil(AggregateConfig.stragglerCheckHostPercentage * totalTasks));
  6. long elapsedTime = JitterClock.globalTime() - sourceAggregator.startTime;
  7. if (numRemaining == 0) {
  8. if (MeshSourceAggregator.log.isDebugEnabled() || query.isTraced()) {
  9. Query.traceLog.info("Straggler checker for {} detected query done. Exiting.", query.uuid());
  10. }
  11. } else if ((numRemaining <= tasksDoneCutoff) &&
  12. (elapsedTime > getStdDevsAwayRuntime(AggregateConfig.MULTIPLE_STD_DEVS))) {
  13. if (MeshSourceAggregator.log.isTraceEnabled()) {
  14. MeshSourceAggregator.log.trace("Running stragglers for query: {}", query.uuid());
  15. MeshSourceAggregator.log.trace(
  16. "numRemaining: {} taskDoneCutoff: {} deltaTime: {} {} stdDevsAway: {} Mean runtime: {}",
  17. numRemaining, tasksDoneCutoff, elapsedTime, AggregateConfig.MULTIPLE_STD_DEVS,
  18. getStdDevsAwayRuntime(AggregateConfig.MULTIPLE_STD_DEVS), getMeanRuntime());
  19. }
  20. handleStragglers();
  21. }
  22. }

代码示例来源:origin: addthis/hydra

  1. /**
  2. * Part 3 - SEARCH
  3. * Run the search -- most of this logic is in QueryEngine.search(). We only take care of logging times and
  4. * passing the sendComplete message along.
  5. */
  6. protected void search() {
  7. final long searchStartTime = System.currentTimeMillis();
  8. finalEng.search(query, queryOpProcessor, bridge.getQueryPromise());
  9. queryOpProcessor.sendComplete();
  10. final long searchDuration = System.currentTimeMillis() - searchStartTime;
  11. if (log.isDebugEnabled() || query.isTraced()) {
  12. Query.traceLog.info("[QueryReference] search complete {} in {}ms directory: {} slow={} rowsIn: {}",
  13. query.uuid(), searchDuration, goldDirString,
  14. searchDuration > MeshQuerySource.slowQueryThreshold, queryOpProcessor.getInputRows());
  15. }
  16. MeshQuerySource.queryTimes.update(searchDuration, TimeUnit.MILLISECONDS);
  17. }
  18. }

代码示例来源:origin: addthis/hydra

  1. /**
  2. * Part 2 - ENGINE CACHE
  3. * Get a QueryEngine for our query -- check the cache for a suitable candidate, otherwise make one.
  4. * Most of this logic is handled by the QueryEngineCache.get() function.
  5. */
  6. protected QueryEngine getEngine() throws Exception {
  7. final long engineGetStartTime = System.currentTimeMillis();
  8. // Use the canonical path stored in the canonicalDirString to create a QueryEngine. By that way
  9. // if the alias changes new queries will use the latest available
  10. // database and the old engines will be automatically closed after their TTL expires.
  11. QueryEngine engine = MeshQuerySource.queryEngineCache.getAndLease(goldDirString);
  12. final long engineGetDuration = System.currentTimeMillis() - engineGetStartTime;
  13. MeshQuerySource.engineGetTimer.update(engineGetDuration, TimeUnit.MILLISECONDS);
  14. if (engine == null) //Cache returned null -- this doesn't mean cache miss. It means something went fairly wrong
  15. {
  16. log.warn("[QueryReference] Unable to retrieve queryEngine for query: {}, key: {} after waiting: {}ms",
  17. query.uuid(), goldDirString, engineGetDuration);
  18. throw new DataChannelError("Unable to retrieve queryEngine for query: " + query.uuid() +
  19. ", key: " + goldDirString + " after waiting: " + engineGetDuration + "ms");
  20. } //else we got an engine so we're good -- maybe this logic should be in the cache get
  21. if ((engineGetDuration > MeshQuerySource.slowQueryThreshold) || log.isDebugEnabled() || query.isTraced()) {
  22. Query.traceLog.info(
  23. "[QueryReference] Retrieved queryEngine for query: {}, key:{} after waiting: {}ms. slow={}",
  24. query.uuid(), goldDirString, engineGetDuration,
  25. engineGetDuration > MeshQuerySource.slowQueryThreshold);
  26. }
  27. return engine;
  28. }

代码示例来源:origin: addthis/hydra

  1. public void handleStragglers() {
  2. for (QueryTaskSource taskSource : sourceAggregator.taskSources) {
  3. if (taskSource.oneHasResponded() || (taskSource.options.length == 0)) {
  4. continue;
  5. }
  6. for (QueryTaskSourceOption option : taskSource.options) {
  7. if (!option.isActive()) {
  8. if (option.tryActivate(sourceAggregator.meshy, sourceAggregator.queryOptions)) {
  9. AggregateConfig.totalStragglerCheckerRequests.inc();
  10. if (MeshSourceAggregator.log.isDebugEnabled() || sourceAggregator.query.isTraced()) {
  11. Query.traceLog.info("Straggler detected for {} sending duplicate query to host: {}",
  12. sourceAggregator.query.uuid(), option.queryReference.getHostUUID());
  13. }
  14. break;
  15. }
  16. }
  17. }
  18. }
  19. }
  20. }

代码示例来源:origin: addthis/hydra

  1. .put("query.hosts", query.getParameter("hosts"))
  2. .put("query.ops", query.getOps())
  3. .put("trace", query.isTraced())
  4. .put("sources", query.getParameter("sources"))
  5. .put("time", System.currentTimeMillis())

相关文章