Hello team, I have a few logically isolated DAGs, ...
# ask-community
m
Hello team, I have a few logically isolated DAGs, and some of the asset names are duplicated. These DAGs use separate group_name. I also added key_prefix. And still getting key duplicate issues. What is the recommended way to “namespace” isolated DAGs?
Copy code
all_assets = [
    * load_assets_from_modules(
        [fake_salary_data], 
        group_name="fake_salary_data",
        key_prefix=["1"]
    ),
    * load_assets_from_modules(
        [fake_salary_data_2], 
        group_name="fake_salary_data_2",
        key_prefix=["2"]
    )
]