I am using a uniform partitioning scheme for my stateful services and I am succesfully making backing up and restoring the state to/from Azure Blob Storage. The process depends on the partitionId to identify to container in which the backups for particular partition are stored.
The above works great assuming the cluster is always live and the partitionIds are never changed. Nevertheless I've been bumping my head how to be able to restore my state even if the whole cluster went down (which in turn leads to totally different partitionIds in the re-created cluster)
Any ideas... anyone :)?
Thanks in advance!