diff options
| author | Kotresh H R <khiremat@redhat.com> | 2014-04-24 14:21:46 +0530 | 
|---|---|---|
| committer | Anand Avati <avati@redhat.com> | 2014-04-25 13:28:01 -0700 | 
| commit | 40675af8b4a1a90331e353295c75c0ea63457cf6 (patch) | |
| tree | 32ea7d715805978f81e32a32eb706797ad260791 | |
| parent | 841ac48b413f0e108d25af36429568b6d34dab39 (diff) | |
feature/changelog: Change default rollover and fsync-interval time
  This will change the following default configurables.
   1. rollover-time: from 60 to 15.
   2. fsync-interval: from 0 to 5.
Change-Id: I9c8db01376967c4f19547ec87f54833f8b139d29
Signed-off-by: Kotresh H R <khiremat@redhat.com>
Reviewed-on: http://review.gluster.org/7545
Reviewed-by: Venky Shankar <vshankar@redhat.com>
Tested-by: Venky Shankar <vshankar@redhat.com>
| -rw-r--r-- | xlators/features/changelog/src/changelog.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/xlators/features/changelog/src/changelog.c b/xlators/features/changelog/src/changelog.c index 5fe3b436224..3e40984f6de 100644 --- a/xlators/features/changelog/src/changelog.c +++ b/xlators/features/changelog/src/changelog.c @@ -1553,13 +1553,13 @@ struct volume_options options[] = {           .description = "encoding type for changelogs"          },          {.key = {"rollover-time"}, -         .default_value = "60", +         .default_value = "15",           .type = GF_OPTION_TYPE_TIME,           .description = "time to switch to a new changelog file (in seconds)"          },          {.key = {"fsync-interval"},           .type = GF_OPTION_TYPE_TIME, -         .default_value = "0", +         .default_value = "5",           .description = "do not open CHANGELOG file with O_SYNC mode."                          " instead perform fsync() at specified intervals"          },  | 
