ListHosts
Retrieves a list of hosts for the specified cluster.
- TypeScript
- Python
import { cloudApi, serviceClients, Session } from "@yandex-cloud/nodejs-sdk";
const ListClusterHostsRequest =
cloudApi.dataproc.cluster_service.ListClusterHostsRequest;
(async () => {
const authToken = process.env["YC_OAUTH_TOKEN"];
const session = new Session({ oauthToken: authToken });
const client = session.client(serviceClients.ClusterServiceClient);
const result = await client.listHosts(
ListClusterHostsRequest.fromPartial({
// clusterId: "clusterId",
// pageSize: 0,
// pageToken: "pageToken",
// filter: "filter"
})
);
console.log(result);
})();
import os
import grpc
import yandexcloud
from yandex.cloud.dataproc.v1.cluster_service_pb2_grpc import ClusterServiceStub
from yandex.cloud.dataproc.v1.cluster_service_pb2 import ListClusterHostsRequest
token = os.getenv("YC_OAUTH_TOKEN")
sdk = yandexcloud.SDK(token=token)
service = sdk.client(ClusterServiceStub)
response = service.ListHosts(
ListClusterHostsRequest(
# cluster_id = "clusterId",
# page_size = 0,
# page_token = "pageToken",
# filter = "filter"
)
)
print(response)
ListClusterHostsRequest
clusterId : string
ID of the PostgreSQL cluster. To get the PostgreSQL cluster ID use a ClusterService.List request.
pageSize : int64
The maximum number of results per page to return. If the number of available results is larger than page_size, the service returns a ListClusterHostsResponse.next_page_token that can be used to get the next page of results in subsequent list requests.
pageToken : string
Page token. To get the next page of results, set page_token to the ListClusterHostsResponse.next_page_token returned by the previous list request.
ListClusterHostsResponse
hosts : Host
List of Host resources.
nextPageToken : string
This token allows you to get the next page of results for list requests. If the number of results is larger than ListClusterHostsRequest.page_size, use the next_page_token as the value for the ListClusterHostsRequest.page_token query parameter in the next list request. Each subsequent list request will have its own next_page_token to continue paging through the results.
Host
Role
ROLE_UNKNOWNRole of the host in the cluster is unknown. Default value.
MASTERHost is the master PostgreSQL server in the cluster.
REPLICAHost is a replica (standby) PostgreSQL server in the cluster.
ReplicaType
REPLICA_TYPE_UNKNOWNReplica type is unknown (we have no data) or it's master
ASYNCSYNCQUORUM
Health
HEALTH_UNKNOWNHealth of the host is unknown. Default value.
ALIVEThe host is performing all its functions normally.
DEADThe host is inoperable, and cannot perform any of its essential functions.
DEGRADEDThe host is degraded, and can perform only some of its essential functions.
READONLYThe host is alive, but in read-only mode.
name : string
Name of the PostgreSQL host. The host name is assigned by MDB at creation time, and cannot be changed. 1-63 characters long.
The name is unique across all MDB hosts that exist on the platform, as it defines the FQDN of the host.
clusterId : string
ID of the PostgreSQL host. The ID is assigned by MDB at creation time.
zoneId : string
ID of the availability zone where the PostgreSQL host resides.
resources : Resources
Resources allocated to the PostgreSQL host.
role : Role
Role of the host in the cluster. If the field has default value, it is not returned in the response.
health : Health
Aggregated health of the host. If the field has default value, it is not returned in the response.
services : Service
Services provided by the host.
subnetId : string
ID of the subnet that the host belongs to.
replicationSource : string
Name of the host to be used as the replication source for cascading replication.
priority : google.protobuf.Int64Value
Priority of the host as a replica. Higher value means higher priority.
The host with the highest priority is the synchronous replica. All others are asynchronous. The synchronous replica replaces the master when needed.
When a replica becomes the master, its priority is ignored.
config : HostConfig
Configuration of a PostgreSQL server for the host.
assignPublicIp : bool
Flag showing public IP assignment status to this host.
replicaType : ReplicaType
Resources
resourcePresetId : string
ID of the preset for computational resources available to a host (CPU, memory etc.). All available presets are listed in the documentation.
diskSize : int64
Volume of the storage available to a host, in bytes.
diskTypeId : string
Type of the storage environment for the host. Possible values:
- network-hdd - network HDD drive,
- network-ssd - network SSD drive,
- local-ssd - local SSD storage.
Service
Type
TYPE_UNSPECIFIEDService type of the host is unspecified. Default value.
POSTGRESQLThe host is a PostgreSQL server.
POOLERThe host is a PgBouncer server.
Health
HEALTH_UNKNOWNHealth of the server is unknown. Default value.
ALIVEThe server is working normally.
DEADThe server is dead or unresponsive.
READONLYThe server is in read-only mode.
type : Type
Type of the service provided by the host. If the field has default value, it is not returned in the response.
health : Health
Aggregated health of the service. If the field has default value, it is not returned in the response.
HostConfig
One of postgresqlConfig
Configuration of a PostgreSQL server for the host.
postgresqlConfig_9_6: config.PostgresqlHostConfig9_6Configuration for a host with PostgreSQL 9.6 server deployed.
postgresqlConfig_10_1c: config.PostgresqlHostConfig10_1CConfiguration for a host with PostgreSQL 10 1C server deployed.
postgresqlConfig_10: config.PostgresqlHostConfig10Configuration for a host with PostgreSQL 10 server deployed.
postgresqlConfig_11: config.PostgresqlHostConfig11Configuration for a host with PostgreSQL 11 server deployed.
postgresqlConfig_11_1c: config.PostgresqlHostConfig11_1CConfiguration for a host with PostgreSQL 11 1C server deployed.
postgresqlConfig_12: config.PostgresqlHostConfig12Configuration for a host with PostgreSQL 12 server deployed.
postgresqlConfig_12_1c: config.PostgresqlHostConfig12_1CConfiguration for a host with PostgreSQL 12 1C server deployed.
postgresqlConfig_13: config.PostgresqlHostConfig13Configuration for a host with PostgreSQL 13 server deployed.
postgresqlConfig_13_1c: config.PostgresqlHostConfig13_1CConfiguration for a host with PostgreSQL 13 1C server deployed.
postgresqlConfig_14: config.PostgresqlHostConfig14Configuration for a host with PostgreSQL 14 server deployed.
postgresqlConfig_14_1c: config.PostgresqlHostConfig14_1CConfiguration for a host with PostgreSQL 14 1C server deployed.
postgresqlConfig_15: config.PostgresqlHostConfig15Configuration for a host with PostgreSQL 15 server deployed.
postgresqlConfig_15_1c: config.PostgresqlHostConfig15_1CConfiguration for a host with PostgreSQL 15 1C server deployed.
postgresqlConfig_16: config.PostgresqlHostConfig16Configuration for a host with PostgreSQL 16 server deployed.
postgresqlConfig_16_1c: config.PostgresqlHostConfig16_1CConfiguration for a host with PostgreSQL 16 1C server deployed.
PostgresqlHostConfig9_6
Options and structure of PostgresqlHostConfig reflects parameters of a PostgreSQL
configuration file. Detailed description is available in
PostgreSQL documentation.
ConstraintExclusion
CONSTRAINT_EXCLUSION_UNSPECIFIEDCONSTRAINT_EXCLUSION_ONCONSTRAINT_EXCLUSION_OFFCONSTRAINT_EXCLUSION_PARTITION
ForceParallelMode
FORCE_PARALLEL_MODE_UNSPECIFIEDFORCE_PARALLEL_MODE_ONFORCE_PARALLEL_MODE_OFFFORCE_PARALLEL_MODE_REGRESS
LogLevel
LOG_LEVEL_UNSPECIFIEDLOG_LEVEL_DEBUG5LOG_LEVEL_DEBUG4LOG_LEVEL_DEBUG3LOG_LEVEL_DEBUG2LOG_LEVEL_DEBUG1LOG_LEVEL_LOGLOG_LEVEL_NOTICELOG_LEVEL_WARNINGLOG_LEVEL_ERRORLOG_LEVEL_FATALLOG_LEVEL_PANIC
LogErrorVerbosity
LOG_ERROR_VERBOSITY_UNSPECIFIEDLOG_ERROR_VERBOSITY_TERSELOG_ERROR_VERBOSITY_DEFAULTLOG_ERROR_VERBOSITY_VERBOSE
LogStatement
LOG_STATEMENT_UNSPECIFIEDLOG_STATEMENT_NONELOG_STATEMENT_DDLLOG_STATEMENT_MODLOG_STATEMENT_ALL
TransactionIsolation
TRANSACTION_ISOLATION_UNSPECIFIEDTRANSACTION_ISOLATION_READ_UNCOMMITTEDTRANSACTION_ISOLATION_READ_COMMITTEDTRANSACTION_ISOLATION_REPEATABLE_READTRANSACTION_ISOLATION_SERIALIZABLE
ByteaOutput
BYTEA_OUTPUT_UNSPECIFIEDBYTEA_OUTPUT_HEXBYTEA_OUTPUT_ESCAPED
XmlBinary
XML_BINARY_UNSPECIFIEDXML_BINARY_BASE64XML_BINARY_HEX
XmlOption
XML_OPTION_UNSPECIFIEDXML_OPTION_DOCUMENTXML_OPTION_CONTENT
BackslashQuote
BACKSLASH_QUOTE_UNSPECIFIEDBACKSLASH_QUOTEBACKSLASH_QUOTE_ONBACKSLASH_QUOTE_OFFBACKSLASH_QUOTE_SAFE_ENCODING
recoveryMinApplyDelay : google.protobuf.Int64Value
in milliseconds.
sharedBuffers : google.protobuf.Int64Value
in bytes.
tempBuffers : google.protobuf.Int64Value
in bytes.
workMem : google.protobuf.Int64Value
in bytes.
replacementSortTuples : google.protobuf.Int64Value
in bytes.
tempFileLimit : google.protobuf.Int64Value
in bytes.
backendFlushAfter : google.protobuf.Int64Value
oldSnapshotThreshold : google.protobuf.Int64Value
maxStandbyStreamingDelay : google.protobuf.Int64Value
in milliseconds.
constraintExclusion : ConstraintExclusion
cursorTupleFraction : google.protobuf.DoubleValue
fromCollapseLimit : google.protobuf.Int64Value
joinCollapseLimit : google.protobuf.Int64Value
forceParallelMode : ForceParallelMode
clientMinMessages : LogLevel
logMinMessages : LogLevel
logMinErrorStatement : LogLevel
logMinDurationStatement : google.protobuf.Int64Value
in milliseconds.
logCheckpoints : google.protobuf.BoolValue
logConnections : google.protobuf.BoolValue
logDisconnections : google.protobuf.BoolValue
logDuration : google.protobuf.BoolValue
logErrorVerbosity : LogErrorVerbosity
logLockWaits : google.protobuf.BoolValue
logStatement : LogStatement
logTempFiles : google.protobuf.Int64Value
searchPath : string
rowSecurity : google.protobuf.BoolValue
defaultTransactionIsolation : TransactionIsolation
statementTimeout : google.protobuf.Int64Value
in milliseconds.
lockTimeout : google.protobuf.Int64Value
in milliseconds.
idleInTransactionSessionTimeout : google.protobuf.Int64Value
in milliseconds.
byteaOutput : ByteaOutput
xmlbinary : XmlBinary
xmloption : XmlOption
ginPendingListLimit : google.protobuf.Int64Value
in bytes.
deadlockTimeout : google.protobuf.Int64Value
in milliseconds.
maxLocksPerTransaction : google.protobuf.Int64Value
maxPredLocksPerTransaction : google.protobuf.Int64Value
arrayNulls : google.protobuf.BoolValue
backslashQuote : BackslashQuote
defaultWithOids : google.protobuf.BoolValue
escapeStringWarning : google.protobuf.BoolValue
loCompatPrivileges : google.protobuf.BoolValue
operatorPrecedenceWarning : google.protobuf.BoolValue
quoteAllIdentifiers : google.protobuf.BoolValue
standardConformingStrings : google.protobuf.BoolValue
synchronizeSeqscans : google.protobuf.BoolValue
transformNullEquals : google.protobuf.BoolValue
exitOnError : google.protobuf.BoolValue
seqPageCost : google.protobuf.DoubleValue
randomPageCost : google.protobuf.DoubleValue
sqlInheritance : google.protobuf.BoolValue
This option has been removed in PostgreSQL 10.
effectiveIoConcurrency : google.protobuf.Int64Value
effectiveCacheSize : google.protobuf.Int64Value
PostgresqlHostConfig10_1C
Options and structure of PostgresqlHostConfig reflects PostgreSQL configuration file
parameters whose detailed description is available in
PostgreSQL documentation.
ConstraintExclusion
CONSTRAINT_EXCLUSION_UNSPECIFIEDCONSTRAINT_EXCLUSION_ONCONSTRAINT_EXCLUSION_OFFCONSTRAINT_EXCLUSION_PARTITION
ForceParallelMode
FORCE_PARALLEL_MODE_UNSPECIFIEDFORCE_PARALLEL_MODE_ONFORCE_PARALLEL_MODE_OFFFORCE_PARALLEL_MODE_REGRESS
LogLevel
LOG_LEVEL_UNSPECIFIEDLOG_LEVEL_DEBUG5LOG_LEVEL_DEBUG4LOG_LEVEL_DEBUG3LOG_LEVEL_DEBUG2LOG_LEVEL_DEBUG1LOG_LEVEL_LOGLOG_LEVEL_NOTICELOG_LEVEL_WARNINGLOG_LEVEL_ERRORLOG_LEVEL_FATALLOG_LEVEL_PANIC
LogErrorVerbosity
LOG_ERROR_VERBOSITY_UNSPECIFIEDLOG_ERROR_VERBOSITY_TERSELOG_ERROR_VERBOSITY_DEFAULTLOG_ERROR_VERBOSITY_VERBOSE
LogStatement
LOG_STATEMENT_UNSPECIFIEDLOG_STATEMENT_NONELOG_STATEMENT_DDLLOG_STATEMENT_MODLOG_STATEMENT_ALL
TransactionIsolation
TRANSACTION_ISOLATION_UNSPECIFIEDTRANSACTION_ISOLATION_READ_UNCOMMITTEDTRANSACTION_ISOLATION_READ_COMMITTEDTRANSACTION_ISOLATION_REPEATABLE_READTRANSACTION_ISOLATION_SERIALIZABLE
ByteaOutput
BYTEA_OUTPUT_UNSPECIFIEDBYTEA_OUTPUT_HEXBYTEA_OUTPUT_ESCAPED
XmlBinary
XML_BINARY_UNSPECIFIEDXML_BINARY_BASE64XML_BINARY_HEX
XmlOption
XML_OPTION_UNSPECIFIEDXML_OPTION_DOCUMENTXML_OPTION_CONTENT
BackslashQuote
BACKSLASH_QUOTE_UNSPECIFIEDBACKSLASH_QUOTEBACKSLASH_QUOTE_ONBACKSLASH_QUOTE_OFFBACKSLASH_QUOTE_SAFE_ENCODING
recoveryMinApplyDelay : google.protobuf.Int64Value
in milliseconds.
sharedBuffers : google.protobuf.Int64Value
in bytes.
tempBuffers : google.protobuf.Int64Value
in bytes.
workMem : google.protobuf.Int64Value
in bytes.
replacementSortTuples : google.protobuf.Int64Value
in bytes.
tempFileLimit : google.protobuf.Int64Value
in bytes.
backendFlushAfter : google.protobuf.Int64Value
oldSnapshotThreshold : google.protobuf.Int64Value
maxStandbyStreamingDelay : google.protobuf.Int64Value
in milliseconds.
constraintExclusion : ConstraintExclusion
cursorTupleFraction : google.protobuf.DoubleValue
fromCollapseLimit : google.protobuf.Int64Value
joinCollapseLimit : google.protobuf.Int64Value
forceParallelMode : ForceParallelMode
clientMinMessages : LogLevel
logMinMessages : LogLevel
logMinErrorStatement : LogLevel
logMinDurationStatement : google.protobuf.Int64Value
in milliseconds.
logCheckpoints : google.protobuf.BoolValue
logConnections : google.protobuf.BoolValue
logDisconnections : google.protobuf.BoolValue
logDuration : google.protobuf.BoolValue
logErrorVerbosity : LogErrorVerbosity
logLockWaits : google.protobuf.BoolValue
logStatement : LogStatement
logTempFiles : google.protobuf.Int64Value
searchPath : string
rowSecurity : google.protobuf.BoolValue
defaultTransactionIsolation : TransactionIsolation
statementTimeout : google.protobuf.Int64Value
in milliseconds.
lockTimeout : google.protobuf.Int64Value
in milliseconds.
idleInTransactionSessionTimeout : google.protobuf.Int64Value
in milliseconds.
byteaOutput : ByteaOutput
xmlbinary : XmlBinary
xmloption : XmlOption
ginPendingListLimit : google.protobuf.Int64Value
in bytes.
deadlockTimeout : google.protobuf.Int64Value
in milliseconds.
maxLocksPerTransaction : google.protobuf.Int64Value
maxPredLocksPerTransaction : google.protobuf.Int64Value
arrayNulls : google.protobuf.BoolValue
backslashQuote : BackslashQuote
defaultWithOids : google.protobuf.BoolValue
escapeStringWarning : google.protobuf.BoolValue
loCompatPrivileges : google.protobuf.BoolValue
operatorPrecedenceWarning : google.protobuf.BoolValue
quoteAllIdentifiers : google.protobuf.BoolValue
standardConformingStrings : google.protobuf.BoolValue
synchronizeSeqscans : google.protobuf.BoolValue
transformNullEquals : google.protobuf.BoolValue
exitOnError : google.protobuf.BoolValue
seqPageCost : google.protobuf.DoubleValue
randomPageCost : google.protobuf.DoubleValue
enableBitmapscan : google.protobuf.BoolValue
enableHashagg : google.protobuf.BoolValue
enableHashjoin : google.protobuf.BoolValue
enableIndexscan : google.protobuf.BoolValue
enableIndexonlyscan : google.protobuf.BoolValue
enableMaterial : google.protobuf.BoolValue
enableMergejoin : google.protobuf.BoolValue
enableNestloop : google.protobuf.BoolValue
enableSeqscan : google.protobuf.BoolValue
enableSort : google.protobuf.BoolValue
enableTidscan : google.protobuf.BoolValue
maxParallelWorkers : google.protobuf.Int64Value
maxParallelWorkersPerGather : google.protobuf.Int64Value
timezone : string
effectiveIoConcurrency : google.protobuf.Int64Value
effectiveCacheSize : google.protobuf.Int64Value
PostgresqlHostConfig10
Options and structure of PostgresqlHostConfig reflects PostgreSQL configuration file
parameters whose detailed description is available in
PostgreSQL documentation.
ConstraintExclusion
CONSTRAINT_EXCLUSION_UNSPECIFIEDCONSTRAINT_EXCLUSION_ONCONSTRAINT_EXCLUSION_OFFCONSTRAINT_EXCLUSION_PARTITION
ForceParallelMode
FORCE_PARALLEL_MODE_UNSPECIFIEDFORCE_PARALLEL_MODE_ONFORCE_PARALLEL_MODE_OFFFORCE_PARALLEL_MODE_REGRESS
LogLevel
LOG_LEVEL_UNSPECIFIEDLOG_LEVEL_DEBUG5LOG_LEVEL_DEBUG4LOG_LEVEL_DEBUG3LOG_LEVEL_DEBUG2LOG_LEVEL_DEBUG1LOG_LEVEL_LOGLOG_LEVEL_NOTICELOG_LEVEL_WARNINGLOG_LEVEL_ERRORLOG_LEVEL_FATALLOG_LEVEL_PANIC
LogErrorVerbosity
LOG_ERROR_VERBOSITY_UNSPECIFIEDLOG_ERROR_VERBOSITY_TERSELOG_ERROR_VERBOSITY_DEFAULTLOG_ERROR_VERBOSITY_VERBOSE
LogStatement
LOG_STATEMENT_UNSPECIFIEDLOG_STATEMENT_NONELOG_STATEMENT_DDLLOG_STATEMENT_MODLOG_STATEMENT_ALL
TransactionIsolation
TRANSACTION_ISOLATION_UNSPECIFIEDTRANSACTION_ISOLATION_READ_UNCOMMITTEDTRANSACTION_ISOLATION_READ_COMMITTEDTRANSACTION_ISOLATION_REPEATABLE_READTRANSACTION_ISOLATION_SERIALIZABLE
ByteaOutput
BYTEA_OUTPUT_UNSPECIFIEDBYTEA_OUTPUT_HEXBYTEA_OUTPUT_ESCAPED
XmlBinary
XML_BINARY_UNSPECIFIEDXML_BINARY_BASE64XML_BINARY_HEX
XmlOption
XML_OPTION_UNSPECIFIEDXML_OPTION_DOCUMENTXML_OPTION_CONTENT
BackslashQuote
BACKSLASH_QUOTE_UNSPECIFIEDBACKSLASH_QUOTEBACKSLASH_QUOTE_ONBACKSLASH_QUOTE_OFFBACKSLASH_QUOTE_SAFE_ENCODING
recoveryMinApplyDelay : google.protobuf.Int64Value
in milliseconds.
sharedBuffers : google.protobuf.Int64Value
in bytes.
tempBuffers : google.protobuf.Int64Value
in bytes.
workMem : google.protobuf.Int64Value
in bytes.
replacementSortTuples : google.protobuf.Int64Value
in bytes.
tempFileLimit : google.protobuf.Int64Value
in bytes.
backendFlushAfter : google.protobuf.Int64Value
oldSnapshotThreshold : google.protobuf.Int64Value
maxStandbyStreamingDelay : google.protobuf.Int64Value
in milliseconds.
constraintExclusion : ConstraintExclusion
cursorTupleFraction : google.protobuf.DoubleValue
fromCollapseLimit : google.protobuf.Int64Value
joinCollapseLimit : google.protobuf.Int64Value
forceParallelMode : ForceParallelMode
clientMinMessages : LogLevel
logMinMessages : LogLevel
logMinErrorStatement : LogLevel
logMinDurationStatement : google.protobuf.Int64Value
in milliseconds.
logCheckpoints : google.protobuf.BoolValue
logConnections : google.protobuf.BoolValue
logDisconnections : google.protobuf.BoolValue
logDuration : google.protobuf.BoolValue
logErrorVerbosity : LogErrorVerbosity
logLockWaits : google.protobuf.BoolValue
logStatement : LogStatement
logTempFiles : google.protobuf.Int64Value
searchPath : string
rowSecurity : google.protobuf.BoolValue
defaultTransactionIsolation : TransactionIsolation
statementTimeout : google.protobuf.Int64Value
in milliseconds.
lockTimeout : google.protobuf.Int64Value
in milliseconds.
idleInTransactionSessionTimeout : google.protobuf.Int64Value
in milliseconds.
byteaOutput : ByteaOutput
xmlbinary : XmlBinary
xmloption : XmlOption
ginPendingListLimit : google.protobuf.Int64Value
in bytes.
deadlockTimeout : google.protobuf.Int64Value
in milliseconds.
maxLocksPerTransaction : google.protobuf.Int64Value
maxPredLocksPerTransaction : google.protobuf.Int64Value
arrayNulls : google.protobuf.BoolValue
backslashQuote : BackslashQuote
defaultWithOids : google.protobuf.BoolValue
escapeStringWarning : google.protobuf.BoolValue
loCompatPrivileges : google.protobuf.BoolValue
operatorPrecedenceWarning : google.protobuf.BoolValue
quoteAllIdentifiers : google.protobuf.BoolValue
standardConformingStrings : google.protobuf.BoolValue
synchronizeSeqscans : google.protobuf.BoolValue
transformNullEquals : google.protobuf.BoolValue
exitOnError : google.protobuf.BoolValue
seqPageCost : google.protobuf.DoubleValue
randomPageCost : google.protobuf.DoubleValue
enableBitmapscan : google.protobuf.BoolValue
enableHashagg : google.protobuf.BoolValue
enableHashjoin : google.protobuf.BoolValue
enableIndexscan : google.protobuf.BoolValue
enableIndexonlyscan : google.protobuf.BoolValue
enableMaterial : google.protobuf.BoolValue
enableMergejoin : google.protobuf.BoolValue
enableNestloop : google.protobuf.BoolValue
enableSeqscan : google.protobuf.BoolValue
enableSort : google.protobuf.BoolValue
enableTidscan : google.protobuf.BoolValue
maxParallelWorkers : google.protobuf.Int64Value
maxParallelWorkersPerGather : google.protobuf.Int64Value
timezone : string
effectiveIoConcurrency : google.protobuf.Int64Value
effectiveCacheSize : google.protobuf.Int64Value
PostgresqlHostConfig11
Options and structure of PostgresqlConfig reflects PostgreSQL configuration file
parameters which detailed description is available in
PostgreSQL documentation.
BackslashQuote
BACKSLASH_QUOTE_UNSPECIFIEDBACKSLASH_QUOTEBACKSLASH_QUOTE_ONBACKSLASH_QUOTE_OFFBACKSLASH_QUOTE_SAFE_ENCODING
ByteaOutput
BYTEA_OUTPUT_UNSPECIFIEDBYTEA_OUTPUT_HEXBYTEA_OUTPUT_ESCAPED
ConstraintExclusion
CONSTRAINT_EXCLUSION_UNSPECIFIEDCONSTRAINT_EXCLUSION_ONCONSTRAINT_EXCLUSION_OFFCONSTRAINT_EXCLUSION_PARTITION
ForceParallelMode
FORCE_PARALLEL_MODE_UNSPECIFIEDFORCE_PARALLEL_MODE_ONFORCE_PARALLEL_MODE_OFFFORCE_PARALLEL_MODE_REGRESS
LogErrorVerbosity
LOG_ERROR_VERBOSITY_UNSPECIFIEDLOG_ERROR_VERBOSITY_TERSELOG_ERROR_VERBOSITY_DEFAULTLOG_ERROR_VERBOSITY_VERBOSE
LogLevel
LOG_LEVEL_UNSPECIFIEDLOG_LEVEL_DEBUG5LOG_LEVEL_DEBUG4LOG_LEVEL_DEBUG3LOG_LEVEL_DEBUG2LOG_LEVEL_DEBUG1LOG_LEVEL_LOGLOG_LEVEL_NOTICELOG_LEVEL_WARNINGLOG_LEVEL_ERRORLOG_LEVEL_FATALLOG_LEVEL_PANIC
LogStatement
LOG_STATEMENT_UNSPECIFIEDLOG_STATEMENT_NONELOG_STATEMENT_DDLLOG_STATEMENT_MODLOG_STATEMENT_ALL
TransactionIsolation
TRANSACTION_ISOLATION_UNSPECIFIEDTRANSACTION_ISOLATION_READ_UNCOMMITTEDTRANSACTION_ISOLATION_READ_COMMITTEDTRANSACTION_ISOLATION_REPEATABLE_READTRANSACTION_ISOLATION_SERIALIZABLE
XmlBinary
XML_BINARY_UNSPECIFIEDXML_BINARY_BASE64XML_BINARY_HEX
XmlOption
XML_OPTION_UNSPECIFIEDXML_OPTION_DOCUMENTXML_OPTION_CONTENT
recoveryMinApplyDelay : google.protobuf.Int64Value
in milliseconds.
sharedBuffers : google.protobuf.Int64Value
in bytes.
tempBuffers : google.protobuf.Int64Value
in bytes.
workMem : google.protobuf.Int64Value
in bytes.
tempFileLimit : google.protobuf.Int64Value
in bytes.
backendFlushAfter : google.protobuf.Int64Value
oldSnapshotThreshold : google.protobuf.Int64Value
maxStandbyStreamingDelay : google.protobuf.Int64Value
in milliseconds.
constraintExclusion : ConstraintExclusion
cursorTupleFraction : google.protobuf.DoubleValue
fromCollapseLimit : google.protobuf.Int64Value
joinCollapseLimit : google.protobuf.Int64Value
forceParallelMode : ForceParallelMode
clientMinMessages : LogLevel
logMinMessages : LogLevel
logMinErrorStatement : LogLevel
logMinDurationStatement : google.protobuf.Int64Value
in milliseconds.
logCheckpoints : google.protobuf.BoolValue
logConnections : google.protobuf.BoolValue
logDisconnections : google.protobuf.BoolValue
logDuration : google.protobuf.BoolValue
logErrorVerbosity : LogErrorVerbosity
logLockWaits : google.protobuf.BoolValue
logStatement : LogStatement
logTempFiles : google.protobuf.Int64Value
searchPath : string
rowSecurity : google.protobuf.BoolValue
defaultTransactionIsolation : TransactionIsolation
statementTimeout : google.protobuf.Int64Value
in milliseconds.
lockTimeout : google.protobuf.Int64Value
in milliseconds.
idleInTransactionSessionTimeout : google.protobuf.Int64Value
in milliseconds.
byteaOutput : ByteaOutput
xmlbinary : XmlBinary
xmloption : XmlOption
ginPendingListLimit : google.protobuf.Int64Value
in bytes.
deadlockTimeout : google.protobuf.Int64Value
in milliseconds.
maxLocksPerTransaction : google.protobuf.Int64Value
maxPredLocksPerTransaction : google.protobuf.Int64Value
arrayNulls : google.protobuf.BoolValue
backslashQuote : BackslashQuote
defaultWithOids : google.protobuf.BoolValue
escapeStringWarning : google.protobuf.BoolValue
loCompatPrivileges : google.protobuf.BoolValue
operatorPrecedenceWarning : google.protobuf.BoolValue
quoteAllIdentifiers : google.protobuf.BoolValue
standardConformingStrings : google.protobuf.BoolValue
synchronizeSeqscans : google.protobuf.BoolValue
transformNullEquals : google.protobuf.BoolValue
exitOnError : google.protobuf.BoolValue
seqPageCost : google.protobuf.DoubleValue
randomPageCost : google.protobuf.DoubleValue
enableBitmapscan : google.protobuf.BoolValue
enableHashagg : google.protobuf.BoolValue
enableHashjoin : google.protobuf.BoolValue
enableIndexscan : google.protobuf.BoolValue
enableIndexonlyscan : google.protobuf.BoolValue
enableMaterial : google.protobuf.BoolValue
enableMergejoin : google.protobuf.BoolValue
enableNestloop : google.protobuf.BoolValue
enableSeqscan : google.protobuf.BoolValue
enableSort : google.protobuf.BoolValue
enableTidscan : google.protobuf.BoolValue
maxParallelWorkers : google.protobuf.Int64Value
maxParallelWorkersPerGather : google.protobuf.Int64Value
timezone : string
effectiveIoConcurrency : google.protobuf.Int64Value
effectiveCacheSize : google.protobuf.Int64Value
PostgresqlHostConfig11_1C
Options and structure of PostgresqlConfig reflects PostgreSQL configuration file
parameters which detailed description is available in
PostgreSQL documentation.
BackslashQuote
BACKSLASH_QUOTE_UNSPECIFIEDBACKSLASH_QUOTEBACKSLASH_QUOTE_ONBACKSLASH_QUOTE_OFFBACKSLASH_QUOTE_SAFE_ENCODING
ByteaOutput
BYTEA_OUTPUT_UNSPECIFIEDBYTEA_OUTPUT_HEXBYTEA_OUTPUT_ESCAPED
ConstraintExclusion
CONSTRAINT_EXCLUSION_UNSPECIFIEDCONSTRAINT_EXCLUSION_ONCONSTRAINT_EXCLUSION_OFFCONSTRAINT_EXCLUSION_PARTITION
ForceParallelMode
FORCE_PARALLEL_MODE_UNSPECIFIEDFORCE_PARALLEL_MODE_ONFORCE_PARALLEL_MODE_OFFFORCE_PARALLEL_MODE_REGRESS
LogErrorVerbosity
LOG_ERROR_VERBOSITY_UNSPECIFIEDLOG_ERROR_VERBOSITY_TERSELOG_ERROR_VERBOSITY_DEFAULTLOG_ERROR_VERBOSITY_VERBOSE
LogLevel
LOG_LEVEL_UNSPECIFIEDLOG_LEVEL_DEBUG5LOG_LEVEL_DEBUG4LOG_LEVEL_DEBUG3LOG_LEVEL_DEBUG2LOG_LEVEL_DEBUG1LOG_LEVEL_LOGLOG_LEVEL_NOTICELOG_LEVEL_WARNINGLOG_LEVEL_ERRORLOG_LEVEL_FATALLOG_LEVEL_PANIC
LogStatement
LOG_STATEMENT_UNSPECIFIEDLOG_STATEMENT_NONELOG_STATEMENT_DDLLOG_STATEMENT_MODLOG_STATEMENT_ALL
TransactionIsolation
TRANSACTION_ISOLATION_UNSPECIFIEDTRANSACTION_ISOLATION_READ_UNCOMMITTEDTRANSACTION_ISOLATION_READ_COMMITTEDTRANSACTION_ISOLATION_REPEATABLE_READTRANSACTION_ISOLATION_SERIALIZABLE
XmlBinary
XML_BINARY_UNSPECIFIEDXML_BINARY_BASE64XML_BINARY_HEX
XmlOption
XML_OPTION_UNSPECIFIEDXML_OPTION_DOCUMENTXML_OPTION_CONTENT
recoveryMinApplyDelay : google.protobuf.Int64Value
in milliseconds.
sharedBuffers : google.protobuf.Int64Value
in bytes.
tempBuffers : google.protobuf.Int64Value
in bytes.
workMem : google.protobuf.Int64Value
in bytes.
tempFileLimit : google.protobuf.Int64Value
in bytes.
backendFlushAfter : google.protobuf.Int64Value
oldSnapshotThreshold : google.protobuf.Int64Value
maxStandbyStreamingDelay : google.protobuf.Int64Value
in milliseconds.
constraintExclusion : ConstraintExclusion
cursorTupleFraction : google.protobuf.DoubleValue
fromCollapseLimit : google.protobuf.Int64Value
joinCollapseLimit : google.protobuf.Int64Value
forceParallelMode : ForceParallelMode
clientMinMessages : LogLevel
logMinMessages : LogLevel
logMinErrorStatement : LogLevel
logMinDurationStatement : google.protobuf.Int64Value
in milliseconds.
logCheckpoints : google.protobuf.BoolValue
logConnections : google.protobuf.BoolValue
logDisconnections : google.protobuf.BoolValue
logDuration : google.protobuf.BoolValue
logErrorVerbosity : LogErrorVerbosity
logLockWaits : google.protobuf.BoolValue
logStatement : LogStatement
logTempFiles : google.protobuf.Int64Value
searchPath : string
rowSecurity : google.protobuf.BoolValue
defaultTransactionIsolation : TransactionIsolation
statementTimeout : google.protobuf.Int64Value
in milliseconds.
lockTimeout : google.protobuf.Int64Value
in milliseconds.
idleInTransactionSessionTimeout : google.protobuf.Int64Value
in milliseconds.
byteaOutput : ByteaOutput
xmlbinary : XmlBinary
xmloption : XmlOption
ginPendingListLimit : google.protobuf.Int64Value
in bytes.
deadlockTimeout : google.protobuf.Int64Value
in milliseconds.
maxLocksPerTransaction : google.protobuf.Int64Value
maxPredLocksPerTransaction : google.protobuf.Int64Value
arrayNulls : google.protobuf.BoolValue
backslashQuote : BackslashQuote
defaultWithOids : google.protobuf.BoolValue
escapeStringWarning : google.protobuf.BoolValue
loCompatPrivileges : google.protobuf.BoolValue
operatorPrecedenceWarning : google.protobuf.BoolValue
quoteAllIdentifiers : google.protobuf.BoolValue
standardConformingStrings : google.protobuf.BoolValue
synchronizeSeqscans : google.protobuf.BoolValue
transformNullEquals : google.protobuf.BoolValue
exitOnError : google.protobuf.BoolValue
seqPageCost : google.protobuf.DoubleValue
randomPageCost : google.protobuf.DoubleValue
enableBitmapscan : google.protobuf.BoolValue
enableHashagg : google.protobuf.BoolValue
enableHashjoin : google.protobuf.BoolValue
enableIndexscan : google.protobuf.BoolValue
enableIndexonlyscan : google.protobuf.BoolValue
enableMaterial : google.protobuf.BoolValue
enableMergejoin : google.protobuf.BoolValue
enableNestloop : google.protobuf.BoolValue
enableSeqscan : google.protobuf.BoolValue
enableSort : google.protobuf.BoolValue
enableTidscan : google.protobuf.BoolValue
maxParallelWorkers : google.protobuf.Int64Value
maxParallelWorkersPerGather : google.protobuf.Int64Value
timezone : string
effectiveIoConcurrency : google.protobuf.Int64Value
effectiveCacheSize : google.protobuf.Int64Value
PostgresqlHostConfig12
Options and structure of PostgresqlConfig reflects PostgreSQL configuration file
parameters which detailed description is available in
PostgreSQL documentation.
BackslashQuote
BACKSLASH_QUOTE_UNSPECIFIEDBACKSLASH_QUOTEBACKSLASH_QUOTE_ONBACKSLASH_QUOTE_OFFBACKSLASH_QUOTE_SAFE_ENCODING
ByteaOutput
BYTEA_OUTPUT_UNSPECIFIEDBYTEA_OUTPUT_HEXBYTEA_OUTPUT_ESCAPED
ConstraintExclusion
CONSTRAINT_EXCLUSION_UNSPECIFIEDCONSTRAINT_EXCLUSION_ONCONSTRAINT_EXCLUSION_OFFCONSTRAINT_EXCLUSION_PARTITION
ForceParallelMode
FORCE_PARALLEL_MODE_UNSPECIFIEDFORCE_PARALLEL_MODE_ONFORCE_PARALLEL_MODE_OFFFORCE_PARALLEL_MODE_REGRESS
LogErrorVerbosity
LOG_ERROR_VERBOSITY_UNSPECIFIEDLOG_ERROR_VERBOSITY_TERSELOG_ERROR_VERBOSITY_DEFAULTLOG_ERROR_VERBOSITY_VERBOSE
LogLevel
LOG_LEVEL_UNSPECIFIEDLOG_LEVEL_DEBUG5LOG_LEVEL_DEBUG4LOG_LEVEL_DEBUG3LOG_LEVEL_DEBUG2LOG_LEVEL_DEBUG1LOG_LEVEL_LOGLOG_LEVEL_NOTICELOG_LEVEL_WARNINGLOG_LEVEL_ERRORLOG_LEVEL_FATALLOG_LEVEL_PANIC
LogStatement
LOG_STATEMENT_UNSPECIFIEDLOG_STATEMENT_NONELOG_STATEMENT_DDLLOG_STATEMENT_MODLOG_STATEMENT_ALL
TransactionIsolation
TRANSACTION_ISOLATION_UNSPECIFIEDTRANSACTION_ISOLATION_READ_UNCOMMITTEDTRANSACTION_ISOLATION_READ_COMMITTEDTRANSACTION_ISOLATION_REPEATABLE_READTRANSACTION_ISOLATION_SERIALIZABLE
XmlBinary
XML_BINARY_UNSPECIFIEDXML_BINARY_BASE64XML_BINARY_HEX
XmlOption
XML_OPTION_UNSPECIFIEDXML_OPTION_DOCUMENTXML_OPTION_CONTENT
recoveryMinApplyDelay : google.protobuf.Int64Value
in milliseconds.
sharedBuffers : google.protobuf.Int64Value
in bytes.
tempBuffers : google.protobuf.Int64Value
in bytes.
workMem : google.protobuf.Int64Value
in bytes.
tempFileLimit : google.protobuf.Int64Value
in bytes.
backendFlushAfter : google.protobuf.Int64Value
oldSnapshotThreshold : google.protobuf.Int64Value
maxStandbyStreamingDelay : google.protobuf.Int64Value
in milliseconds.
constraintExclusion : ConstraintExclusion
cursorTupleFraction : google.protobuf.DoubleValue
fromCollapseLimit : google.protobuf.Int64Value
joinCollapseLimit : google.protobuf.Int64Value
forceParallelMode : ForceParallelMode
clientMinMessages : LogLevel
logMinMessages : LogLevel
logMinErrorStatement : LogLevel
logMinDurationStatement : google.protobuf.Int64Value
in milliseconds.
logCheckpoints : google.protobuf.BoolValue
logConnections : google.protobuf.BoolValue
logDisconnections : google.protobuf.BoolValue
logDuration : google.protobuf.BoolValue
logErrorVerbosity : LogErrorVerbosity
logLockWaits : google.protobuf.BoolValue
logStatement : LogStatement
logTempFiles : google.protobuf.Int64Value
searchPath : string
rowSecurity : google.protobuf.BoolValue
defaultTransactionIsolation : TransactionIsolation
statementTimeout : google.protobuf.Int64Value
in milliseconds.
lockTimeout : google.protobuf.Int64Value
in milliseconds.
idleInTransactionSessionTimeout : google.protobuf.Int64Value
in milliseconds.
byteaOutput : ByteaOutput
xmlbinary : XmlBinary
xmloption : XmlOption
ginPendingListLimit : google.protobuf.Int64Value
in bytes.
deadlockTimeout : google.protobuf.Int64Value
in milliseconds.
maxLocksPerTransaction : google.protobuf.Int64Value
maxPredLocksPerTransaction : google.protobuf.Int64Value
arrayNulls : google.protobuf.BoolValue
backslashQuote : BackslashQuote
defaultWithOids : google.protobuf.BoolValue
escapeStringWarning : google.protobuf.BoolValue
loCompatPrivileges : google.protobuf.BoolValue
operatorPrecedenceWarning : google.protobuf.BoolValue
quoteAllIdentifiers : google.protobuf.BoolValue
standardConformingStrings : google.protobuf.BoolValue
synchronizeSeqscans : google.protobuf.BoolValue
transformNullEquals : google.protobuf.BoolValue
exitOnError : google.protobuf.BoolValue
seqPageCost : google.protobuf.DoubleValue
randomPageCost : google.protobuf.DoubleValue
enableBitmapscan : google.protobuf.BoolValue
enableHashagg : google.protobuf.BoolValue
enableHashjoin : google.protobuf.BoolValue
enableIndexscan : google.protobuf.BoolValue
enableIndexonlyscan : google.protobuf.BoolValue
enableMaterial : google.protobuf.BoolValue
enableMergejoin : google.protobuf.BoolValue
enableNestloop : google.protobuf.BoolValue
enableSeqscan : google.protobuf.BoolValue
enableSort : google.protobuf.BoolValue
enableTidscan : google.protobuf.BoolValue
maxParallelWorkers : google.protobuf.Int64Value
maxParallelWorkersPerGather : google.protobuf.Int64Value
timezone : string
effectiveIoConcurrency : google.protobuf.Int64Value
effectiveCacheSize : google.protobuf.Int64Value
PostgresqlHostConfig12_1C
Options and structure of PostgresqlConfig reflects PostgreSQL configuration file
parameters which detailed description is available in
PostgreSQL documentation.
BackslashQuote
BACKSLASH_QUOTE_UNSPECIFIEDBACKSLASH_QUOTEBACKSLASH_QUOTE_ONBACKSLASH_QUOTE_OFFBACKSLASH_QUOTE_SAFE_ENCODING
ByteaOutput
BYTEA_OUTPUT_UNSPECIFIEDBYTEA_OUTPUT_HEXBYTEA_OUTPUT_ESCAPED
ConstraintExclusion
CONSTRAINT_EXCLUSION_UNSPECIFIEDCONSTRAINT_EXCLUSION_ONCONSTRAINT_EXCLUSION_OFFCONSTRAINT_EXCLUSION_PARTITION
ForceParallelMode
FORCE_PARALLEL_MODE_UNSPECIFIEDFORCE_PARALLEL_MODE_ONFORCE_PARALLEL_MODE_OFFFORCE_PARALLEL_MODE_REGRESS
LogErrorVerbosity
LOG_ERROR_VERBOSITY_UNSPECIFIEDLOG_ERROR_VERBOSITY_TERSELOG_ERROR_VERBOSITY_DEFAULTLOG_ERROR_VERBOSITY_VERBOSE
LogLevel
LOG_LEVEL_UNSPECIFIEDLOG_LEVEL_DEBUG5LOG_LEVEL_DEBUG4LOG_LEVEL_DEBUG3LOG_LEVEL_DEBUG2LOG_LEVEL_DEBUG1LOG_LEVEL_LOGLOG_LEVEL_NOTICELOG_LEVEL_WARNINGLOG_LEVEL_ERRORLOG_LEVEL_FATALLOG_LEVEL_PANIC
LogStatement
LOG_STATEMENT_UNSPECIFIEDLOG_STATEMENT_NONELOG_STATEMENT_DDLLOG_STATEMENT_MODLOG_STATEMENT_ALL
TransactionIsolation
TRANSACTION_ISOLATION_UNSPECIFIEDTRANSACTION_ISOLATION_READ_UNCOMMITTEDTRANSACTION_ISOLATION_READ_COMMITTEDTRANSACTION_ISOLATION_REPEATABLE_READTRANSACTION_ISOLATION_SERIALIZABLE
XmlBinary
XML_BINARY_UNSPECIFIEDXML_BINARY_BASE64XML_BINARY_HEX
XmlOption
XML_OPTION_UNSPECIFIEDXML_OPTION_DOCUMENTXML_OPTION_CONTENT
recoveryMinApplyDelay : google.protobuf.Int64Value
in milliseconds.
sharedBuffers : google.protobuf.Int64Value
in bytes.
tempBuffers : google.protobuf.Int64Value
in bytes.
workMem : google.protobuf.Int64Value
in bytes.
tempFileLimit : google.protobuf.Int64Value
in bytes.
backendFlushAfter : google.protobuf.Int64Value
oldSnapshotThreshold : google.protobuf.Int64Value
maxStandbyStreamingDelay : google.protobuf.Int64Value
in milliseconds.
constraintExclusion : ConstraintExclusion
cursorTupleFraction : google.protobuf.DoubleValue
fromCollapseLimit : google.protobuf.Int64Value
joinCollapseLimit : google.protobuf.Int64Value
forceParallelMode : ForceParallelMode
clientMinMessages : LogLevel
logMinMessages : LogLevel
logMinErrorStatement : LogLevel
logMinDurationStatement : google.protobuf.Int64Value
in milliseconds.
logCheckpoints : google.protobuf.BoolValue
logConnections : google.protobuf.BoolValue
logDisconnections : google.protobuf.BoolValue
logDuration : google.protobuf.BoolValue
logErrorVerbosity : LogErrorVerbosity
logLockWaits : google.protobuf.BoolValue
logStatement : LogStatement
logTempFiles : google.protobuf.Int64Value
searchPath : string
rowSecurity : google.protobuf.BoolValue
defaultTransactionIsolation : TransactionIsolation
statementTimeout : google.protobuf.Int64Value
in milliseconds.
lockTimeout : google.protobuf.Int64Value
in milliseconds.
idleInTransactionSessionTimeout : google.protobuf.Int64Value
in milliseconds.
byteaOutput : ByteaOutput
xmlbinary : XmlBinary
xmloption : XmlOption
ginPendingListLimit : google.protobuf.Int64Value
in bytes.
deadlockTimeout : google.protobuf.Int64Value
in milliseconds.
maxLocksPerTransaction : google.protobuf.Int64Value
maxPredLocksPerTransaction : google.protobuf.Int64Value
arrayNulls : google.protobuf.BoolValue
backslashQuote : BackslashQuote
defaultWithOids : google.protobuf.BoolValue
escapeStringWarning : google.protobuf.BoolValue
loCompatPrivileges : google.protobuf.BoolValue
operatorPrecedenceWarning : google.protobuf.BoolValue
quoteAllIdentifiers : google.protobuf.BoolValue
standardConformingStrings : google.protobuf.BoolValue
synchronizeSeqscans : google.protobuf.BoolValue
transformNullEquals : google.protobuf.BoolValue
exitOnError : google.protobuf.BoolValue
seqPageCost : google.protobuf.DoubleValue
randomPageCost : google.protobuf.DoubleValue
enableBitmapscan : google.protobuf.BoolValue
enableHashagg : google.protobuf.BoolValue
enableHashjoin : google.protobuf.BoolValue
enableIndexscan : google.protobuf.BoolValue
enableIndexonlyscan : google.protobuf.BoolValue
enableMaterial : google.protobuf.BoolValue
enableMergejoin : google.protobuf.BoolValue
enableNestloop : google.protobuf.BoolValue
enableSeqscan : google.protobuf.BoolValue
enableSort : google.protobuf.BoolValue
enableTidscan : google.protobuf.BoolValue
maxParallelWorkers : google.protobuf.Int64Value
maxParallelWorkersPerGather : google.protobuf.Int64Value
timezone : string
effectiveIoConcurrency : google.protobuf.Int64Value
effectiveCacheSize : google.protobuf.Int64Value
PostgresqlHostConfig13
Options and structure of PostgresqlConfig reflects PostgreSQL configuration file
parameters which detailed description is available in
PostgreSQL documentation.
BackslashQuote
BACKSLASH_QUOTE_UNSPECIFIEDBACKSLASH_QUOTEBACKSLASH_QUOTE_ONBACKSLASH_QUOTE_OFFBACKSLASH_QUOTE_SAFE_ENCODING
ByteaOutput
BYTEA_OUTPUT_UNSPECIFIEDBYTEA_OUTPUT_HEXBYTEA_OUTPUT_ESCAPED
ConstraintExclusion
CONSTRAINT_EXCLUSION_UNSPECIFIEDCONSTRAINT_EXCLUSION_ONCONSTRAINT_EXCLUSION_OFFCONSTRAINT_EXCLUSION_PARTITION
ForceParallelMode
FORCE_PARALLEL_MODE_UNSPECIFIEDFORCE_PARALLEL_MODE_ONFORCE_PARALLEL_MODE_OFFFORCE_PARALLEL_MODE_REGRESS
LogErrorVerbosity
LOG_ERROR_VERBOSITY_UNSPECIFIEDLOG_ERROR_VERBOSITY_TERSELOG_ERROR_VERBOSITY_DEFAULTLOG_ERROR_VERBOSITY_VERBOSE
LogLevel
LOG_LEVEL_UNSPECIFIEDLOG_LEVEL_DEBUG5LOG_LEVEL_DEBUG4LOG_LEVEL_DEBUG3LOG_LEVEL_DEBUG2LOG_LEVEL_DEBUG1LOG_LEVEL_LOGLOG_LEVEL_NOTICELOG_LEVEL_WARNINGLOG_LEVEL_ERRORLOG_LEVEL_FATALLOG_LEVEL_PANIC
LogStatement
LOG_STATEMENT_UNSPECIFIEDLOG_STATEMENT_NONELOG_STATEMENT_DDLLOG_STATEMENT_MODLOG_STATEMENT_ALL
TransactionIsolation
TRANSACTION_ISOLATION_UNSPECIFIEDTRANSACTION_ISOLATION_READ_UNCOMMITTEDTRANSACTION_ISOLATION_READ_COMMITTEDTRANSACTION_ISOLATION_REPEATABLE_READTRANSACTION_ISOLATION_SERIALIZABLE
XmlBinary
XML_BINARY_UNSPECIFIEDXML_BINARY_BASE64XML_BINARY_HEX
XmlOption
XML_OPTION_UNSPECIFIEDXML_OPTION_DOCUMENTXML_OPTION_CONTENT
recoveryMinApplyDelay : google.protobuf.Int64Value
in milliseconds.
sharedBuffers : google.protobuf.Int64Value
in bytes.
tempBuffers : google.protobuf.Int64Value
in bytes.
workMem : google.protobuf.Int64Value
in bytes.
tempFileLimit : google.protobuf.Int64Value
in bytes.
backendFlushAfter : google.protobuf.Int64Value
oldSnapshotThreshold : google.protobuf.Int64Value
maxStandbyStreamingDelay : google.protobuf.Int64Value
in milliseconds.
constraintExclusion : ConstraintExclusion
cursorTupleFraction : google.protobuf.DoubleValue
fromCollapseLimit : google.protobuf.Int64Value
joinCollapseLimit : google.protobuf.Int64Value
forceParallelMode : ForceParallelMode
clientMinMessages : LogLevel
logMinMessages : LogLevel
logMinErrorStatement : LogLevel
logMinDurationStatement : google.protobuf.Int64Value
in milliseconds.
logCheckpoints : google.protobuf.BoolValue
logConnections : google.protobuf.BoolValue
logDisconnections : google.protobuf.BoolValue
logDuration : google.protobuf.BoolValue
logErrorVerbosity : LogErrorVerbosity
logLockWaits : google.protobuf.BoolValue
logStatement : LogStatement
logTempFiles : google.protobuf.Int64Value
searchPath : string
rowSecurity : google.protobuf.BoolValue
defaultTransactionIsolation : TransactionIsolation
statementTimeout : google.protobuf.Int64Value
in milliseconds.
lockTimeout : google.protobuf.Int64Value
in milliseconds.
idleInTransactionSessionTimeout : google.protobuf.Int64Value
in milliseconds.
byteaOutput : ByteaOutput
xmlbinary : XmlBinary
xmloption : XmlOption
ginPendingListLimit : google.protobuf.Int64Value
in bytes.
deadlockTimeout : google.protobuf.Int64Value
in milliseconds.
maxLocksPerTransaction : google.protobuf.Int64Value
maxPredLocksPerTransaction : google.protobuf.Int64Value
arrayNulls : google.protobuf.BoolValue
backslashQuote : BackslashQuote
defaultWithOids : google.protobuf.BoolValue
escapeStringWarning : google.protobuf.BoolValue
loCompatPrivileges : google.protobuf.BoolValue
operatorPrecedenceWarning : google.protobuf.BoolValue
quoteAllIdentifiers : google.protobuf.BoolValue
standardConformingStrings : google.protobuf.BoolValue
synchronizeSeqscans : google.protobuf.BoolValue
transformNullEquals : google.protobuf.BoolValue
exitOnError : google.protobuf.BoolValue
seqPageCost : google.protobuf.DoubleValue
randomPageCost : google.protobuf.DoubleValue
enableBitmapscan : google.protobuf.BoolValue
enableHashagg : google.protobuf.BoolValue
enableHashjoin : google.protobuf.BoolValue
enableIndexscan : google.protobuf.BoolValue
enableIndexonlyscan : google.protobuf.BoolValue
enableMaterial : google.protobuf.BoolValue
enableMergejoin : google.protobuf.BoolValue
enableNestloop : google.protobuf.BoolValue
enableSeqscan : google.protobuf.BoolValue
enableSort : google.protobuf.BoolValue
enableTidscan : google.protobuf.BoolValue
maxParallelWorkers : google.protobuf.Int64Value
maxParallelWorkersPerGather : google.protobuf.Int64Value
timezone : string
effectiveIoConcurrency : google.protobuf.Int64Value
effectiveCacheSize : google.protobuf.Int64Value
PostgresqlHostConfig13_1C
Options and structure of PostgresqlConfig reflects PostgreSQL configuration file
parameters which detailed description is available in
PostgreSQL documentation.
BackslashQuote
BACKSLASH_QUOTE_UNSPECIFIEDBACKSLASH_QUOTEBACKSLASH_QUOTE_ONBACKSLASH_QUOTE_OFFBACKSLASH_QUOTE_SAFE_ENCODING
ByteaOutput
BYTEA_OUTPUT_UNSPECIFIEDBYTEA_OUTPUT_HEXBYTEA_OUTPUT_ESCAPED
ConstraintExclusion
CONSTRAINT_EXCLUSION_UNSPECIFIEDCONSTRAINT_EXCLUSION_ONCONSTRAINT_EXCLUSION_OFFCONSTRAINT_EXCLUSION_PARTITION
ForceParallelMode
FORCE_PARALLEL_MODE_UNSPECIFIEDFORCE_PARALLEL_MODE_ONFORCE_PARALLEL_MODE_OFFFORCE_PARALLEL_MODE_REGRESS
LogErrorVerbosity
LOG_ERROR_VERBOSITY_UNSPECIFIEDLOG_ERROR_VERBOSITY_TERSELOG_ERROR_VERBOSITY_DEFAULTLOG_ERROR_VERBOSITY_VERBOSE
LogLevel
LOG_LEVEL_UNSPECIFIEDLOG_LEVEL_DEBUG5LOG_LEVEL_DEBUG4LOG_LEVEL_DEBUG3LOG_LEVEL_DEBUG2LOG_LEVEL_DEBUG1LOG_LEVEL_LOGLOG_LEVEL_NOTICELOG_LEVEL_WARNINGLOG_LEVEL_ERRORLOG_LEVEL_FATALLOG_LEVEL_PANIC
LogStatement
LOG_STATEMENT_UNSPECIFIEDLOG_STATEMENT_NONELOG_STATEMENT_DDLLOG_STATEMENT_MODLOG_STATEMENT_ALL
TransactionIsolation
TRANSACTION_ISOLATION_UNSPECIFIEDTRANSACTION_ISOLATION_READ_UNCOMMITTEDTRANSACTION_ISOLATION_READ_COMMITTEDTRANSACTION_ISOLATION_REPEATABLE_READTRANSACTION_ISOLATION_SERIALIZABLE
XmlBinary
XML_BINARY_UNSPECIFIEDXML_BINARY_BASE64XML_BINARY_HEX
XmlOption
XML_OPTION_UNSPECIFIEDXML_OPTION_DOCUMENTXML_OPTION_CONTENT
recoveryMinApplyDelay : google.protobuf.Int64Value
in milliseconds.
sharedBuffers : google.protobuf.Int64Value
in bytes.
tempBuffers : google.protobuf.Int64Value
in bytes.
workMem : google.protobuf.Int64Value
in bytes.
tempFileLimit : google.protobuf.Int64Value
in bytes.
backendFlushAfter : google.protobuf.Int64Value
oldSnapshotThreshold : google.protobuf.Int64Value
maxStandbyStreamingDelay : google.protobuf.Int64Value
in milliseconds.
constraintExclusion : ConstraintExclusion
cursorTupleFraction : google.protobuf.DoubleValue
fromCollapseLimit : google.protobuf.Int64Value
joinCollapseLimit : google.protobuf.Int64Value
forceParallelMode : ForceParallelMode
clientMinMessages : LogLevel
logMinMessages : LogLevel
logMinErrorStatement : LogLevel
logMinDurationStatement : google.protobuf.Int64Value
in milliseconds.
logCheckpoints : google.protobuf.BoolValue
logConnections : google.protobuf.BoolValue
logDisconnections : google.protobuf.BoolValue
logDuration : google.protobuf.BoolValue
logErrorVerbosity : LogErrorVerbosity
logLockWaits : google.protobuf.BoolValue
logStatement : LogStatement
logTempFiles : google.protobuf.Int64Value
searchPath : string
rowSecurity : google.protobuf.BoolValue
defaultTransactionIsolation : TransactionIsolation
statementTimeout : google.protobuf.Int64Value
in milliseconds.
lockTimeout : google.protobuf.Int64Value
in milliseconds.
idleInTransactionSessionTimeout : google.protobuf.Int64Value
in milliseconds.
byteaOutput : ByteaOutput
xmlbinary : XmlBinary
xmloption : XmlOption
ginPendingListLimit : google.protobuf.Int64Value
in bytes.
deadlockTimeout : google.protobuf.Int64Value
in milliseconds.
maxLocksPerTransaction : google.protobuf.Int64Value
maxPredLocksPerTransaction : google.protobuf.Int64Value
arrayNulls : google.protobuf.BoolValue
backslashQuote : BackslashQuote
defaultWithOids : google.protobuf.BoolValue
escapeStringWarning : google.protobuf.BoolValue
loCompatPrivileges : google.protobuf.BoolValue
operatorPrecedenceWarning : google.protobuf.BoolValue
quoteAllIdentifiers : google.protobuf.BoolValue
standardConformingStrings : google.protobuf.BoolValue
synchronizeSeqscans : google.protobuf.BoolValue
transformNullEquals : google.protobuf.BoolValue
exitOnError : google.protobuf.BoolValue
seqPageCost : google.protobuf.DoubleValue
randomPageCost : google.protobuf.DoubleValue
enableBitmapscan : google.protobuf.BoolValue
enableHashagg : google.protobuf.BoolValue
enableHashjoin : google.protobuf.BoolValue
enableIndexscan : google.protobuf.BoolValue
enableIndexonlyscan : google.protobuf.BoolValue
enableMaterial : google.protobuf.BoolValue
enableMergejoin : google.protobuf.BoolValue
enableNestloop : google.protobuf.BoolValue
enableSeqscan : google.protobuf.BoolValue
enableSort : google.protobuf.BoolValue
enableTidscan : google.protobuf.BoolValue
maxParallelWorkers : google.protobuf.Int64Value
maxParallelWorkersPerGather : google.protobuf.Int64Value
timezone : string
effectiveIoConcurrency : google.protobuf.Int64Value
effectiveCacheSize : google.protobuf.Int64Value
PostgresqlHostConfig14
Options and structure of PostgresqlConfig reflects PostgreSQL configuration file
parameters which detailed description is available in
PostgreSQL documentation.
BackslashQuote
BACKSLASH_QUOTE_UNSPECIFIEDBACKSLASH_QUOTEBACKSLASH_QUOTE_ONBACKSLASH_QUOTE_OFFBACKSLASH_QUOTE_SAFE_ENCODING
ByteaOutput
BYTEA_OUTPUT_UNSPECIFIEDBYTEA_OUTPUT_HEXBYTEA_OUTPUT_ESCAPED
ConstraintExclusion
CONSTRAINT_EXCLUSION_UNSPECIFIEDCONSTRAINT_EXCLUSION_ONCONSTRAINT_EXCLUSION_OFFCONSTRAINT_EXCLUSION_PARTITION
ForceParallelMode
FORCE_PARALLEL_MODE_UNSPECIFIEDFORCE_PARALLEL_MODE_ONFORCE_PARALLEL_MODE_OFFFORCE_PARALLEL_MODE_REGRESS
LogErrorVerbosity
LOG_ERROR_VERBOSITY_UNSPECIFIEDLOG_ERROR_VERBOSITY_TERSELOG_ERROR_VERBOSITY_DEFAULTLOG_ERROR_VERBOSITY_VERBOSE
LogLevel
LOG_LEVEL_UNSPECIFIEDLOG_LEVEL_DEBUG5LOG_LEVEL_DEBUG4LOG_LEVEL_DEBUG3LOG_LEVEL_DEBUG2LOG_LEVEL_DEBUG1LOG_LEVEL_LOGLOG_LEVEL_NOTICELOG_LEVEL_WARNINGLOG_LEVEL_ERRORLOG_LEVEL_FATALLOG_LEVEL_PANIC
LogStatement
LOG_STATEMENT_UNSPECIFIEDLOG_STATEMENT_NONELOG_STATEMENT_DDLLOG_STATEMENT_MODLOG_STATEMENT_ALL
TransactionIsolation
TRANSACTION_ISOLATION_UNSPECIFIEDTRANSACTION_ISOLATION_READ_UNCOMMITTEDTRANSACTION_ISOLATION_READ_COMMITTEDTRANSACTION_ISOLATION_REPEATABLE_READTRANSACTION_ISOLATION_SERIALIZABLE
XmlBinary
XML_BINARY_UNSPECIFIEDXML_BINARY_BASE64XML_BINARY_HEX
XmlOption
XML_OPTION_UNSPECIFIEDXML_OPTION_DOCUMENTXML_OPTION_CONTENT
recoveryMinApplyDelay : google.protobuf.Int64Value
in milliseconds.
sharedBuffers : google.protobuf.Int64Value
in bytes.
tempBuffers : google.protobuf.Int64Value
in bytes.
workMem : google.protobuf.Int64Value
in bytes.
tempFileLimit : google.protobuf.Int64Value
in bytes.
backendFlushAfter : google.protobuf.Int64Value
oldSnapshotThreshold : google.protobuf.Int64Value
maxStandbyStreamingDelay : google.protobuf.Int64Value
in milliseconds.
constraintExclusion : ConstraintExclusion
cursorTupleFraction : google.protobuf.DoubleValue
fromCollapseLimit : google.protobuf.Int64Value
joinCollapseLimit : google.protobuf.Int64Value
forceParallelMode : ForceParallelMode
clientMinMessages : LogLevel
logMinMessages : LogLevel
logMinErrorStatement : LogLevel
logMinDurationStatement : google.protobuf.Int64Value
in milliseconds.
logCheckpoints : google.protobuf.BoolValue
logConnections : google.protobuf.BoolValue
logDisconnections : google.protobuf.BoolValue
logDuration : google.protobuf.BoolValue
logErrorVerbosity : LogErrorVerbosity
logLockWaits : google.protobuf.BoolValue
logStatement : LogStatement
logTempFiles : google.protobuf.Int64Value
searchPath : string
rowSecurity : google.protobuf.BoolValue
defaultTransactionIsolation : TransactionIsolation
statementTimeout : google.protobuf.Int64Value
in milliseconds.
lockTimeout : google.protobuf.Int64Value
in milliseconds.
idleInTransactionSessionTimeout : google.protobuf.Int64Value
in milliseconds.
byteaOutput : ByteaOutput
xmlbinary : XmlBinary
xmloption : XmlOption
ginPendingListLimit : google.protobuf.Int64Value
in bytes.
deadlockTimeout : google.protobuf.Int64Value
in milliseconds.
maxLocksPerTransaction : google.protobuf.Int64Value
maxPredLocksPerTransaction : google.protobuf.Int64Value
arrayNulls : google.protobuf.BoolValue
backslashQuote : BackslashQuote
defaultWithOids : google.protobuf.BoolValue
escapeStringWarning : google.protobuf.BoolValue
loCompatPrivileges : google.protobuf.BoolValue
quoteAllIdentifiers : google.protobuf.BoolValue
standardConformingStrings : google.protobuf.BoolValue
synchronizeSeqscans : google.protobuf.BoolValue
transformNullEquals : google.protobuf.BoolValue
exitOnError : google.protobuf.BoolValue
seqPageCost : google.protobuf.DoubleValue
randomPageCost : google.protobuf.DoubleValue
enableBitmapscan : google.protobuf.BoolValue
enableHashagg : google.protobuf.BoolValue
enableHashjoin : google.protobuf.BoolValue
enableIndexscan : google.protobuf.BoolValue
enableIndexonlyscan : google.protobuf.BoolValue
enableMaterial : google.protobuf.BoolValue
enableMergejoin : google.protobuf.BoolValue
enableNestloop : google.protobuf.BoolValue
enableSeqscan : google.protobuf.BoolValue
enableSort : google.protobuf.BoolValue
enableTidscan : google.protobuf.BoolValue
maxParallelWorkers : google.protobuf.Int64Value
maxParallelWorkersPerGather : google.protobuf.Int64Value
timezone : string
effectiveIoConcurrency : google.protobuf.Int64Value
effectiveCacheSize : google.protobuf.Int64Value
PostgresqlHostConfig14_1C
Options and structure of PostgresqlConfig reflects PostgreSQL configuration file
parameters which detailed description is available in
PostgreSQL documentation.
BackslashQuote
BACKSLASH_QUOTE_UNSPECIFIEDBACKSLASH_QUOTEBACKSLASH_QUOTE_ONBACKSLASH_QUOTE_OFFBACKSLASH_QUOTE_SAFE_ENCODING
ByteaOutput
BYTEA_OUTPUT_UNSPECIFIEDBYTEA_OUTPUT_HEXBYTEA_OUTPUT_ESCAPED
ConstraintExclusion
CONSTRAINT_EXCLUSION_UNSPECIFIEDCONSTRAINT_EXCLUSION_ONCONSTRAINT_EXCLUSION_OFFCONSTRAINT_EXCLUSION_PARTITION
ForceParallelMode
FORCE_PARALLEL_MODE_UNSPECIFIEDFORCE_PARALLEL_MODE_ONFORCE_PARALLEL_MODE_OFFFORCE_PARALLEL_MODE_REGRESS
LogErrorVerbosity
LOG_ERROR_VERBOSITY_UNSPECIFIEDLOG_ERROR_VERBOSITY_TERSELOG_ERROR_VERBOSITY_DEFAULTLOG_ERROR_VERBOSITY_VERBOSE
LogLevel
LOG_LEVEL_UNSPECIFIEDLOG_LEVEL_DEBUG5LOG_LEVEL_DEBUG4LOG_LEVEL_DEBUG3LOG_LEVEL_DEBUG2LOG_LEVEL_DEBUG1LOG_LEVEL_LOGLOG_LEVEL_NOTICELOG_LEVEL_WARNINGLOG_LEVEL_ERRORLOG_LEVEL_FATALLOG_LEVEL_PANIC
LogStatement
LOG_STATEMENT_UNSPECIFIEDLOG_STATEMENT_NONELOG_STATEMENT_DDLLOG_STATEMENT_MODLOG_STATEMENT_ALL
TransactionIsolation
TRANSACTION_ISOLATION_UNSPECIFIEDTRANSACTION_ISOLATION_READ_UNCOMMITTEDTRANSACTION_ISOLATION_READ_COMMITTEDTRANSACTION_ISOLATION_REPEATABLE_READTRANSACTION_ISOLATION_SERIALIZABLE
XmlBinary
XML_BINARY_UNSPECIFIEDXML_BINARY_BASE64XML_BINARY_HEX
XmlOption
XML_OPTION_UNSPECIFIEDXML_OPTION_DOCUMENTXML_OPTION_CONTENT
recoveryMinApplyDelay : google.protobuf.Int64Value
in milliseconds.
sharedBuffers : google.protobuf.Int64Value
in bytes.
tempBuffers : google.protobuf.Int64Value
in bytes.
workMem : google.protobuf.Int64Value
in bytes.
tempFileLimit : google.protobuf.Int64Value
in bytes.
backendFlushAfter : google.protobuf.Int64Value
oldSnapshotThreshold : google.protobuf.Int64Value
maxStandbyStreamingDelay : google.protobuf.Int64Value
in milliseconds.
constraintExclusion : ConstraintExclusion
cursorTupleFraction : google.protobuf.DoubleValue
fromCollapseLimit : google.protobuf.Int64Value
joinCollapseLimit : google.protobuf.Int64Value
forceParallelMode : ForceParallelMode
clientMinMessages : LogLevel
logMinMessages : LogLevel
logMinErrorStatement : LogLevel
logMinDurationStatement : google.protobuf.Int64Value
in milliseconds.
logCheckpoints : google.protobuf.BoolValue
logConnections : google.protobuf.BoolValue
logDisconnections : google.protobuf.BoolValue
logDuration : google.protobuf.BoolValue
logErrorVerbosity : LogErrorVerbosity
logLockWaits : google.protobuf.BoolValue
logStatement : LogStatement
logTempFiles : google.protobuf.Int64Value
searchPath : string
rowSecurity : google.protobuf.BoolValue
defaultTransactionIsolation : TransactionIsolation
statementTimeout : google.protobuf.Int64Value
in milliseconds.
lockTimeout : google.protobuf.Int64Value
in milliseconds.
idleInTransactionSessionTimeout : google.protobuf.Int64Value
in milliseconds.
byteaOutput : ByteaOutput
xmlbinary : XmlBinary
xmloption : XmlOption
ginPendingListLimit : google.protobuf.Int64Value
in bytes.
deadlockTimeout : google.protobuf.Int64Value
in milliseconds.
maxLocksPerTransaction : google.protobuf.Int64Value
maxPredLocksPerTransaction : google.protobuf.Int64Value
arrayNulls : google.protobuf.BoolValue
backslashQuote : BackslashQuote
defaultWithOids : google.protobuf.BoolValue
escapeStringWarning : google.protobuf.BoolValue
loCompatPrivileges : google.protobuf.BoolValue
quoteAllIdentifiers : google.protobuf.BoolValue
standardConformingStrings : google.protobuf.BoolValue
synchronizeSeqscans : google.protobuf.BoolValue
transformNullEquals : google.protobuf.BoolValue
exitOnError : google.protobuf.BoolValue
seqPageCost : google.protobuf.DoubleValue
randomPageCost : google.protobuf.DoubleValue
enableBitmapscan : google.protobuf.BoolValue
enableHashagg : google.protobuf.BoolValue
enableHashjoin : google.protobuf.BoolValue
enableIndexscan : google.protobuf.BoolValue
enableIndexonlyscan : google.protobuf.BoolValue
enableMaterial : google.protobuf.BoolValue
enableMergejoin : google.protobuf.BoolValue
enableNestloop : google.protobuf.BoolValue
enableSeqscan : google.protobuf.BoolValue
enableSort : google.protobuf.BoolValue
enableTidscan : google.protobuf.BoolValue
maxParallelWorkers : google.protobuf.Int64Value
maxParallelWorkersPerGather : google.protobuf.Int64Value
timezone : string
effectiveIoConcurrency : google.protobuf.Int64Value
effectiveCacheSize : google.protobuf.Int64Value
PostgresqlHostConfig15
Options and structure of PostgresqlConfig reflects PostgreSQL configuration file
parameters which detailed description is available in
PostgreSQL documentation.
BackslashQuote
BACKSLASH_QUOTE_UNSPECIFIEDBACKSLASH_QUOTEBACKSLASH_QUOTE_ONBACKSLASH_QUOTE_OFFBACKSLASH_QUOTE_SAFE_ENCODING
ByteaOutput
BYTEA_OUTPUT_UNSPECIFIEDBYTEA_OUTPUT_HEXBYTEA_OUTPUT_ESCAPED
ConstraintExclusion
CONSTRAINT_EXCLUSION_UNSPECIFIEDCONSTRAINT_EXCLUSION_ONCONSTRAINT_EXCLUSION_OFFCONSTRAINT_EXCLUSION_PARTITION
ForceParallelMode
FORCE_PARALLEL_MODE_UNSPECIFIEDFORCE_PARALLEL_MODE_ONFORCE_PARALLEL_MODE_OFFFORCE_PARALLEL_MODE_REGRESS
LogErrorVerbosity
LOG_ERROR_VERBOSITY_UNSPECIFIEDLOG_ERROR_VERBOSITY_TERSELOG_ERROR_VERBOSITY_DEFAULTLOG_ERROR_VERBOSITY_VERBOSE
LogLevel
LOG_LEVEL_UNSPECIFIEDLOG_LEVEL_DEBUG5LOG_LEVEL_DEBUG4LOG_LEVEL_DEBUG3LOG_LEVEL_DEBUG2LOG_LEVEL_DEBUG1LOG_LEVEL_LOGLOG_LEVEL_NOTICELOG_LEVEL_WARNINGLOG_LEVEL_ERRORLOG_LEVEL_FATALLOG_LEVEL_PANIC
LogStatement
LOG_STATEMENT_UNSPECIFIEDLOG_STATEMENT_NONELOG_STATEMENT_DDLLOG_STATEMENT_MODLOG_STATEMENT_ALL
TransactionIsolation
TRANSACTION_ISOLATION_UNSPECIFIEDTRANSACTION_ISOLATION_READ_UNCOMMITTEDTRANSACTION_ISOLATION_READ_COMMITTEDTRANSACTION_ISOLATION_REPEATABLE_READTRANSACTION_ISOLATION_SERIALIZABLE
XmlBinary
XML_BINARY_UNSPECIFIEDXML_BINARY_BASE64XML_BINARY_HEX
XmlOption
XML_OPTION_UNSPECIFIEDXML_OPTION_DOCUMENTXML_OPTION_CONTENT
recoveryMinApplyDelay : google.protobuf.Int64Value
in milliseconds.
sharedBuffers : google.protobuf.Int64Value
in bytes.
tempBuffers : google.protobuf.Int64Value
in bytes.
workMem : google.protobuf.Int64Value
in bytes.
tempFileLimit : google.protobuf.Int64Value
in bytes.
backendFlushAfter : google.protobuf.Int64Value
oldSnapshotThreshold : google.protobuf.Int64Value
maxStandbyStreamingDelay : google.protobuf.Int64Value
in milliseconds.
constraintExclusion : ConstraintExclusion
cursorTupleFraction : google.protobuf.DoubleValue
fromCollapseLimit : google.protobuf.Int64Value
joinCollapseLimit : google.protobuf.Int64Value
forceParallelMode : ForceParallelMode
clientMinMessages : LogLevel
logMinMessages : LogLevel
logMinErrorStatement : LogLevel
logMinDurationStatement : google.protobuf.Int64Value
in milliseconds.
logCheckpoints : google.protobuf.BoolValue
logConnections : google.protobuf.BoolValue
logDisconnections : google.protobuf.BoolValue
logDuration : google.protobuf.BoolValue
logErrorVerbosity : LogErrorVerbosity
logLockWaits : google.protobuf.BoolValue
logStatement : LogStatement
logTempFiles : google.protobuf.Int64Value
searchPath : string
rowSecurity : google.protobuf.BoolValue
defaultTransactionIsolation : TransactionIsolation
statementTimeout : google.protobuf.Int64Value
in milliseconds.
lockTimeout : google.protobuf.Int64Value
in milliseconds.
idleInTransactionSessionTimeout : google.protobuf.Int64Value
in milliseconds.
byteaOutput : ByteaOutput
xmlbinary : XmlBinary
xmloption : XmlOption
ginPendingListLimit : google.protobuf.Int64Value
in bytes.
deadlockTimeout : google.protobuf.Int64Value
in milliseconds.
maxLocksPerTransaction : google.protobuf.Int64Value
maxPredLocksPerTransaction : google.protobuf.Int64Value
arrayNulls : google.protobuf.BoolValue
backslashQuote : BackslashQuote
defaultWithOids : google.protobuf.BoolValue
escapeStringWarning : google.protobuf.BoolValue
loCompatPrivileges : google.protobuf.BoolValue
quoteAllIdentifiers : google.protobuf.BoolValue
standardConformingStrings : google.protobuf.BoolValue
synchronizeSeqscans : google.protobuf.BoolValue
transformNullEquals : google.protobuf.BoolValue
exitOnError : google.protobuf.BoolValue
seqPageCost : google.protobuf.DoubleValue
randomPageCost : google.protobuf.DoubleValue
enableBitmapscan : google.protobuf.BoolValue
enableHashagg : google.protobuf.BoolValue
enableHashjoin : google.protobuf.BoolValue
enableIndexscan : google.protobuf.BoolValue
enableIndexonlyscan : google.protobuf.BoolValue
enableMaterial : google.protobuf.BoolValue
enableMergejoin : google.protobuf.BoolValue
enableNestloop : google.protobuf.BoolValue
enableSeqscan : google.protobuf.BoolValue
enableSort : google.protobuf.BoolValue
enableTidscan : google.protobuf.BoolValue
maxParallelWorkers : google.protobuf.Int64Value
maxParallelWorkersPerGather : google.protobuf.Int64Value
timezone : string
effectiveIoConcurrency : google.protobuf.Int64Value
effectiveCacheSize : google.protobuf.Int64Value
PostgresqlHostConfig15_1C
Options and structure of PostgresqlConfig reflects PostgreSQL configuration file
parameters which detailed description is available in
PostgreSQL documentation.
BackslashQuote
BACKSLASH_QUOTE_UNSPECIFIEDBACKSLASH_QUOTEBACKSLASH_QUOTE_ONBACKSLASH_QUOTE_OFFBACKSLASH_QUOTE_SAFE_ENCODING
ByteaOutput
BYTEA_OUTPUT_UNSPECIFIEDBYTEA_OUTPUT_HEXBYTEA_OUTPUT_ESCAPED
ConstraintExclusion
CONSTRAINT_EXCLUSION_UNSPECIFIEDCONSTRAINT_EXCLUSION_ONCONSTRAINT_EXCLUSION_OFFCONSTRAINT_EXCLUSION_PARTITION
ForceParallelMode
FORCE_PARALLEL_MODE_UNSPECIFIEDFORCE_PARALLEL_MODE_ONFORCE_PARALLEL_MODE_OFFFORCE_PARALLEL_MODE_REGRESS
LogErrorVerbosity
LOG_ERROR_VERBOSITY_UNSPECIFIEDLOG_ERROR_VERBOSITY_TERSELOG_ERROR_VERBOSITY_DEFAULTLOG_ERROR_VERBOSITY_VERBOSE
LogLevel
LOG_LEVEL_UNSPECIFIEDLOG_LEVEL_DEBUG5LOG_LEVEL_DEBUG4LOG_LEVEL_DEBUG3LOG_LEVEL_DEBUG2LOG_LEVEL_DEBUG1LOG_LEVEL_LOGLOG_LEVEL_NOTICELOG_LEVEL_WARNINGLOG_LEVEL_ERRORLOG_LEVEL_FATALLOG_LEVEL_PANIC
LogStatement
LOG_STATEMENT_UNSPECIFIEDLOG_STATEMENT_NONELOG_STATEMENT_DDLLOG_STATEMENT_MODLOG_STATEMENT_ALL
TransactionIsolation
TRANSACTION_ISOLATION_UNSPECIFIEDTRANSACTION_ISOLATION_READ_UNCOMMITTEDTRANSACTION_ISOLATION_READ_COMMITTEDTRANSACTION_ISOLATION_REPEATABLE_READTRANSACTION_ISOLATION_SERIALIZABLE
XmlBinary
XML_BINARY_UNSPECIFIEDXML_BINARY_BASE64XML_BINARY_HEX
XmlOption
XML_OPTION_UNSPECIFIEDXML_OPTION_DOCUMENTXML_OPTION_CONTENT
recoveryMinApplyDelay : google.protobuf.Int64Value
in milliseconds.
sharedBuffers : google.protobuf.Int64Value
in bytes.
tempBuffers : google.protobuf.Int64Value
in bytes.
workMem : google.protobuf.Int64Value
in bytes.
tempFileLimit : google.protobuf.Int64Value
in bytes.
backendFlushAfter : google.protobuf.Int64Value
oldSnapshotThreshold : google.protobuf.Int64Value
maxStandbyStreamingDelay : google.protobuf.Int64Value
in milliseconds.
constraintExclusion : ConstraintExclusion
cursorTupleFraction : google.protobuf.DoubleValue
fromCollapseLimit : google.protobuf.Int64Value
joinCollapseLimit : google.protobuf.Int64Value
forceParallelMode : ForceParallelMode
clientMinMessages : LogLevel
logMinMessages : LogLevel
logMinErrorStatement : LogLevel
logMinDurationStatement : google.protobuf.Int64Value
in milliseconds.
logCheckpoints : google.protobuf.BoolValue
logConnections : google.protobuf.BoolValue
logDisconnections : google.protobuf.BoolValue
logDuration : google.protobuf.BoolValue
logErrorVerbosity : LogErrorVerbosity
logLockWaits : google.protobuf.BoolValue
logStatement : LogStatement
logTempFiles : google.protobuf.Int64Value
searchPath : string
rowSecurity : google.protobuf.BoolValue
defaultTransactionIsolation : TransactionIsolation
statementTimeout : google.protobuf.Int64Value
in milliseconds.
lockTimeout : google.protobuf.Int64Value
in milliseconds.
idleInTransactionSessionTimeout : google.protobuf.Int64Value
in milliseconds.
byteaOutput : ByteaOutput
xmlbinary : XmlBinary
xmloption : XmlOption
ginPendingListLimit : google.protobuf.Int64Value
in bytes.
deadlockTimeout : google.protobuf.Int64Value
in milliseconds.
maxLocksPerTransaction : google.protobuf.Int64Value
maxPredLocksPerTransaction : google.protobuf.Int64Value
arrayNulls : google.protobuf.BoolValue
backslashQuote : BackslashQuote
defaultWithOids : google.protobuf.BoolValue
escapeStringWarning : google.protobuf.BoolValue
loCompatPrivileges : google.protobuf.BoolValue
quoteAllIdentifiers : google.protobuf.BoolValue
standardConformingStrings : google.protobuf.BoolValue
synchronizeSeqscans : google.protobuf.BoolValue
transformNullEquals : google.protobuf.BoolValue
exitOnError : google.protobuf.BoolValue
seqPageCost : google.protobuf.DoubleValue
randomPageCost : google.protobuf.DoubleValue
enableBitmapscan : google.protobuf.BoolValue
enableHashagg : google.protobuf.BoolValue
enableHashjoin : google.protobuf.BoolValue
enableIndexscan : google.protobuf.BoolValue
enableIndexonlyscan : google.protobuf.BoolValue
enableMaterial : google.protobuf.BoolValue
enableMergejoin : google.protobuf.BoolValue
enableNestloop : google.protobuf.BoolValue
enableSeqscan : google.protobuf.BoolValue
enableSort : google.protobuf.BoolValue
enableTidscan : google.protobuf.BoolValue
maxParallelWorkers : google.protobuf.Int64Value
maxParallelWorkersPerGather : google.protobuf.Int64Value
timezone : string
effectiveIoConcurrency : google.protobuf.Int64Value
effectiveCacheSize : google.protobuf.Int64Value
PostgresqlHostConfig16
Options and structure of PostgresqlConfig reflects PostgreSQL configuration file
parameters which detailed description is available in
PostgreSQL documentation.
BackslashQuote
BACKSLASH_QUOTE_UNSPECIFIEDBACKSLASH_QUOTEBACKSLASH_QUOTE_ONBACKSLASH_QUOTE_OFFBACKSLASH_QUOTE_SAFE_ENCODING
ByteaOutput
BYTEA_OUTPUT_UNSPECIFIEDBYTEA_OUTPUT_HEXBYTEA_OUTPUT_ESCAPED
ConstraintExclusion
CONSTRAINT_EXCLUSION_UNSPECIFIEDCONSTRAINT_EXCLUSION_ONCONSTRAINT_EXCLUSION_OFFCONSTRAINT_EXCLUSION_PARTITION
DebugParallelQuery
DEBUG_PARALLEL_QUERY_UNSPECIFIEDDEBUG_PARALLEL_QUERY_ONDEBUG_PARALLEL_QUERY_OFFDEBUG_PARALLEL_QUERY_REGRESS
ForceParallelMode
FORCE_PARALLEL_MODE_UNSPECIFIEDFORCE_PARALLEL_MODE_ONFORCE_PARALLEL_MODE_OFFFORCE_PARALLEL_MODE_REGRESS
LogErrorVerbosity
LOG_ERROR_VERBOSITY_UNSPECIFIEDLOG_ERROR_VERBOSITY_TERSELOG_ERROR_VERBOSITY_DEFAULTLOG_ERROR_VERBOSITY_VERBOSE
LogLevel
LOG_LEVEL_UNSPECIFIEDLOG_LEVEL_DEBUG5LOG_LEVEL_DEBUG4LOG_LEVEL_DEBUG3LOG_LEVEL_DEBUG2LOG_LEVEL_DEBUG1LOG_LEVEL_INFOLOG_LEVEL_LOGLOG_LEVEL_NOTICELOG_LEVEL_WARNINGLOG_LEVEL_ERRORLOG_LEVEL_FATALLOG_LEVEL_PANIC
LogStatement
LOG_STATEMENT_UNSPECIFIEDLOG_STATEMENT_NONELOG_STATEMENT_DDLLOG_STATEMENT_MODLOG_STATEMENT_ALL
TransactionIsolation
TRANSACTION_ISOLATION_UNSPECIFIEDTRANSACTION_ISOLATION_READ_UNCOMMITTEDTRANSACTION_ISOLATION_READ_COMMITTEDTRANSACTION_ISOLATION_REPEATABLE_READTRANSACTION_ISOLATION_SERIALIZABLE
XmlBinary
XML_BINARY_UNSPECIFIEDXML_BINARY_BASE64XML_BINARY_HEX
XmlOption
XML_OPTION_UNSPECIFIEDXML_OPTION_DOCUMENTXML_OPTION_CONTENT
recoveryMinApplyDelay : google.protobuf.Int64Value
in milliseconds.
sharedBuffers : google.protobuf.Int64Value
in bytes.
tempBuffers : google.protobuf.Int64Value
in bytes.
workMem : google.protobuf.Int64Value
in bytes.
tempFileLimit : google.protobuf.Int64Value
in bytes.
backendFlushAfter : google.protobuf.Int64Value
oldSnapshotThreshold : google.protobuf.Int64Value
maxStandbyStreamingDelay : google.protobuf.Int64Value
in milliseconds.
constraintExclusion : ConstraintExclusion
cursorTupleFraction : google.protobuf.DoubleValue
fromCollapseLimit : google.protobuf.Int64Value
joinCollapseLimit : google.protobuf.Int64Value
debugParallelQuery : DebugParallelQuery
clientMinMessages : LogLevel
logMinMessages : LogLevel
logMinErrorStatement : LogLevel
logMinDurationStatement : google.protobuf.Int64Value
in milliseconds.
logCheckpoints : google.protobuf.BoolValue
logConnections : google.protobuf.BoolValue
logDisconnections : google.protobuf.BoolValue
logDuration : google.protobuf.BoolValue
logErrorVerbosity : LogErrorVerbosity
logLockWaits : google.protobuf.BoolValue
logStatement : LogStatement
logTempFiles : google.protobuf.Int64Value
searchPath : string
rowSecurity : google.protobuf.BoolValue
defaultTransactionIsolation : TransactionIsolation
statementTimeout : google.protobuf.Int64Value
in milliseconds.
lockTimeout : google.protobuf.Int64Value
in milliseconds.
idleInTransactionSessionTimeout : google.protobuf.Int64Value
in milliseconds.
byteaOutput : ByteaOutput
xmlbinary : XmlBinary
xmloption : XmlOption
ginPendingListLimit : google.protobuf.Int64Value
in bytes.
deadlockTimeout : google.protobuf.Int64Value
in milliseconds.
maxLocksPerTransaction : google.protobuf.Int64Value
maxPredLocksPerTransaction : google.protobuf.Int64Value
arrayNulls : google.protobuf.BoolValue
backslashQuote : BackslashQuote
defaultWithOids : google.protobuf.BoolValue
escapeStringWarning : google.protobuf.BoolValue
loCompatPrivileges : google.protobuf.BoolValue
quoteAllIdentifiers : google.protobuf.BoolValue
standardConformingStrings : google.protobuf.BoolValue
synchronizeSeqscans : google.protobuf.BoolValue
transformNullEquals : google.protobuf.BoolValue
exitOnError : google.protobuf.BoolValue
seqPageCost : google.protobuf.DoubleValue
randomPageCost : google.protobuf.DoubleValue
enableBitmapscan : google.protobuf.BoolValue
enableHashagg : google.protobuf.BoolValue
enableHashjoin : google.protobuf.BoolValue
enableIndexscan : google.protobuf.BoolValue
enableIndexonlyscan : google.protobuf.BoolValue
enableMaterial : google.protobuf.BoolValue
enableMergejoin : google.protobuf.BoolValue
enableNestloop : google.protobuf.BoolValue
enableSeqscan : google.protobuf.BoolValue
enableSort : google.protobuf.BoolValue
enableTidscan : google.protobuf.BoolValue
maxParallelWorkers : google.protobuf.Int64Value
maxParallelWorkersPerGather : google.protobuf.Int64Value
timezone : string
effectiveIoConcurrency : google.protobuf.Int64Value
effectiveCacheSize : google.protobuf.Int64Value
PostgresqlHostConfig16_1C
Options and structure of PostgresqlConfig reflects PostgreSQL configuration file
parameters which detailed description is available in
PostgreSQL documentation.
BackslashQuote
BACKSLASH_QUOTE_UNSPECIFIEDBACKSLASH_QUOTEBACKSLASH_QUOTE_ONBACKSLASH_QUOTE_OFFBACKSLASH_QUOTE_SAFE_ENCODING
ByteaOutput
BYTEA_OUTPUT_UNSPECIFIEDBYTEA_OUTPUT_HEXBYTEA_OUTPUT_ESCAPED
ConstraintExclusion
CONSTRAINT_EXCLUSION_UNSPECIFIEDCONSTRAINT_EXCLUSION_ONCONSTRAINT_EXCLUSION_OFFCONSTRAINT_EXCLUSION_PARTITION
DebugParallelQuery
DEBUG_PARALLEL_QUERY_UNSPECIFIEDDEBUG_PARALLEL_QUERY_ONDEBUG_PARALLEL_QUERY_OFFDEBUG_PARALLEL_QUERY_REGRESS
ForceParallelMode
FORCE_PARALLEL_MODE_UNSPECIFIEDFORCE_PARALLEL_MODE_ONFORCE_PARALLEL_MODE_OFFFORCE_PARALLEL_MODE_REGRESS
LogErrorVerbosity
LOG_ERROR_VERBOSITY_UNSPECIFIEDLOG_ERROR_VERBOSITY_TERSELOG_ERROR_VERBOSITY_DEFAULTLOG_ERROR_VERBOSITY_VERBOSE
LogLevel
LOG_LEVEL_UNSPECIFIEDLOG_LEVEL_DEBUG5LOG_LEVEL_DEBUG4LOG_LEVEL_DEBUG3LOG_LEVEL_DEBUG2LOG_LEVEL_DEBUG1LOG_LEVEL_INFOLOG_LEVEL_LOGLOG_LEVEL_NOTICELOG_LEVEL_WARNINGLOG_LEVEL_ERRORLOG_LEVEL_FATALLOG_LEVEL_PANIC
LogStatement
LOG_STATEMENT_UNSPECIFIEDLOG_STATEMENT_NONELOG_STATEMENT_DDLLOG_STATEMENT_MODLOG_STATEMENT_ALL
TransactionIsolation
TRANSACTION_ISOLATION_UNSPECIFIEDTRANSACTION_ISOLATION_READ_UNCOMMITTEDTRANSACTION_ISOLATION_READ_COMMITTEDTRANSACTION_ISOLATION_REPEATABLE_READTRANSACTION_ISOLATION_SERIALIZABLE
XmlBinary
XML_BINARY_UNSPECIFIEDXML_BINARY_BASE64XML_BINARY_HEX
XmlOption
XML_OPTION_UNSPECIFIEDXML_OPTION_DOCUMENTXML_OPTION_CONTENT
recoveryMinApplyDelay : google.protobuf.Int64Value
in milliseconds.
sharedBuffers : google.protobuf.Int64Value
in bytes.
tempBuffers : google.protobuf.Int64Value
in bytes.
workMem : google.protobuf.Int64Value
in bytes.
tempFileLimit : google.protobuf.Int64Value
in bytes.
backendFlushAfter : google.protobuf.Int64Value
oldSnapshotThreshold : google.protobuf.Int64Value
maxStandbyStreamingDelay : google.protobuf.Int64Value
in milliseconds.
constraintExclusion : ConstraintExclusion
cursorTupleFraction : google.protobuf.DoubleValue
fromCollapseLimit : google.protobuf.Int64Value
joinCollapseLimit : google.protobuf.Int64Value
debugParallelQuery : DebugParallelQuery
clientMinMessages : LogLevel
logMinMessages : LogLevel
logMinErrorStatement : LogLevel
logMinDurationStatement : google.protobuf.Int64Value
in milliseconds.
logCheckpoints : google.protobuf.BoolValue
logConnections : google.protobuf.BoolValue
logDisconnections : google.protobuf.BoolValue
logDuration : google.protobuf.BoolValue
logErrorVerbosity : LogErrorVerbosity
logLockWaits : google.protobuf.BoolValue
logStatement : LogStatement
logTempFiles : google.protobuf.Int64Value
searchPath : string
rowSecurity : google.protobuf.BoolValue
defaultTransactionIsolation : TransactionIsolation
statementTimeout : google.protobuf.Int64Value
in milliseconds.
lockTimeout : google.protobuf.Int64Value
in milliseconds.
idleInTransactionSessionTimeout : google.protobuf.Int64Value
in milliseconds.
byteaOutput : ByteaOutput
xmlbinary : XmlBinary
xmloption : XmlOption
ginPendingListLimit : google.protobuf.Int64Value
in bytes.
deadlockTimeout : google.protobuf.Int64Value
in milliseconds.