diff --git a/swh/dataset/cli.py b/swh/dataset/cli.py index 495aa9a0897fc699125279c4cfa02559106b8997..65800252b4f3de79c7de499d3fd1a988cd36795f 100644 --- a/swh/dataset/cli.py +++ b/swh/dataset/cli.py @@ -239,7 +239,6 @@ def run_export_graph( parallel_exporters[obj_type].get_offsets() for obj_type, parallel_exporter in parallel_exporters.items(): - print("Exporting {}:".format(obj_type)) parallel_exporter.run() diff --git a/swh/dataset/journalprocessor.py b/swh/dataset/journalprocessor.py index b29aeb7a919af9092446256c45a1bbaa5a617e41..4c51b0c24ef15d5e76e6e8e8a8febc8221a1e51e 100644 --- a/swh/dataset/journalprocessor.py +++ b/swh/dataset/journalprocessor.py @@ -290,7 +290,7 @@ class ParallelJournalProcessor: tqdm.tqdm( executor.map(fetch_insert_partition_id, partitions.keys()), total=len(partitions), - desc=" - Offset", + desc=f" - {self.obj_type} offsets", ) ) client.close() @@ -343,7 +343,7 @@ class ParallelJournalProcessor: d = {} active_workers = self.processes offset_diff = sum((hi - lo) for lo, hi in self.offsets.values()) - desc = " - Export" + desc = f" - {self.obj_type} export" with tqdm.tqdm(total=offset_diff, desc=desc, unit_scale=True) as pbar: while active_workers: item = queue.get()