英文:
Determining disk size for an AKS cluster of 10 nodes
问题
我有大约30个无状态的微服务。所有这些应用程序将数据写入数据存储,不保存任何状态。
我有一个托管这些应用程序的AKS集群。我选择的机器是E系列,具有32GB RAM和8个核心以及100GB硬盘。这似乎已经足够好了,机器的平均负载在25-50%之间。
在所有这些情况下,我真的需要硬盘吗?如果需要,那么是出于什么原因?
英文:
I have some 30 Microservices which are all stateless. All these app write data to a data store and don't store any state.
I have an AKS cluster which hosts these app . The machines I've chosen is an E series with 32 Ram and 8 cores and 100gb HD. This seems to be a good enough and machines have a load of 25-50% avg
In all of this do i really need a hard disk at all and if I do then for what reason
答案1
得分: 1
事实上,您不需要硬盘。检查AKS硬盘监控。
在更新集群之前,请确保您的PV中没有本地数据。如果尚未这样做,我的建议是限制PV创建的权限。
英文:
In fact, you don't need a hard disk. Check the AKS disk monitoring.
Before updating the cluster, make sure none of your PVs are local. My advice would be to restrict permissions on PV creation if this is not already the case.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论