You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
disk already found. we check for ready status and return error if not ready.
no existing disk found, so we trigger an insert op and wait for the op to complete (timeout for the poll operation for insert op is 5 mins). The wait for op gets cancelled due to a short deadline of set in the context (10 secs), by the client csi-provisioner sidecar.
By increasing the timeout from 10 secs to the order of minutes, we significantly reduce round-trips os retries due to diskNotReady error.
Provisioner and Attacher sidecars timeout need to be increased.
The text was updated successfully, but these errors were encountered:
While fixing #526, observed that Create Volume from a snapshot datasource takes time to get provisioned.
following behavior in provisioning seen in GCE PD CSI driver:
there are 2 cases for a CreateVolume call (https://github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/blob/master/pkg/gce-pd-csi-driver/controller.go#L88):
disk already found. we check for ready status and return error if not ready.
no existing disk found, so we trigger an insert op and wait for the op to complete (timeout for the poll operation for insert op is 5 mins). The wait for op gets cancelled due to a short deadline of set in the context (10 secs), by the client csi-provisioner sidecar.
By increasing the timeout from 10 secs to the order of minutes, we significantly reduce round-trips os retries due to diskNotReady error.
Provisioner and Attacher sidecars timeout need to be increased.
The text was updated successfully, but these errors were encountered: