microsoft / durabletask-mssql

Microsoft SQL storage provider for Durable Functions and the Durable Task Framework
MIT License
87 stars 32 forks source link

Lack of ability to store Tags on OrchestrationInstance #61

Open jundayin opened 2 years ago

jundayin commented 2 years ago

Currently SqlOrchestrationService does not process and store Tags on orchestration instance creation. While it is a key to store extensional data shared within an orchestration instance.

ankitjain91 commented 2 years ago

@cgillum Can we get an update on this? Also, how do we set the extension data?

cgillum commented 2 years ago

I can confirm that this support is currently missing. To implement it, we'll need to decide on the best way to store this data in SQL (serialized blob vs. structured key-value rows) and then update the appropriate SqlUtils code to read/write this data to/from the tables.