Skip to content

Commit 718a1d3

Browse files
fix: add log message when host-to-domain graph conversion has finished
- add log message that files are written (sorted and compressed) after Java tool HostToDomainGraph is finished - log if the background processes performing sorting and compression have been finished
1 parent 6f0bca5 commit 718a1d3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/script/host2domaingraph.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,4 +140,8 @@ fi
140140
<(zcat $_EDGES) \
141141
>(sort $SORTOPTS -t$'\t' -k1,1n -k2,2n -s -u | gzip >"$OUTPUTDIR"/edges.txt.gz)
142142

143+
echo "Waiting for data to be written to disk..."
143144
wait # for subshells to finish
145+
146+
echo "Finished aggregation of host-level graph on the domain level:"
147+
ls -l "$OUTPUTDIR"/{vertices,edges}.txt.gz

0 commit comments

Comments
 (0)