Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
nshmp-haz
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ghsc
National Seismic Hazard Model Project
nshmp-haz
Commits
a9a2b4df
Commit
a9a2b4df
authored
3 years ago
by
Powers, Peter M.
Browse files
Options
Downloads
Patches
Plain Diff
bathc logging improvements
parent
b51da263
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!593
Production Release | nshm-haz
,
!591
Code review 479
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/java/gov/usgs/earthquake/nshmp/DisaggCalc.java
+9
-7
9 additions, 7 deletions
src/main/java/gov/usgs/earthquake/nshmp/DisaggCalc.java
src/main/java/gov/usgs/earthquake/nshmp/HazardCalc.java
+5
-4
5 additions, 4 deletions
src/main/java/gov/usgs/earthquake/nshmp/HazardCalc.java
with
14 additions
and
11 deletions
src/main/java/gov/usgs/earthquake/nshmp/DisaggCalc.java
+
9
−
7
View file @
a9a2b4df
...
@@ -280,7 +280,7 @@ public class DisaggCalc {
...
@@ -280,7 +280,7 @@ public class DisaggCalc {
log
.
info
(
PROGRAM
+
" (return period): calculating ..."
);
log
.
info
(
PROGRAM
+
" (return period): calculating ..."
);
HazardExport
handler
=
HazardExport
.
create
(
model
,
config
,
sites
,
log
);
HazardExport
handler
=
HazardExport
.
create
(
model
,
config
,
sites
);
Path
disaggDir
=
handler
.
outputDir
().
resolve
(
"disagg"
);
Path
disaggDir
=
handler
.
outputDir
().
resolve
(
"disagg"
);
Files
.
createDirectory
(
disaggDir
);
Files
.
createDirectory
(
disaggDir
);
...
@@ -310,17 +310,18 @@ public class DisaggCalc {
...
@@ -310,17 +310,18 @@ public class DisaggCalc {
GSON
.
toJson
(
response
,
writer
);
GSON
.
toJson
(
response
,
writer
);
writer
.
close
();
writer
.
close
();
if
(
i
%
logInterval
==
0
)
{
int
count
=
i
+
1
;
if
(
count
%
logInterval
==
0
)
{
log
.
info
(
String
.
format
(
log
.
info
(
String
.
format
(
" %s of %s sites completed in %s"
,
" %s of %s sites completed in %s"
,
i
+
1
,
sites
.
size
(),
stopwatch
));
count
,
sites
.
size
(),
stopwatch
));
}
}
}
}
handler
.
expire
();
handler
.
expire
();
log
.
info
(
String
.
format
(
log
.
info
(
String
.
format
(
PROGRAM
+
" (return period): %s sites completed in %s"
,
PROGRAM
+
" (return period): %s sites completed in %s"
,
handler
.
resultCount
(),
handler
.
elapsedTime
()));
sites
.
size
(),
stopwatch
.
stop
()));
exec
.
shutdown
();
exec
.
shutdown
();
return
handler
.
outputDir
();
return
handler
.
outputDir
();
...
@@ -396,16 +397,17 @@ public class DisaggCalc {
...
@@ -396,16 +397,17 @@ public class DisaggCalc {
GSON
.
toJson
(
response
,
writer
);
GSON
.
toJson
(
response
,
writer
);
writer
.
close
();
writer
.
close
();
if
(
i
%
logInterval
==
0
)
{
int
count
=
i
+
1
;
if
(
count
%
logInterval
==
0
)
{
log
.
info
(
String
.
format
(
log
.
info
(
String
.
format
(
" %s of %s sites completed in %s"
,
" %s of %s sites completed in %s"
,
i
+
1
,
sites
.
size
(),
stopwatch
));
count
,
sites
.
size
(),
stopwatch
));
}
}
}
}
log
.
info
(
String
.
format
(
log
.
info
(
String
.
format
(
PROGRAM
+
" (IML): %s sites completed in %s"
,
PROGRAM
+
" (IML): %s sites completed in %s"
,
sites
.
size
(),
stopwatch
));
sites
.
size
(),
stopwatch
.
stop
()
));
exec
.
shutdown
();
exec
.
shutdown
();
return
outDir
;
return
outDir
;
...
...
This diff is collapsed.
Click to expand it.
src/main/java/gov/usgs/earthquake/nshmp/HazardCalc.java
+
5
−
4
View file @
a9a2b4df
...
@@ -172,7 +172,7 @@ public class HazardCalc {
...
@@ -172,7 +172,7 @@ public class HazardCalc {
log
.
info
(
"Threads: "
+
((
ThreadPoolExecutor
)
exec
).
getCorePoolSize
());
log
.
info
(
"Threads: "
+
((
ThreadPoolExecutor
)
exec
).
getCorePoolSize
());
log
.
info
(
PROGRAM
+
": calculating ..."
);
log
.
info
(
PROGRAM
+
": calculating ..."
);
HazardExport
handler
=
HazardExport
.
create
(
model
,
config
,
sites
,
log
);
HazardExport
handler
=
HazardExport
.
create
(
model
,
config
,
sites
);
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
);
...
@@ -184,10 +184,11 @@ public class HazardCalc {
...
@@ -184,10 +184,11 @@ public class HazardCalc {
Site
site
=
sites
.
get
(
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
)
{
int
count
=
i
+
1
;
if
(
count
%
logInterval
==
0
)
{
log
.
info
(
String
.
format
(
log
.
info
(
String
.
format
(
" %s of %s sites completed in %s"
,
" %s of %s sites completed in %s"
,
i
+
1
,
sites
.
size
(),
stopwatch
));
count
,
sites
.
size
(),
stopwatch
));
}
}
}
}
/* Block shutdown until last task is returned. */
/* Block shutdown until last task is returned. */
...
@@ -197,7 +198,7 @@ public class HazardCalc {
...
@@ -197,7 +198,7 @@ public class HazardCalc {
exec
.
shutdown
();
exec
.
shutdown
();
log
.
info
(
String
.
format
(
log
.
info
(
String
.
format
(
PROGRAM
+
": %s sites completed in %s"
,
PROGRAM
+
": %s sites completed in %s"
,
handler
.
resultCount
(),
handler
.
elapsedTime
()));
handler
.
resultCount
(),
stopwatch
.
stop
()));
return
outputDir
;
return
outputDir
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment