help="Number of cores to include in the pool for local parallel processing. If None, will default to all cores available to the invoking Python process")
help="Number of cores to include in the pool for local parallel processing. If None, will default to all cores available to the invoking Python process")
Converts a GPFS log file to parquet format. The data schema assumes the same policy definition from list-path-external and list-path-dirplus.
Converts a GPFS log file to parquet format. The data schema assumes the same policy definition from list-path-external and list-path-dirplus.
...
@@ -44,6 +53,8 @@ def convert(
...
@@ -44,6 +53,8 @@ def convert(
Directory path in which to store the file. If the directory does not exist, it will be created. If None, the output directory will be set to ./input_file/../../parquet in accordance with our standard organization. By default None
Directory path in which to store the file. If the directory does not exist, it will be created. If None, the output directory will be set to ./input_file/../../parquet in accordance with our standard organization. By default None
output_name : str | Path | None, optional
output_name : str | Path | None, optional
Name of the output file. The name will be automatically appended with .parquet. If None, the name of the input file will be used. By default None
Name of the output file. The name will be automatically appended with .parquet. If None, the name of the input file will be used. By default None
no_clobber : bool, optional
When set to True, if output_dir/output_name.parquet already exists, exit without overwriting the existing file. If False (default), any existing parquet file will be overwritten