diff options
author | Tschaen, Brendan <ctschaen@att.com> | 2019-07-09 15:02:22 -0400 |
---|---|---|
committer | Tschaen, Brendan <ctschaen@att.com> | 2019-07-25 13:45:46 -0400 |
commit | 32dbfd3759fc2aa20e8f03637b8fcc281c3730e2 (patch) | |
tree | b55da82bce91ea05df0e7a5e3aefaa0591fc5fee /mdbc-server/src/main/resources/mdbc.properties | |
parent | afb06f611545e83494622f6a16f6966b93c0e418 (diff) |
Split partition using MRU
Most recently used approach to splitting a partition.
Split happens when committing, we see what we've used
from existing partition and splits accordingly. This
feature is configurable via the mdbc.properties file.
Issue-ID: MUSIC-404
Signed-off-by: Tschaen, Brendan <ctschaen@att.com>
Change-Id: Ie33f4d1ae0e6253678062558015c2a10c4fae614
Diffstat (limited to 'mdbc-server/src/main/resources/mdbc.properties')
-rwxr-xr-x | mdbc-server/src/main/resources/mdbc.properties | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mdbc-server/src/main/resources/mdbc.properties b/mdbc-server/src/main/resources/mdbc.properties index 49fdfd2..4d69da6 100755 --- a/mdbc-server/src/main/resources/mdbc.properties +++ b/mdbc-server/src/main/resources/mdbc.properties @@ -15,4 +15,8 @@ DEFAULT_DRIVERS=\ org.mariadb.jdbc.Driver \ org.postgresql.Driver -txdaemonsleeps=15 +# whether or not to split the partitions +partition_splitting=true + +#time, in seconds, between when the daemon catches up +txdaemonsleeps=15
\ No newline at end of file |