简体   繁体   中英

Azure Service Fabric autoscaling of stateful services

Read this article on autoscaling in Service Fabric. Now I am wondering about how this works with stateful services. It is possible to add more partitions but what about redistributing the data?

Example:

2 Partitions with range 0-99 Due to autoscaling we get a 3rd partition, what happens with data in partition 1 and 2?

The partition scheme & range you have described cannot be autoscaled.

  • Named partition scheme must be used for the service.
  • Partition names must be consecutive integer numbers, like "0", "1", ... First partition name must be "0".

Data in partition 1 & 2 would be unchanged in the event of a partition being added if the above conditions are satisfied.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM