feat(etl): report 2206
[csit.git] / csit.infra.etl / iterative_rls2206.py
similarity index 99%
rename from csit.infra.etl/iterative_rls2202.py
rename to csit.infra.etl/iterative_rls2206.py
index 13b6f42..f4625cf 100644 (file)
@@ -141,7 +141,7 @@ paths = wr.s3.list_objects(
     ignore_empty=True
 )
 
-filtered_paths = [path for path in paths if "report-iterative-2202" in path]
+filtered_paths = [path for path in paths if "report-iterative-2206" in path]
 
 for schema_name in ["mrr", "ndrpdr", "soak"]:
     out_sdf = process_json_to_dataframe(schema_name, filtered_paths)
@@ -156,7 +156,7 @@ for schema_name in ["mrr", "ndrpdr", "soak"]:
     try:
         wr.s3.to_parquet(
             df=out_sdf.toPandas(),
-            path=f"s3://{S3_DOCS_BUCKET}/csit/parquet/iterative_rls2202",
+            path=f"s3://{S3_DOCS_BUCKET}/csit/parquet/iterative_rls2206",
             dataset=True,
             partition_cols=["test_type", "year", "month", "day"],
             compression="snappy",