Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
davedavemckay committed Jan 15, 2025
1 parent a1db701 commit c41a987
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion csd3-side/scripts/lsst-backup.py
Original file line number Diff line number Diff line change
Expand Up @@ -1226,7 +1226,7 @@ def process_files(s3, bucket_name, api, current_objects, exclude, local_dir, des
print(f'Loaded collate list from {collate_list_file}.', flush=True)
# now using pandas for both current_objects and to_collate - this could be re-written to using vectorised operations
# client.scatter([current_objects,to_collate])
to_collate = dd.from_pandas(to_collate, npartitions=client.scheduler_info()['workers']*2)
to_collate = dd.from_pandas(to_collate, npartitions=len(client.scheduler_info()['workers'])*2)
# print('Created Dask dataframe for to_collate.', flush=True)
print('Created Pandas dataframe for to_collate.', flush=True)

Expand Down

0 comments on commit c41a987

Please sign in to comment.