org.apache.hadoop.hdfs.server.common.Util.now()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(3.5k)|赞(0)|评价(0)|浏览(205)

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

Util.now介绍

[英]Current system time.
[中]当前系统时间。

代码示例

代码示例来源:origin: com.facebook.hadoop/hadoop-core

  1. /**
  2. * Load an edit log, and apply the changes to the in-memory structure
  3. * This is where we apply edits that we've been writing to disk all
  4. * along.
  5. */
  6. int loadFSEdits(EditLogInputStream edits, long expectedStartingTxId)
  7. throws IOException {
  8. long startTime = now();
  9. currentTxId = expectedStartingTxId;
  10. int numEdits = loadFSEdits(edits, true);
  11. FSImage.LOG.info("Edits file " + edits.getName()
  12. + " of size " + edits.length() + " edits # " + numEdits
  13. + " loaded in " + (now()-startTime)/1000 + " seconds.");
  14. return numEdits;
  15. }

代码示例来源:origin: com.facebook.hadoop/hadoop-core

  1. private long dispatchBlockMoves() throws InterruptedException {
  2. long bytesLastMoved = bytesMoved.get();
  3. Future<?>[] futures = new Future<?>[sources.size()];
  4. int i=0;
  5. for (Source source : sources) {
  6. futures[i++] = dispatcherExecutor.submit(
  7. source.new BlockMoveDispatcher(Util.now()));
  8. }
  9. // wait for all dispatcher threads to finish
  10. for (Future<?> future : futures) {
  11. try {
  12. future.get();
  13. } catch (ExecutionException e) {
  14. LOG.warn("Dispatcher thread failed", e.getCause());
  15. }
  16. }
  17. // wait for all block moving to be done
  18. waitForMoveCompletion();
  19. return bytesMoved.get()-bytesLastMoved;
  20. }

代码示例来源:origin: com.facebook.hadoop/hadoop-core

  1. public int run(String[] args) throws Exception {
  2. final long startTime = Util.now();
  3. try {
  4. checkReplicationPolicyCompatibility(conf);
  5. final List<InetSocketAddress> namenodes = DFSUtil.getClientRpcAddresses(conf, null);
  6. parse(args);
  7. return Balancer.run(namenodes, conf);
  8. } catch (IOException e) {
  9. System.out.println(e + ". Exiting ...");
  10. return IO_EXCEPTION;
  11. } catch (InterruptedException e) {
  12. System.out.println(e + ". Exiting ...");
  13. return INTERRUPTED;
  14. } catch (Exception e) {
  15. e.printStackTrace();
  16. return ILLEGAL_ARGS;
  17. } finally {
  18. System.out.println("Balancing took " + time2Str(Util.now()-startTime));
  19. }
  20. }

代码示例来源:origin: org.jvnet.hudson.hadoop/hadoop-core

  1. private void dispatchBlocks() {
  2. long startTime = Util.now();
  3. this.blocksToReceive = 2*scheduledSize;
  4. boolean isTimeUp = false;
  5. if (Util.now()-startTime > MAX_ITERATION_TIME) {
  6. isTimeUp = true;
  7. continue;

代码示例来源:origin: org.apache.hadoop/hadoop-hdfs-test

  1. public void testThrottler() throws IOException {
  2. Configuration conf = new HdfsConfiguration();
  3. FileSystem.setDefaultUri(conf, "hdfs://localhost:0");
  4. long bandwidthPerSec = 1024*1024L;
  5. final long TOTAL_BYTES =6*bandwidthPerSec;
  6. long bytesToSend = TOTAL_BYTES;
  7. long start = Util.now();
  8. DataTransferThrottler throttler = new DataTransferThrottler(bandwidthPerSec);
  9. long totalBytes = 0L;
  10. long bytesSent = 1024*512L; // 0.5MB
  11. throttler.throttle(bytesSent);
  12. bytesToSend -= bytesSent;
  13. bytesSent = 1024*768L; // 0.75MB
  14. throttler.throttle(bytesSent);
  15. bytesToSend -= bytesSent;
  16. try {
  17. Thread.sleep(1000);
  18. } catch (InterruptedException ignored) {}
  19. throttler.throttle(bytesToSend);
  20. long end = Util.now();
  21. assertTrue(totalBytes*1000/(end-start)<=bandwidthPerSec);
  22. }

代码示例来源:origin: com.facebook.hadoop/hadoop-core

  1. long startTime = now();
  2. + " saved in " + (now() - startTime)/1000 + " seconds.");

代码示例来源:origin: com.facebook.hadoop/hadoop-core

  1. if (Util.now()-startTime > maxIterationTime) {
  2. isTimeUp = true;
  3. continue;

代码示例来源:origin: org.jvnet.hudson.hadoop/hadoop-core

  1. long startTime = Util.now();
  2. OutputStream out = null;
  3. try {
  4. time2Str(Util.now()-startTime));

代码示例来源:origin: com.facebook.hadoop/hadoop-core

  1. assert curFile != null : "curFile is null";
  2. long startTime = now();
  3. + (now() - startTime)/1000 + " seconds.");

相关文章