Hey, did you find a solution to the caching problem? I have tried to implement a mongo source connector and in the pipeline that I use to output the documents from Mongo to Kafka, I try to add a field when this happened, but new Date() is cached.

“pipeline”: “[{$addFields: {"fullDocument.lastUpdatedOn": {$dateToString: {date: "$fullDocument.lastUpdatedOn"}}, "fullDocument.createdOn": {$dateToString: {date: "$fullDocument.createdOn"}}, "fullDocument.sourcedOn": {$dateToString: {date: new Date()}}}}]”,