I am trying to migrate some data from a JSON file to Cosmos DB using Data Migration Tool, when I tried to define the partition key with either single or a combination of my column name, every time I am getting undefined partition key after migration, how could I correct this issue?
Note here I'll have to use Bulk import (single partition collections) options, because I need to execute my customized stored procedure for nested array import, I cannot use sequential record import as I know the same partition function works very well there.
So here I am setting my partition key to be "/item/vid":
After migration, my collection shows "_partitionKey" instead of "/item/vid" there:
item/vid
- Nick Chapsas