Skip to content
Snippets Groups Projects
Commit 4fff334a authored by vlorentz's avatar vlorentz
Browse files

Add some defaults values to simplify automation

parent 78bda13b
No related branches found
No related tags found
No related merge requests found
......@@ -709,6 +709,9 @@ def luigi(
local_graph_path=dataset_path / "compressed",
derived_datasets_path=dataset_path,
topological_order_dir=dataset_path / "topology/",
aggregate_datasets_path=dataset_path / "aggregate/",
popular_content_names_path=dataset_path / "popular-content-names/",
provenance_dir=dataset_path / "provenance",
origin_contributors_path=dataset_path / "contribution_graph.csv.zst",
origin_urls_path=dataset_path / "origin_urls.csv.zst",
export_id=f"{export_name}-{secrets.token_hex(10)}",
......
......@@ -83,7 +83,12 @@ class RunNewGraph(luigi.Task):
RunExportAll(),
UploadExportToS3(),
UploadGraphToS3(),
UploadGenerationsToS3(),
UploadGenerationsToS3(
direction="forward", object_types="dir,rev,rel,snp,ori"
),
UploadGenerationsToS3(
direction="backward", object_types="dir,rev,rel,snp,ori"
),
RunAggregatedDatasets(),
]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment