Package com.gpudb.protocol
Class AdminVerifyDbRequest.Options
- java.lang.Object
-
- com.gpudb.protocol.AdminVerifyDbRequest.Options
-
- Enclosing class:
- AdminVerifyDbRequest
public static final class AdminVerifyDbRequest.Options extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static StringCONCURRENT_SAFEWhenTRUE, allows this endpoint to be run safely with other concurrent database operations.static StringDELETE_ORPHANED_TABLESIfTRUE, orphaned table directories found on workers for which there is no corresponding metadata will be deleted.static StringFALSEstatic StringREBUILD_ON_ERROR[DEPRECATED -- Use the Rebuild DB feature of GAdmin instead.].static StringTABLE_EXCLUDESComma-separated list of table names to exclude when verifying table consistency on wokers.static StringTABLE_INCLUDESComma-separated list of table names to include when verifying table consistency on wokers.static StringTRUEstatic StringVERIFY_NULLSWhenTRUE, verifies that null values are set to zero.static StringVERIFY_ORPHANED_TABLES_ONLYIfTRUE, only the presence of orphaned table directories will be checked, all persistence and table consistency checks will be skipped.static StringVERIFY_PERSISTWhenTRUE, persistent objects will be compared against their state in memory and workers will be checked for orphaned table data in persist.static StringVERIFY_RANK0IfTRUE, compare rank0 table metadata against workers' metadata.
-
-
-
Field Detail
-
REBUILD_ON_ERROR
public static final String REBUILD_ON_ERROR
[DEPRECATED -- Use the Rebuild DB feature of GAdmin instead.]. Supported values: The default value isFALSE.- See Also:
- Constant Field Values
-
TRUE
public static final String TRUE
- See Also:
- Constant Field Values
-
FALSE
public static final String FALSE
- See Also:
- Constant Field Values
-
VERIFY_NULLS
public static final String VERIFY_NULLS
- See Also:
- Constant Field Values
-
VERIFY_PERSIST
public static final String VERIFY_PERSIST
WhenTRUE, 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 setCONCURRENT_SAFEinoptionstoTRUEor place the database offline. Supported values: The default value isFALSE.- See Also:
- Constant Field Values
-
CONCURRENT_SAFE
public static final String CONCURRENT_SAFE
WhenTRUE, 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 isTRUE.- See Also:
- Constant Field Values
-
VERIFY_RANK0
public static final String VERIFY_RANK0
IfTRUE, compare rank0 table metadata against workers' metadata. Supported values: The default value isFALSE.- See Also:
- Constant Field Values
-
DELETE_ORPHANED_TABLES
public static final String DELETE_ORPHANED_TABLES
IfTRUE, orphaned table directories found on workers for which there is no corresponding metadata will be deleted. It is recommended to run this while the database is offline OR setCONCURRENT_SAFEinoptionstoTRUE. Supported values: The default value isFALSE.- See Also:
- Constant Field Values
-
VERIFY_ORPHANED_TABLES_ONLY
public static final String VERIFY_ORPHANED_TABLES_ONLY
IfTRUE, only the presence of orphaned table directories will be checked, all persistence and table consistency checks will be skipped. Supported values: The default value isFALSE.- See Also:
- Constant Field Values
-
TABLE_INCLUDES
public static final String TABLE_INCLUDES
Comma-separated list of table names to include when verifying table consistency on wokers. Cannot be used simultaneously withTABLE_EXCLUDES.- See Also:
- Constant Field Values
-
TABLE_EXCLUDES
public static final String TABLE_EXCLUDES
Comma-separated list of table names to exclude when verifying table consistency on wokers. Cannot be used simultaneously withTABLE_INCLUDES.- See Also:
- Constant Field Values
-
-