Skip to content

Commit 227c5a7

Browse files
authored
The default chunks of clone_data should be time=1. (#306)
I just verified this and it looks like in the OSN pod, chunks are `time=1`, but by default, we write `time=10` chunks. I want to remedy this so we don't make any accidents when automating are testing setup.
1 parent c90b762 commit 227c5a7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/clone_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def main(args: argparse.Namespace) -> None:
9595
default=None,
9696
help="end index for data.isel() along time dimension.",
9797
)
98-
parser.add_argument("--write_time_chunks", type=int, default=10)
98+
parser.add_argument("--write_time_chunks", type=int, default=1)
9999
parser.add_argument("--compact_variables", action="store_true")
100100
parser.add_argument("--local_cluster", action="store_true")
101101

0 commit comments

Comments
 (0)