Hello everyone, is it possible to define different...
# ask-community
q
Hello everyone, is it possible to define different partitions in SDAs declared via
@multi_asset
? I'm currently defined SDA like this:
Copy code
@multi_asset(
    group_name=asset_group,
    compute_kind="python",
    can_subset=True,
    outs={
        c["table"]: AssetOut(
            io_manager_key="bigquery_io_manager",
            key_prefix=c["dataset"],
            metadata=c["metadata"],
            is_required=False,
        )
        for c in config.values()
    },
    partitions_def=DailyPartitionsDefinition(
        start_date="2023-01-01",
        end_date="2023-01-04",
    ),
)
j
hey @Quentin Gaborit - specifying a different partition for each asset in a multi asset is not supported at the time