You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
so that your command prompt returns and you can monitor progress with
75
+
```
76
+
test_zstash_blocking.sh (BLOCKING|NON_BLOCKING) 2>&1 | tee your_logfile
77
+
```
84
78
85
-
snapshot.sh
86
-
87
-
which will provide a view of both the tarfile cache and the destination
79
+
so that your command prompt returns and you can monitor progress with `snapshot.sh`, which will provide a view of both the tarfile cache and the destination
88
80
directory for delivered tar files. It is also suggested that you name your
89
-
logfile to reflect the date, and whether BLOCKING or not was specified.
90
-
81
+
logfile to reflect the date, and whether BLOCKING or not was specified. Example:
82
+
```bash
83
+
test_zstash_blocking.sh BLOCKING 2>&1| tee test_zstash_blocking_20251020.log
84
+
```
91
85
92
-
FINAL NOTE: In the zstash code, the tar file "MINSIZE" parameter is taken
93
-
to be (int) multiples of 1 GB. During testing, this had been changed to
86
+
FINAL NOTE: In the zstash code, the tar file `MINSIZE` parameter is taken
87
+
to be (int) multiples of 1 GB. During testing, this had been changed to
94
88
"multiple of 100K" for rapid testing. It may be useful to expose this as
0 commit comments