ADF Pipeline Error:
AzurePostgreSqlNpgsqlPartitionColumnNameNotProvided
What does this error mean?
The ADF copy activity is configured for parallel copy from Azure PostgreSQL but the required partition column name was not specified.
Common causes
- 1Parallel copy mode was enabled for the PostgreSQL source but the partition column name field was left empty
- 2Dynamic range partitioning was selected without specifying which column to use for range partitioning
How to fix it
- 1In the copy activity source settings, specify a numeric or datetime column to use as the partition column for parallel copy.
- 2Set the partition upper bound and lower bound to match the data range in the selected column.
- 3If no suitable partition column exists, disable parallel copy and use sequential copy.