We have a CosmosDB Core API instance and are finding it difficult to perform one-off bulk updates of our data, similar to how you use the UPDATE .... SET X = Y command with a relational SQL database. The initial research I performed pointed me in the direction of using Core API over the others because we are not migrating from MongoDB, do not need a graph DB, and wanted all the latest features that the platform has to offer. However, I'm now wishing we would have gone with the MongoDB API as it looks to be very easy to use a Mongo "scratch pad" for executing these types of updates.
Is it only possible to perform these types of one-off bulk updates by creating a stored procedure inside the Azure Data Explorer? This seems extremely inconvenient for simple data updates, and if that is true, I'm surprised Microsoft hasn't released an easier way to do this. Is there an archive of examples somewhere to at least make using stored procedures easier?