Skip to content
Snippets Groups Projects
Commit 27566891 authored by Powers, Peter M.'s avatar Powers, Peter M.
Browse files

batch logging update

parent 3dbd672c
No related branches found
No related tags found
2 merge requests!593Production Release | nshm-haz,!589Hazard and disagg app work
...@@ -301,7 +301,7 @@ public class DisaggCalc { ...@@ -301,7 +301,7 @@ public class DisaggCalc {
Files.createDirectory(disaggDir); Files.createDirectory(disaggDir);
Stopwatch stopwatch = Stopwatch.createStarted(); Stopwatch stopwatch = Stopwatch.createStarted();
int logInterval = sites.size() > 1000 ? 100 : sites.size() > 100 ? 10 : 1; int logInterval = sites.size() < 100 ? 1 : sites.size() < 1000 ? 10 : 100;
for (int i = 0; i < sites.size(); i++) { for (int i = 0; i < sites.size(); i++) {
Site site = sites.get(i); Site site = sites.get(i);
...@@ -397,7 +397,7 @@ public class DisaggCalc { ...@@ -397,7 +397,7 @@ public class DisaggCalc {
Files.createDirectory(disaggDir); Files.createDirectory(disaggDir);
Stopwatch stopwatch = Stopwatch.createStarted(); Stopwatch stopwatch = Stopwatch.createStarted();
int logInterval = sites.size() > 1000 ? 100 : sites.size() > 100 ? 10 : 1; int logInterval = sites.size() < 100 ? 1 : sites.size() < 1000 ? 10 : 100;
for (int i = 0; i < sites.size(); i++) { for (int i = 0; i < sites.size(); i++) {
......
...@@ -21,6 +21,7 @@ import java.util.concurrent.ThreadPoolExecutor; ...@@ -21,6 +21,7 @@ import java.util.concurrent.ThreadPoolExecutor;
import java.util.logging.FileHandler; import java.util.logging.FileHandler;
import java.util.logging.Logger; import java.util.logging.Logger;
import com.google.common.base.Stopwatch;
import com.google.common.base.Throwables; import com.google.common.base.Throwables;
import com.google.common.util.concurrent.MoreExecutors; import com.google.common.util.concurrent.MoreExecutors;
...@@ -175,10 +176,19 @@ public class HazardCalc { ...@@ -175,10 +176,19 @@ public class HazardCalc {
CalcTask.Builder calcTask = new CalcTask.Builder(model, config, exec); CalcTask.Builder calcTask = new CalcTask.Builder(model, config, exec);
WriteTask.Builder writeTask = new WriteTask.Builder(handler); WriteTask.Builder writeTask = new WriteTask.Builder(handler);
Stopwatch stopwatch = Stopwatch.createStarted();
int logInterval = sites.size() < 100 ? 1 : sites.size() < 1000 ? 10 : 100;
Future<Path> out = null; Future<Path> out = null;
for (Site site : sites) { for (int i = 0; i < sites.size(); i++) {
Site site = sites.get(i);
Hazard hazard = calcTask.withSite(site).call(); Hazard hazard = calcTask.withSite(site).call();
out = exec.submit(writeTask.withResult(hazard)); out = exec.submit(writeTask.withResult(hazard));
if (i % logInterval == 0) {
log.info(String.format(
" %s of %s sites completed in %s",
i + 1, sites.size(), stopwatch));
}
} }
/* Block shutdown until last task is returned. */ /* Block shutdown until last task is returned. */
Path outputDir = out.get(); Path outputDir = out.get();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment