Bug - Data Factory Copy Data activity, when source is a Cosmos Dataset it is remembering schema

Anonymous
2021-11-03T02:23:44.23+00:00

This is a clearly reproducible bug.

  1. Create a Cosmos SQL API Linked Service that passes through parameters for it's settings, like so:
    145877-image.png
  2. Create a Cosmos Dataset, that uses the Linked Service, with parameters passed through to it, like so:
    145964-image.png
  3. Create a new pipeline with a Copy data activity. Set up parameters for source and destination tables, like so:
    145839-image.png
  4. In the sink, set it to a SQL database and set up destination. Add a pre-copy script which will drop the table first:
    145971-image.png
  5. Do not specify any mappings. Then we can re-use this for any Cosmos extracts. Click the "Clear" button to make sure there are no mappings:
    145981-image.png
  6. Run the pipeline, extracting data to a new table. The table will be dropped before extraction occurs, then new rows created based on whatever is in the source. All works a-OK.
  7. Add a column to your new SQL table
  8. Rerun the the pipeline. You will now get an error that the new column added is not in the source. This is indicating that our schema is being saved, when in fact, we have purposefully not saved any schema and it should work based solely on what is in the source.

Verify this is a bug by:

  1. Go to the Cosmos Dataset. Click into the Schema and hit "Clear".
    145907-image.png
  2. Go back to the Copy Data activity on your pipeline, go to the mapping, hit "Clear"
  3. Save All
  4. Run the pipeline again - pipeline run is now successful.

The bug is that the the Copy Data activity or the Cosmos Dataset (most likely) is remembering schema and refusing to map even if no mappings are set. Anyone think of a work around?

Azure Data Factory
Azure Data Factory
An Azure service for ingesting, preparing, and transforming data at scale.
10,587 questions
{count} votes

Accepted answer
  1. Anonymous
    2021-11-03T02:37:59.51+00:00

    OK, I actually figured out a workaround. Drop the destination table before running the Copy Data activity (which it should do anyway, but obviously doesn't). So I create a Lookup activity, set the dynamic values to the destination server, then run a query with some dynamic settings, the Dynamic Query value looks like:

    @{concat('DROP TABLE IF EXISTS [',pipeline().parameters.dest_schema,'].[',pipeline().parameters.dest_table,']; SELECT 1 as Col')}

    145940-image.png

    Would much rather this extra step doesn't need to be done, anyone on the Data Factory team confirm this is a bug and will be fixed?

    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.