public enum ConfigurationProperty extends Enum<ConfigurationProperty>
Java class for ConfigurationProperty.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ConfigurationProperty">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="cloudgraph.unique.checks"/>
<enumeration value="cloudgraph.query.fetchtype"/>
<enumeration value="cloudgraph.query.parallelfetch.disposition"/>
<enumeration value="cloudgraph.query.thread.depth.max"/>
<enumeration value="cloudgraph.tombstone.rows"/>
<enumeration value="cloudgraph.tombstone.rows.overwriteable"/>
<enumeration value="cloudgraph.table.namespace.root"/>
<enumeration value="cloudgraph.table.volume.name"/>
<enumeration value="cloudgraph.table.physical.namespace.delim"/>
<enumeration value="cloudgraph.query.threadpool.size.min"/>
<enumeration value="cloudgraph.query.threadpool.size.max"/>
<enumeration value="cloudgraph.connection.tablecache.size.max"/>
<enumeration value="cloudgraph.connection.tablecache.timeout.seconds"/>
<enumeration value="cloudgraph.connection.table.config.properties"/>
<enumeration value="cloudgraph.concurrency.optimistic.enabled"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CLOUDGRAPH___CONCURRENCY___OPTIMISTIC___ENABLED
Whether optimistic concurrency processing is enabled.
|
CLOUDGRAPH___CONNECTION___TABLE___CONFIG___PROPERTIES
Comma seperated name-value pairs to add to the configuration for every connection.
|
CLOUDGRAPH___CONNECTION___TABLECACHE___SIZE___MAX
The maximum size of the table cache for each HBase connection.
|
CLOUDGRAPH___CONNECTION___TABLECACHE___TIMEOUT___SECONDS
The table cache timeout in seconds for each connection.
|
CLOUDGRAPH___QUERY___FETCHTYPE
The type of fetch used when executing queries.
|
CLOUDGRAPH___QUERY___PARALLELFETCH___DISPOSITION
The type of fetch used when executing queries.
|
CLOUDGRAPH___QUERY___THREAD___DEPTH___MAX
The maximum graph traversal depth below which new query threads may be allocated when using 'parallel' for the value of the
cloudgraph.query.fetchtype configuration property.
|
CLOUDGRAPH___QUERY___THREADPOOL___SIZE___MAX
The maximum size of the query thread pool when using 'parallel' for the value of the
cloudgraph.query.fetchtype configuration property.
|
CLOUDGRAPH___QUERY___THREADPOOL___SIZE___MIN
The minimum or core size of the query thread pool when using 'parallel' for the value of the
cloudgraph.query.fetchtype configuration property.
|
CLOUDGRAPH___TABLE___NAMESPACE___ROOT
The path to prepend to table namespaces for all tables within an entire installation.
|
CLOUDGRAPH___TABLE___PHYSICAL___NAMESPACE___DELIM
The delimiter to use when assembling qualified physical table namespaces and table names.
|
CLOUDGRAPH___TABLE___VOLUME___NAME
This is typically a volume or tenant name under multi-tenant installations, and can be controlled dynamically using dynamic table mappings.
|
CLOUDGRAPH___TOMBSTONE___ROWS
Whether to create a tombstone rows when deleting a graph roots.
|
CLOUDGRAPH___TOMBSTONE___ROWS___OVERWRITEABLE
Whether to ignore and overwrite tombstone rows when creating new graph roots.
|
CLOUDGRAPH___UNIQUE___CHECKS
Whether to first check for an existing matching row
key before creating/inserting new rows.
|
| Modifier and Type | Method and Description |
|---|---|
static ConfigurationProperty |
fromValue(String v) |
String |
value() |
static ConfigurationProperty |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigurationProperty[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigurationProperty CLOUDGRAPH___UNIQUE___CHECKS
public static final ConfigurationProperty CLOUDGRAPH___QUERY___FETCHTYPE
FetchTypepublic static final ConfigurationProperty CLOUDGRAPH___QUERY___PARALLELFETCH___DISPOSITION
ParallelFetchDispositionpublic static final ConfigurationProperty CLOUDGRAPH___QUERY___THREAD___DEPTH___MAX
public static final ConfigurationProperty CLOUDGRAPH___TOMBSTONE___ROWS
public static final ConfigurationProperty CLOUDGRAPH___TOMBSTONE___ROWS___OVERWRITEABLE
public static final ConfigurationProperty CLOUDGRAPH___TABLE___NAMESPACE___ROOT
public static final ConfigurationProperty CLOUDGRAPH___TABLE___VOLUME___NAME
public static final ConfigurationProperty CLOUDGRAPH___TABLE___PHYSICAL___NAMESPACE___DELIM
public static final ConfigurationProperty CLOUDGRAPH___QUERY___THREADPOOL___SIZE___MIN
public static final ConfigurationProperty CLOUDGRAPH___QUERY___THREADPOOL___SIZE___MAX
public static final ConfigurationProperty CLOUDGRAPH___CONNECTION___TABLECACHE___SIZE___MAX
public static final ConfigurationProperty CLOUDGRAPH___CONNECTION___TABLECACHE___TIMEOUT___SECONDS
public static final ConfigurationProperty CLOUDGRAPH___CONNECTION___TABLE___CONFIG___PROPERTIES
public static final ConfigurationProperty CLOUDGRAPH___CONCURRENCY___OPTIMISTIC___ENABLED
public static ConfigurationProperty[] values()
for (ConfigurationProperty c : ConfigurationProperty.values()) System.out.println(c);
public static ConfigurationProperty valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static ConfigurationProperty fromValue(String v)
Copyright © 2024. All Rights Reserved.