diff options
author | Mohit Agrawal <moagrawal@redhat.com> | 2019-09-26 17:52:30 +0530 |
---|---|---|
committer | Mohit Agrawal <moagrawal@redhat.com> | 2019-09-30 08:45:25 +0530 |
commit | c6df9e962483bac5bfcd8916318b19040387ce81 (patch) | |
tree | f8b3de686eee8cf4312cd043345b753fc3b30317 /xlators/storage/posix | |
parent | 257bb3d16b30e60116724e9e906f8d3ecddf313e (diff) |
posix: heketidbstorage bricks go down during PVC creation
Problem: In OCS environment heketidbstorage is detached due
to health_check thread is failed.Sometime aio_write
is not successfully finished within default health-check-timeout
limit and the brick is detached.
Solution: To avoid the issue increase default timeout to 20s
Change-Id: Idff283d5713da571f9d20a6b296274f69c3e5b7b
Fixes: bz#1755900
Signed-off-by: Mohit Agrawal <moagrawal@redhat.com>
Diffstat (limited to 'xlators/storage/posix')
-rw-r--r-- | xlators/storage/posix/src/posix-common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/storage/posix/src/posix-common.c b/xlators/storage/posix/src/posix-common.c index 231723b6bef..c8f92177952 100644 --- a/xlators/storage/posix/src/posix-common.c +++ b/xlators/storage/posix/src/posix-common.c @@ -1246,7 +1246,7 @@ struct volume_options posix_options[] = { {.key = {"health-check-timeout"}, .type = GF_OPTION_TYPE_INT, .min = 0, - .default_value = "10", + .default_value = "20", .validate = GF_OPT_VALIDATE_MIN, .description = "Interval in seconds to wait aio_write finish for health check, " |