public static final class AdminVerifyDbRequest.Options extends Object
REBUILD_ON_ERROR
: [DEPRECATED -- Use the Rebuild DB feature of GAdmin
instead.]
Supported values:
The default value is FALSE
.
VERIFY_NULLS
: When true
, verifies that null values are set to
zero
Supported values:
The default value is FALSE
.
VERIFY_PERSIST
: When true
, persistent objects will be compared
against their state in memory and workers will be checked for orphaned
table data in persist. To check for orphaned worker data, either set
concurrent_safe
in options
to true
or place the
database offline.
Supported values:
The default value is FALSE
.
CONCURRENT_SAFE
: When true
, allows this endpoint to be run
safely with other concurrent database operations. Other operations may
be slower while this is running.
Supported values:
The default value is TRUE
.
VERIFY_RANK0
: If true
, compare rank0 table metadata against
workers' metadata
Supported values:
The default value is FALSE
.
DELETE_ORPHANED_TABLES
: If true
, orphaned table directories
found on workers for which there is no corresponding metadata will be
deleted. Must set verify_persist
in options
to true
. It is recommended to run this while the database is offline OR
set concurrent_safe
in options
to true
Supported values:
The default value is FALSE
.
VERIFY_ORPHANED_TABLES_ONLY
: If true
, only the presence of
orphaned table directories will be checked, all persistence checks will
be skipped
Supported values:
The default value is FALSE
.
Map
.
A set of string constants for the parameter options
.Modifier and Type | Field and Description |
---|---|
static String |
CONCURRENT_SAFE
When
true , allows this endpoint to be run safely with other
concurrent database operations. |
static String |
DELETE_ORPHANED_TABLES
If
true , orphaned table directories found on workers for
which there is no corresponding metadata will be deleted. |
static String |
FALSE |
static String |
REBUILD_ON_ERROR
[DEPRECATED -- Use the Rebuild DB feature of GAdmin instead.]
|
static String |
TRUE |
static String |
VERIFY_NULLS
|
static String |
VERIFY_ORPHANED_TABLES_ONLY
|
static String |
VERIFY_PERSIST
When
true , persistent objects will be compared against their
state in memory and workers will be checked for orphaned table data
in persist. |
static String |
VERIFY_RANK0
|
public static final String REBUILD_ON_ERROR
FALSE
.public static final String TRUE
public static final String FALSE
public static final String VERIFY_NULLS
true
, verifies that null values are set to zero
Supported values:
The default value is FALSE
.public static final String VERIFY_PERSIST
true
, persistent objects will be compared against their
state in memory and workers will be checked for orphaned table data
in persist. To check for orphaned worker data, either set concurrent_safe
in options
to true
or place the
database offline.
Supported values:
The default value is FALSE
.public static final String CONCURRENT_SAFE
true
, allows this endpoint to be run safely with other
concurrent database operations. Other operations may be slower while
this is running.
Supported values:
The default value is TRUE
.public static final String VERIFY_RANK0
true
, compare rank0 table metadata against workers'
metadata
Supported values:
The default value is FALSE
.public static final String DELETE_ORPHANED_TABLES
true
, orphaned table directories found on workers for
which there is no corresponding metadata will be deleted. Must set
verify_persist
in options
to true
. It is
recommended to run this while the database is offline OR set concurrent_safe
in options
to true
Supported values:
The default value is FALSE
.public static final String VERIFY_ORPHANED_TABLES_ONLY
true
, only the presence of orphaned table directories
will be checked, all persistence checks will be skipped
Supported values:
The default value is FALSE
.Copyright © 2024. All rights reserved.