Editing PXF settings
The PXF settings you can configure using the Yandex Cloud tools match those in the Greenplum® pxf-application.properties
To edit PXF settings:
-
Open the folder dashboard
. -
Navigate to the Yandex MPP Analytics for PostgreSQL service.
-
Click the cluster name and select
PXF in the left-hand panel. -
Click
Edit PXF settings at the top of the page. -
Edit the settings:
-
Connection Timeout: Timeout for connection to the Apache Tomcat® server when making read queries. The value range is from
5to600seconds. You can specify values in various time units. -
Upload Timeout: Timeout for connection to the Apache Tomcat® server when making write queries. The value range is from
5to600seconds. You can specify values in various time units. -
Max Threads: Maximum number of Apache Tomcat® threads. The value range is from
1to1024.To prevent requests from getting stuck or failing due to running out of memory or malfunctioning of the Java garbage collector, specify the number of Apache Tomcat® threads. Learn more about adjusting the number of threads in the guide on VMware Greenplum® Platform Extension Framework
. -
Pool Allow Core Thread Timeout: Whether or not a timeout for core streaming threads is allowed.
-
Pool Core Size: Number of core streaming threads per pool. The value range is from
1to1024. -
Pool Queue Capacity: Maximum number of queries you can add to a pool queue after core streaming threads. The values may range from zero upward. If
0, no pool queue is generated. -
Pool Max Size: Maximum allowed number of core streaming threads. The value range is from
1to1024. -
Xmx: Maximum size of the JVM heap for the PXF daemon. The value range is from
64to16384MB. You can specify values in various units. -
Xms: Initial size of the JVM heap for the PXF daemon. The value range is from
64to16384MB. You can specify values in various units.
-
-
Click Save.
If you do not have the Yandex Cloud CLI installed yet, install and initialize it.
By default, the CLI uses the folder specified when creating the profile. To change the default folder, use the yc config set folder-id <folder_ID> command. You can also set a different folder for any specific command using the --folder-name or --folder-id parameter.
To edit PXF settings:
-
See the description of the CLI command for updating a cluster configuration:
yc managed-greenplum cluster update --help -
Specify the PXF settings:
yc managed-greenplum cluster update <cluster_name_or_ID> \ --pxf-connection-timeout=<read_queries_timeout> \ --pxf-upload-timeout=<write_queries_timeout> \ --pxf-max-threads=<Maximum_number_of_Apache_Tomcat®_threads> \ --pxf-pool-allow-core-thread-timeout=<whether_a_timeout_for_core_streaming_threads_is_allowed> \ --pxf-poll-core-size=<number_of_streaming_threads> \ --pxf-pool-queue-capacity=<pool_queue_capacity_for_streaming_threads> \ --pxf-pool-max-size=<maximum_number_of_streaming_threads> \ --pxf-xmx=<maximum_size_of_the_JVM_heap> \ --pxf-xms=<initial_size_of_the_JVM_heap>Where:
-
pxf-connection-timeout: Timeout for connection to the Apache Tomcat® server when making read queries, in seconds. The value range is from5to600. -
pxf-upload-timeout: Timeout for connection to the Apache Tomcat® server when making write queries, in seconds. The value range is from5to600. -
pxf-max-threads: Maximum number of the Apache Tomcat® threads. The value range is from1to1024.To prevent requests from getting stuck or failing due to running out of memory or malfunctioning of the Java garbage collector, specify the number of Apache Tomcat® threads. Learn more about adjusting the number of threads in the guide on VMware Greenplum® Platform Extension Framework
. -
pxf-pool-allow-core-thread-timeout: Whether or not a timeout for core streaming threads is allowed. The default value isfalse. -
pxf-poll-core-size: Number of core streaming threads per pool. The value range is from1to1024. -
pxf-pool-queue-capacity: Maximum number of queries you can add to a pool queue after core streaming threads. The values may range from zero upward. If0, no pool queue is generated. -
pxf-pool-max-size: Maximum allowed number of core streaming threads. The value range is from1to1024. -
pxf-xmx: Maximum size of the JVM heap for the PXF daemon, in megabytes. The value range is from64to16384. -
pxf-xms: Initial size of the JVM heap for the PXF daemon, in megabytes. The value range is from64to16384.
You can get the cluster name with the list of clusters in the folder.
-
To edit PXF settings:
-
Open the current Terraform configuration file that defines your infrastructure.
For more information about creating this file, see Creating a Greenplum® cluster.
For a complete list of adjustable configuration fields for Greenplum® clusters, see the Terraform provider guide.
-
In the cluster description, under
pxf_config, configure the PXF settings:resource "yandex_mdb_greenplum_cluster" "<cluster_name>" { ... pxf_config { connection_timeout = <read_queries_timeout> upload_timeout = <write_queries_timeout> max_threads = <Maximum_number_of_Apache_Tomcat®_threads> pool_allow_core_thread_timeout = <whether_a_timeout_for_core_streaming_threads_is_allowed> pool_core_size = <number_of_streaming_threads> pool_queue_capacity = <pool_queue_capacity_for_streaming_threads> pool_max_size = <maximum_number_of_streaming_threads> xmx = <maximum_size_of_the_JVM_heap> xms = <initial_size_of_the_JVM_heap> } }Where:
-
connection_timeout: Timeout for connection to the Apache Tomcat® server when making read queries, in seconds. The value range is from5to600. -
upload_timeout: Timeout for connection to the Apache Tomcat® server when making write queries, in seconds. The value range is from5to600. -
max_threads: Maximum number of the Apache Tomcat® threads. The value range is from1to1024.To prevent requests from getting stuck or failing due to running out of memory or malfunctioning of the Java garbage collector, specify the number of Apache Tomcat® threads. Learn more about adjusting the number of threads in the guide on VMware Greenplum® Platform Extension Framework
. -
pool_allow_core_thread_timeout: Whether or not a timeout for core streaming threads is allowed. The default value isfalse. -
pool_core_size: Number of core streaming threads per pool. The value range is from1to1024. -
pool_queue_capacity: Maximum number of queries you can add to a pool queue after core streaming threads. The values may range from zero upward. If0, no pool queue is generated. -
pool_max_size: Maximum allowed number of core streaming threads. The value range is from1to1024. -
xmx: Maximum size of the JVM heap for the PXF daemon, in megabytes. The value range is from64to16384. -
xms: Initial size of the JVM heap for the PXF daemon, in megabytes. The value range is from64to16384.
-
-
Make sure the settings are correct.
-
In the command line, navigate to the directory that contains the current Terraform configuration files defining the infrastructure.
-
Run this command:
terraform validateTerraform will show any errors found in your configuration files.
-
-
Confirm updating the resources.
-
Run this command to view the planned changes:
terraform planIf you described the configuration correctly, the terminal will display a list of the resources to update and their parameters. This is a verification step that does not apply changes to your resources.
-
If everything looks correct, apply the changes:
-
Run this command:
terraform apply -
Confirm updating the resources.
-
Wait for the operation to complete.
-
-
-
Get an IAM token for API authentication and put it in an environment variable:
export IAM_TOKEN="<IAM_token>" -
Use the Cluster.Update method and send the following request, e.g., via cURL
:Warning
The API method will assign default values to all the parameters of the object you are modifying unless you explicitly provide them in your request. To avoid this, list the settings you want to change in the
updateMaskparameter as a single comma-separated string.curl \ --request PATCH \ --header "Authorization: Bearer $IAM_TOKEN" \ --header "Content-Type: application/json" \ --url 'https://mdb.api.cloud.yandex.net/managed-greenplum/v1/clusters/<cluster_ID>' \ --data '{ "updateMask": "configSpec.pxfConfig.connectionTimeout,configSpec.pxfConfig.uploadTimeout,configSpec.pxfConfig.maxThreads,configSpec.pxfConfig.poolAllowCoreThreadTimeout,configSpec.pxfConfig.poolCoreSize,configSpec.pxfConfig.poolQueueCapacity,configSpec.pxfConfig.poolMaxSize,configSpec.pxfConfig.xmx,configSpec.pxfConfig.xms", "configSpec": { "pxfConfig" : { "connectionTimeout": "<read_queries_timeout>", "uploadTimeout": "<write_queries_timeout>", "maxThreads": "<Maximum_number_of_Apache_Tomcat®_threads>", "poolAllowCoreThreadTimeout": <whether_a_timeout_for_core_streaming_threads_is_allowed>, "poolCoreSize": "<number_of_streaming_threads>", "poolQueueCapacity": "<pool_queue_capacity_for_streaming_threads>", "poolMaxSize": "<maximum_number_of_streaming_threads>", "xmx": "<maximum_size_of_the_JVM_heap>", "xms": "<initial_size_of_the_JVM_heap>" } } }'Where:
-
updateMask: Comma-separated string of settings you want to update. -
connectionTimeout: Timeout for connection to the Apache Tomcat® server when making read queries, in seconds. The value range is from5to600. -
uploadTimeout: Timeout for connection to the Apache Tomcat® server when making write queries, in seconds. The value range is from5to600. -
maxThreads: Maximum number of the Apache Tomcat® threads. The value range is from1to1024.To prevent requests from getting stuck or failing due to running out of memory or malfunctioning of the Java garbage collector, specify the number of Apache Tomcat® threads. Learn more about adjusting the number of threads in the guide on VMware Greenplum® Platform Extension Framework
. -
poolAllowCoreThreadTimeout: Whether or not a timeout for core streaming threads is allowed. The default value isfalse. -
poolCoreSize: Number of core streaming threads per pool. The value range is from1to1024. -
poolQueueCapacity: Maximum number of queries you can add to a pool queue after core streaming threads. The values may range from zero upward. If0, no pool queue is generated. -
poolMaxSize: Maximum allowed number of core streaming threads. The value range is from1to1024. -
xmx: Maximum size of the JVM heap for the PXF daemon, in megabytes. The value range is from64to16384. -
xms: Initial size of the JVM heap for the PXF daemon, in megabytes. The value range is from64to16384.
You can get the cluster ID from the list of clusters in your folder.
-
-
View the server response to make sure your request was successful.
-
Get an IAM token for API authentication and put it in an environment variable:
export IAM_TOKEN="<IAM_token>" -
Clone the cloudapi
repository:cd ~/ && git clone --depth=1 https://github.com/yandex-cloud/cloudapiBelow, we assume that the repository contents reside in the
~/cloudapi/directory. -
Use the ClusterService.Update call and send the following request, e.g., via gRPCurl
:Warning
The API method will assign default values to all the parameters of the object you are modifying unless you explicitly provide them in your request. To avoid this, list the settings you want to change in the
update_maskparameter as an array ofpaths[]strings.Format for listing settings
"update_mask": { "paths": [ "<setting_1>", "<setting_2>", ... "<setting_N>" ] }grpcurl \ -format json \ -import-path ~/cloudapi/ \ -import-path ~/cloudapi/third_party/googleapis/ \ -proto ~/cloudapi/yandex/cloud/mdb/greenplum/v1/cluster_service.proto \ -rpc-header "Authorization: Bearer $IAM_TOKEN" \ -d '{ "cluster_id": "<cluster_ID>", "update_mask": { "paths": [ "config_spec.pxf_config.connection_timeout", "config_spec.pxf_config.upload_timeout", "config_spec.pxf_config.max_threads", "config_spec.pxf_config.pool_allow_core_thread_timeout", "config_spec.pxf_config.pool_core_size", "config_spec.pxf_config.pool_queue_capacity", "config_spec.pxf_config.pool_max_size", "config_spec.pxf_config.xmx", "config_spec.pxf_config.xms" ] }, "config_spec": { "pxf_config" : { "connection_timeout": "<read_queries_timeout>", "upload_timeout": "<write_queries_timeout>", "max_threads": "<Maximum_number_of_Apache_Tomcat®_threads>", "pool_allow_core_thread_timeout": <whether_a_timeout_for_core_streaming_threads_is_allowed>, "pool_core_size": "<number_of_streaming_threads>", "pool_queue_capacity": "<pool_queue_capacity_for_streaming_threads>", "pool_max_size": "<maximum_number_of_streaming_threads>", "xmx": "<maximum_size_of_the_JVM_heap>", "xms": "<initial_size_of_the_JVM_heap>" } } }' \ mdb.api.cloud.yandex.net:443 \ yandex.cloud.mdb.greenplum.v1.ClusterService.UpdateWhere:
-
update_mask: Comma-separated list of settings you want to update. -
connection_timeout: Timeout for connection to the Apache Tomcat® server when making read queries, in seconds. The value range is from5to600. -
upload_timeout: Timeout for connection to the Apache Tomcat® server when making write queries, in seconds. The value range is from5to600. -
max_threads: Maximum number of the Apache Tomcat® threads. The value range is from1to1024.To prevent requests from getting stuck or failing due to running out of memory or malfunctioning of the Java garbage collector, specify the number of Apache Tomcat® threads. Learn more about adjusting the number of threads in the guide on VMware Greenplum® Platform Extension Framework
. -
pool_allow_core_thread_timeout: Whether or not a timeout for core streaming threads is allowed. The default value isfalse. -
pool_core_size: Number of core streaming threads per pool. The value range is from1to1024. -
pool_queue_capacity: Maximum number of queries you can add to a pool queue after core streaming threads. The values may range from zero upward. If0, no pool queue is generated. -
pool_max_size: Maximum allowed number of core streaming threads. The value range is from1to1024. -
xmx: Maximum size of the JVM heap for the PXF daemon, in megabytes. The value range is from64to16384. -
xms: Initial size of the JVM heap for the PXF daemon, in megabytes. The value range is from64to16384.
You can get the cluster ID from the list of clusters in your folder.
-
-
View the server response to make sure your request was successful.
Greenplum® and Greenplum Database® are registered trademarks or trademarks of Broadcom Inc. in the United States and/or other countries.