Reputation: 1
I can't map drift my columns in ADF data flow. I'm able to manually, but this isn't possible as I have 1020 columns. File is .csv
I see a message: 'This drifted column is not in the source schema and therefore can only be referenced with pattern matching expressions'
I was hoping to have a map drifted data flow from my source data.
Upvotes: 0
Views: 793
Reputation: 3838
With > 1k columns, you should consider NOT mapping those columns. Just use column patterns inside your transformation expressions to access columns. Otherwise, ADF will have to materialize the entire 1k+ columns as a physical projection.
Upvotes: 0