Skip to content

Commit

Permalink
Update deprecated TSERV_TABLET_SPLIT_FINDMIDPOINT_MAXOPEN prop (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
DomGarguilo committed Apr 15, 2024
1 parent 898cded commit 53e75d3
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@ static Setting s(Property property, long min, long max) {
@SuppressWarnings("deprecation")
final Property TSERV_WORKQ_THREADS_deprecated = Property.TSERV_WORKQ_THREADS;

@SuppressWarnings("deprecation")
final Property TSERV_TABLET_SPLIT_FINDMIDPOINT_MAXOPEN_deprecated =
Property.TSERV_TABLET_SPLIT_FINDMIDPOINT_MAXOPEN;

// @formatter:off
final Setting[] settings = {
s(Property.TSERV_BLOOM_LOAD_MAXCONCURRENT, 1, 10),
Expand All @@ -90,7 +94,7 @@ static Setting s(Property property, long min, long max) {
s(Property.TSERV_MINTHREADS, 1, 100),
s(Property.TSERV_SESSION_MAXIDLE, 100, 5 * 60 * 1000),
s(Property.TSERV_WAL_SORT_BUFFER_SIZE, 1024 * 1024, 1024 * 1024 * 1024L),
s(Property.TSERV_TABLET_SPLIT_FINDMIDPOINT_MAXOPEN, 5, 100),
s(TSERV_TABLET_SPLIT_FINDMIDPOINT_MAXOPEN_deprecated, 5, 100),
s(Property.TSERV_WAL_BLOCKSIZE, 1024 * 1024,1024 * 1024 * 1024 * 10L),
s(TSERV_WORKQ_THREADS_deprecated, 1, 10),
s(Property.MANAGER_BULK_TIMEOUT, 10, 600),
Expand Down

0 comments on commit 53e75d3

Please sign in to comment.