-
Notifications
You must be signed in to change notification settings - Fork 147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
reduce cpu, memory usage in CSI drivers on Windows #2010
Comments
The Kubernetes project currently lacks enough contributors to adequately respond to all issues. This bot triages un-triaged issues according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
The Kubernetes project currently lacks enough contributors to adequately respond to all issues. This bot triages un-triaged issues according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues. This bot triages un-triaged issues according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle rotten |
Is your feature request related to a problem?/Why is this needed
powershell command would consume more memory and cpu on Windows, it's better replace with Golang API in Windows host process mode
Test-Path $Env:remotepath
// PathValid determines whether all elements of a path exist
// https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/test-path?view=powershell-7
// for a remote path, determines whether connection is ok
// e.g. in a SMB server connection, if password is changed, connection will be lost, this func will return false
replace with
os.Stat
, related to fix: mount-utils: Detect potential stale file handle kubernetes/kubernetes#106906(Get-Item -Path $Env:mount).Target
replace with
os.Readlink
does not work: [WIP] fix: replace Get-Item powershell cmd with golang api azuredisk-csi-driver#2265there are other powershell commands in following code, it's better replacing them all with Golang APIs (search
RunPowershellCmd
)https://github.com/kubernetes-sigs/azurefile-csi-driver/blob/master/pkg/os/smb/smb.go
Describe the solution you'd like in detail
Describe alternatives you've considered
Additional context
The text was updated successfully, but these errors were encountered: