We want to migrate all currently executing durable functions from a function app to a newly developed function app.
The states of the active durable functions are stored in a table. This means that we just can start the new durable function and it will be able to determine its state. But this means we have to stop a lot of currently executing durable functions.
Our idea was to delete the tables "DurableFunctionsHubHistory" and "DurableFunctionsHubInstances" in the associated storage account. There are no other function apps associated with this storage account which use durable functions.
Is this safe to do or is there a better way to stop a large amount of durable functions?