GlusterFS: Increase snapshot delete job timeout to two hours

Increase the timeout for Nova snapshot delete operations from ten
minutes to two hours.  This helps prevent Cinder from terminating
operations prematurely that are still being processed by Nova.

It is not uncommon for snapshot delete jobs to run for longer than
ten minutes depending on the size of the snapshot and speed of the
storage backend.

This will be followed up with a more robust mechanism to keep track
of snapshot job progress as a later effort.

Related-Bug: 1273894

Change-Id: I1ad52568aed1ce1bf593e71704e481b6fe5f44fb
This commit is contained in:
Eric Harney 2014-02-26 11:38:29 -05:00
parent 09855d8484
commit 5c79c08f7b
1 changed files with 1 additions and 1 deletions

View File

@ -799,7 +799,7 @@ class GlusterfsDriver(nfs.RemoteFsDriver):
# An update of progress = '90%' means that Nova is done
seconds_elapsed = 0
increment = 1
timeout = 600
timeout = 7200
while True:
s = db.snapshot_get(context, snapshot['id'])