I am trying to set up a simple data factory pipeline with intention of copying Azure table storage to Cosmos DB. Azure table storage has a system managed field, Timestamp. When flow runs and Cosmos db is populated with the data Timestamp is always "Timestamp": "1970-01-01T00:00:00Z". Seems that it is not getting into Cosmos DB correctly.
How to reproduce: create a Azure table, add a few entries. Create Cosmos db instance and a new collection. Create Dat Factory flow. Note how Timestamp looks when exported.
I tried to change Timestamp data type from DateTime to DateTimeOffset as well as exporting it as a string. I also tried to specify the date format. The result is the same.
I suspect that Timestamp is a reserved word in Cosmos DB and somehow it fails to insert correct value.