High CPU usage of java application when mounting file share into pod #1458
-
Beta Was this translation helpful? Give feedback.
Answered by
andyzhangx
Sep 22, 2023
Replies: 1 comment 2 replies
-
@HerrDerb does the graph shows the cpu usage of azure file driver controller or your application? if you are on AKS, the azure file driver controller is not visible to the user. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
you are using inline volume, which means every volume would have a standalone azure file mount, that would consume more resources, pls use pv/pvc: https://learn.microsoft.com/en-us/azure/aks/azure-csi-files-storage-provision#mount-file-share-as-a-persistent-volume, one pv represents one file share, so there is only one azure file mount per node for one file share, that could reduce the azure file mount num a lot.