Hi all, I ran into an issue with <SnowflakeTargetC...
# ask-community
v
Hi all, I ran into an issue with SnowflakeTargetConfigs. I tried setting the
threads
value to 12 in dbt profile but it shows this ValueError
ValueError: The keyword, threads, has already been provided in TargetConfigs; remove duplicated keywords to continue
What I did is below. Does anyone know what I did wrong here? Thank you!!
Copy code
target_configs = SnowflakeTargetConfigs(
        connector=connector,
        extras={"threads": 12},
    )