diff options
| -rw-r--r-- | libglusterfs/src/gfdb/gfdb_sqlite3.h | 4 | ||||
| -rw-r--r-- | xlators/features/changetimerecorder/src/changetimerecorder.c | 4 | ||||
| -rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-volume-set.c | 12 | 
3 files changed, 10 insertions, 10 deletions
diff --git a/libglusterfs/src/gfdb/gfdb_sqlite3.h b/libglusterfs/src/gfdb/gfdb_sqlite3.h index 4d70a60e431..52b84da251c 100644 --- a/libglusterfs/src/gfdb/gfdb_sqlite3.h +++ b/libglusterfs/src/gfdb/gfdb_sqlite3.h @@ -170,8 +170,8 @@ do {\  #define GF_SQL_DEFAULT_DBPATH                   ""  #define GF_SQL_DEFAULT_PAGE_SIZE                "4096" -#define GF_SQL_DEFAULT_CACHE_SIZE               "1000" -#define GF_SQL_DEFAULT_WAL_AUTOCHECKPOINT       "1000" +#define GF_SQL_DEFAULT_CACHE_SIZE               "12500" +#define GF_SQL_DEFAULT_WAL_AUTOCHECKPOINT       "25000"  #define GF_SQL_DEFAULT_JOURNAL_MODE             GF_SQL_JM_WAL  #define GF_SQL_DEFAULT_SYNC                     GF_SQL_SYNC_OFF  #define GF_SQL_DEFAULT_AUTO_VACUUM              GF_SQL_AV_NONE diff --git a/xlators/features/changetimerecorder/src/changetimerecorder.c b/xlators/features/changetimerecorder/src/changetimerecorder.c index 933f496028c..4e4ea851a86 100644 --- a/xlators/features/changetimerecorder/src/changetimerecorder.c +++ b/xlators/features/changetimerecorder/src/changetimerecorder.c @@ -2441,11 +2441,11 @@ struct volume_options options[] = {          },          { .key  = {GFDB_SQL_PARAM_WAL_AUTOCHECK},            .type = GF_OPTION_TYPE_INT, -          .default_value = "1000" +          .default_value = "25000"          },          { .key  = {GFDB_SQL_PARAM_CACHE_SIZE},            .type = GF_OPTION_TYPE_INT, -          .default_value = "1000" +          .default_value = "12500"          },          { .key  = {GFDB_SQL_PARAM_PAGE_SIZE},            .type = GF_OPTION_TYPE_INT, diff --git a/xlators/mgmt/glusterd/src/glusterd-volume-set.c b/xlators/mgmt/glusterd/src/glusterd-volume-set.c index 53e8a441a2f..0c67135db3f 100644 --- a/xlators/mgmt/glusterd/src/glusterd-volume-set.c +++ b/xlators/mgmt/glusterd/src/glusterd-volume-set.c @@ -2839,29 +2839,29 @@ struct volopt_map_entry glusterd_volopt_map[] = {          },          { .key         = "features.ctr-sql-db-cachesize",            .voltype     = "features/changetimerecorder", -          .value       = "1000", +          .value       = "12500",            .option      = "sql-db-cachesize",            .validate_fn = validate_ctr_sql_params,            .op_version  = GD_OP_VERSION_3_7_7,            .description = "Defines the cache size of the sqlite database of "                           "changetimerecorder xlator."                           "The input to this option is in pages." -                         "Each page is 4096 bytes. Default value is 1000 " -                         "pages i.e ~ 4 MB. " +                         "Each page is 4096 bytes. Default value is 12500 " +                         "pages."                           "The max value is 262144 pages i.e 1 GB and "                           "the min value is 1000 pages i.e ~ 4 MB. "          },          { .key         = "features.ctr-sql-db-wal-autocheckpoint",            .voltype     = "features/changetimerecorder", -          .value       = "1000", +          .value       = "25000",            .option      = "sql-db-wal-autocheckpoint",            .validate_fn = validate_ctr_sql_params,            .op_version  = GD_OP_VERSION_3_7_7,            .description = "Defines the autocheckpoint of the sqlite database of "                           " changetimerecorder. "                           "The input to this option is in pages. " -                         "Each page is 4096 bytes. Default value is 1000 " -                         "pages i.e ~ 4 MB." +                         "Each page is 4096 bytes. Default value is 25000 " +                         "pages."                           "The max value is 262144 pages i.e 1 GB and "                           "the min value is 1000 pages i.e ~4 MB."          },  | 
