Reliable blob state in Azure Service Fabric?

♀尐吖头ヾ 提交于 2019-12-06 03:56:43

Those are your two best options currently. There isn't a blob state provider or service built in today. If you do store blobs in reliable collections, I would recommend chunking to reduce replication traffic. You may even consider building a blob storage service that uses a reliable dictionary to store chunks, deploy the service with multiple partitions for better distribution, and then provide a client for it that takes a blob, chunks, and distributes.

The web app example backups and restores a service state in a blob storage. You can do the same if you inherit from ActorService instead of Actor. So you are able to make backups to azure storage.

I implemented for my company a failover system which backups in a blob storage. The storage is relativly slow, so it is not recommended to use it as default state location.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!