Skip to content

Commit 925357d

Browse files
authored
Streaming Dataset: tiny optimisations (#19342)
1 parent 0a75d3b commit 925357d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lightning/data/streaming/downloader.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def download_file(self, remote_filepath: str, local_filepath: str) -> None:
5959
with FileLock(local_filepath + ".lock", timeout=0):
6060
if self._s5cmd_available:
6161
proc = subprocess.Popen(
62-
f"s5cmd --numworkers 64 cp {remote_filepath} {local_filepath}",
62+
f"s5cmd cp {remote_filepath} {local_filepath}",
6363
shell=True,
6464
stdout=subprocess.PIPE,
6565
)

0 commit comments

Comments
 (0)