Yandex Cloud
Поиск
Связаться с экспертомПопробовать бесплатно
  • Кейсы
  • Документация
  • Блог
  • Все сервисы
    • Cloud Interconnect
    • Cloud Backup
    • Compute Cloud
    • Object Storage
    • Managed Service for Kubernetes®
    • Managed Service for PostgreSQL
    • Managed Service for ClickHouse®
    • Monium
    • Cloud CDN
    • Network Load Balancer
    • Virtual Private Cloud
    • Cloud DNS
    • Application Load Balancer
    • Yandex Cloud Router
    • Managed Service for MySQL®
    • Managed Service for Valkey™
    • Managed Service for Apache Spark™
    • Managed Service for OpenSearch
    • Managed Service for Apache Kafka®
    • Data Transfer
    • Yandex MPP Analytics Engine for PostgreSQL
    • Managed Service for YDB
    • SpeechKit
    • Yandex Identity Hub
    • Key Management Service
    • Certificate Manager
    • Yandex Lockbox
    • Audit Trails
    • Container Registry
    • Managed Service for Prometheus®
    • Message Queue
    • Identity and Access Management
    • Yandex Cloud Console
    • Resource Manager
    • Yandex Cloud Billing
    • Cloud Apps
    • Yandex AI Studio
    • Yandex BareMetal
    • Smart Web Security
    • Security Deck
    • Yandex Cloud Video
    • Stackland
    • Yandex Managed Service for Apache Airflow®
    • Data Processing
    • Yandex MetaData Hub
    • Yandex WebSQL
    • DataLens
    • Yandex Search API
    • SpeechSense
    • DataSphere
    • Vision OCR
    • Translate
    • Cloud Registry
    • SmartCaptcha
    • Cloud Desktop
    • Yandex SIEM
    • SourceCraft Code Assistant
    • Managed Service for GitLab
    • Cloud Functions
    • API Gateway
    • Yandex Cloud Postbox
    • Serverless Integrations
    • IoT Core
    • Serverless Containers
    • Cloud Notification Service
    • Yandex Query
  • Статус работы сервисов
  • Marketplace
    • Доступны в регионе
    • Инфраструктура и сеть
    • Платформа данных
    • Искусственный интеллект
    • Безопасность
    • Инструменты DevOps
    • Бессерверные вычисления
    • Управление ресурсами
  • Все решения
    • По отраслям
    • По типу задач
    • Экономика платформы
    • Безопасность
    • Техническая поддержка
    • Каталог партнёров
    • Обучение и сертификация
    • Облако для стартапов
    • Облако для крупного бизнеса
    • Центр технологий для общества
    • Партнёрская программа
    • Поддержка IT-бизнеса
    • Облако для фрилансеров
    • Обучение и сертификация
    • Блог
    • Документация
    • Мероприятия и вебинары
    • Контакты, чаты и сообщества
    • Идеи
    • Калькулятор цен
    • Тарифы
    • Акции и free tier
  • Кейсы
  • Документация
  • Блог
Создавайте контент и получайте гранты!Готовы написать своё руководство? Участвуйте в контент-программе и получайте гранты на работу с облачными сервисами!
Подробнее о программе
Проект Яндекса
© 2026 ТОО «Облачные Сервисы Казахстан»
Terraform в Yandex Cloud
  • Начало работы
  • Настройка аутентификации Terraform-провайдера Yandex Cloud
  • Библиотека решений
    • Обзор
    • История изменений (англ.)
          • mdb_greenplum_cluster
          • mdb_greenplum_cluster_iam_binding
          • mdb_greenplum_cluster_v2
          • mdb_greenplum_resource_group
          • mdb_greenplum_user

В этой статье:

  • Example usage
  • Arguments & Attributes Reference
  • Import
  1. Справочник Terraform
  2. Ресурсы (англ.)
  3. Managed Service for Greenplum®
  4. Resources
  5. mdb_greenplum_cluster

yandex_mdb_greenplum_cluster (Resource)

Статья создана
Yandex Cloud
Улучшена
ilya
Обновлена 14 сентября 2026 г.
Открыть в Markdown
  • Example usage
  • Arguments & Attributes Reference
  • Import

Manages a Greenplum cluster within the Yandex Cloud. For more information, see the official documentation.

Please read Pricing for Managed Service for Greenplum before using Greenplum cluster.

Example usageExample usage

//
// Create a new MDB Greenplum Cluster.
//
resource "yandex_mdb_greenplum_cluster" "my_cluster" {
  name               = "test"
  description        = "test greenplum cluster"
  environment        = "PRESTABLE"
  network_id         = yandex_vpc_network.foo.id
  zone               = "ru-central1-a"
  subnet_id          = yandex_vpc_subnet.foo.id
  assign_public_ip   = true
  version            = "6.29"
  master_host_count  = 2
  segment_host_count = 5
  segment_in_host    = 1
  master_subcluster {
    resources {
      resource_preset_id = "s2.micro"
      disk_size          = 24
      disk_type_id       = "network-ssd"
    }
  }
  segment_subcluster {
    resources {
      resource_preset_id = "s2.micro"
      disk_size          = 24
      disk_type_id       = "network-ssd"
    }
  }

  access {
    web_sql = true
  }

  greenplum_config = {
    max_connections                      = 395
    max_slot_wal_keep_size               = 1048576
    gp_workfile_limit_per_segment        = 0
    gp_workfile_limit_per_query          = 0
    gp_workfile_limit_files_per_query    = 100000
    max_prepared_transactions            = 500
    gp_workfile_compression              = "false"
    max_statement_mem                    = 2147483648
    log_statement                        = 2
    gp_add_column_inherits_table_setting = "true"
    gp_enable_global_deadlock_detector   = "true"
    gp_global_deadlock_detector_period   = 120
  }

  user_name     = "admin_user"
  user_password = "your_super_secret_password"

  security_group_ids = [yandex_vpc_security_group.test-sg-x.id]
}

resource "yandex_vpc_network" "foo" {}

resource "yandex_vpc_subnet" "foo" {
  zone           = "ru-central1-a"
  network_id     = yandex_vpc_network.foo.id
  v4_cidr_blocks = ["10.5.0.0/24"]
}

resource "yandex_vpc_security_group" "test-sg-x" {
  network_id = yandex_vpc_network.foo.id
  ingress {
    protocol       = "ANY"
    description    = "Allow incoming traffic from members of the same security group"
    from_port      = 0
    to_port        = 65535
    v4_cidr_blocks = ["0.0.0.0/0"]
  }
  egress {
    protocol       = "ANY"
    description    = "Allow outgoing traffic to members of the same security group"
    from_port      = 0
    to_port        = 65535
    v4_cidr_blocks = ["0.0.0.0/0"]
  }
}

Arguments & Attributes ReferenceArguments & Attributes Reference

  • assign_public_ip (Required)(Bool). Sets whether the master hosts should get a public IP address on creation. Changing this parameter for an existing host is not supported at the moment.
  • created_at (Read-Only) (String). The creation timestamp of the resource.
  • deletion_protection (Bool). The true value means that resource is protected from accidental deletion.
  • description (String). The resource description.
  • disk_encryption_key_id (String). ID of the KMS key used for cluster disk encryption. This parameter only works when both master and segment hosts use local-ssd disks. Changing this value requires recreating the cluster. If omitted when restoring, the restored cluster is created without encryption. The key is preserved in Terraform state but cannot currently be read from the API, including during import.
  • environment (Required)(String). Deployment environment of the Greenplum cluster. (PRODUCTION, PRESTABLE)
  • folder_id (String). The folder identifier that resource belongs to. If it is not provided, the default provider folder-id is used.
  • greenplum_config (Map Of String). Greenplum cluster config. Detail info in Greenplum cluster settings block.
  • health (Read-Only) (String). Aggregated health of the cluster.
  • id (String).
  • labels (Map Of String). A set of key/value label pairs which assigned to resource.
  • master_host_count (Required)(Number). Number of hosts in master subcluster (1 or 2).
  • master_host_group_ids (Set Of String). A list of IDs of the host groups to place master subclusters' VMs of the cluster on.
  • master_hosts (Read-Only) (List Of Object). Info about hosts in master subcluster.
    • assign_public_ip .
    • fqdn .
  • name (Required)(String). The resource name.
  • network_id (Required)(String). The VPC Network ID of subnets which resource attached to.
  • security_group_ids (Set Of String). The list of security groups applied to resource or their components.
  • segment_host_count (Required)(Number). Number of hosts in segment subcluster (from 1 to 32).
  • segment_host_group_ids (Set Of String). A list of IDs of the host groups to place segment subclusters' VMs of the cluster on.
  • segment_hosts (Read-Only) (List Of Object). Info about hosts in segment subcluster.
    • fqdn .
  • segment_in_host (Required)(Number). Number of segments on segment host (not more then 1 + RAM/8).
  • service_account_id (String). ID of service account to use with Yandex Cloud resources (e.g. S3, Cloud Logging).
  • status (Read-Only) (String). Status of the cluster.
  • subnet_id (Required)(String). The ID of the subnet, to which the hosts belongs. The subnet must be a part of the network to which the cluster belongs.
  • user_name (Required)(String). Greenplum cluster admin user name.
  • user_password (String). Greenplum cluster admin password.
  • user_password_wo (String). Greenplum cluster admin password. This attribute is write-only and is not stored in state. Requires user_password_wo_version to trigger updates. Write-only arguments are only supported in Terraform v1.11 or higher.
  • user_password_wo_version (Number). A version number for the write-only password. Increment this to trigger a password update.
  • version (Required)(String). Version of the Greenplum cluster.
  • zone (Required)(String). The availability zone where resource is located. If it is not provided, the default provider zone will be used.
  • access [Block]. Access policy to the Greenplum cluster.
    • data_lens (Bool). Allow access for Yandex DataLens.
    • data_transfer (Bool). Allow access for DataTransfer
    • web_sql (Bool). Allows access for SQL queries in the management console.
    • yandex_query (Bool). Allow access for Yandex Query
  • background_activities [Block]. Background activities settings.
    • analyze_and_vacuum [Block]. Block to configure 'ANALYZE' and 'VACUUM' daily operations.
      • analyze_timeout (Number). Maximum duration of the ANALYZE operation, in seconds. The default value is 36000. As soon as this period expires, the ANALYZE operation will be forced to terminate.
      • start_time (String). Time of day in 'HH:MM' format when scripts should run.
      • vacuum_timeout (Number). Maximum duration of the VACUUM operation, in seconds. The default value is 36000. As soon as this period expires, the VACUUM operation will be forced to terminate.
    • query_killer_idle [Block]. Block to configure script that kills long running queries that are in idle state.
      • enable (Bool). Flag that indicates whether script is enabled.
      • ignore_users (List Of String). List of users to ignore when considering queries to terminate.
      • max_age (Number). Maximum duration for this type of queries (in seconds).
    • query_killer_idle_in_transaction [Block]. Block to configure script that kills long running queries that are in idle in transaction state.
      • enable (Bool). Flag that indicates whether script is enabled.
      • ignore_users (List Of String). List of users to ignore when considering queries to terminate.
      • max_age (Number). Maximum duration for this type of queries (in seconds).
    • query_killer_long_running [Block]. Block to configure script that kills long running queries (in any state).
      • enable (Bool). Flag that indicates whether script is enabled.
      • ignore_users (List Of String). List of users to ignore when considering queries to terminate.
      • max_age (Number). Maximum duration for this type of queries (in seconds).
  • backup_window_start [Block]. Time to start the daily backup, in the UTC timezone.
    • hours (Number). The hour at which backup will be started (UTC).
    • minutes (Number). The minute at which backup will be started (UTC).
  • cloud_storage [Block]. Cloud Storage settings of the Greenplum cluster.
    • enable (Bool). Whether to use cloud storage or not.
  • logging [Block]. Cloud Logging settings.
    • command_center_enabled (Bool). Deliver Yandex Command Center's logs to Cloud Logging.
    • enabled (Bool). Flag that indicates whether log delivery to Cloud Logging is enabled.
    • folder_id (String). ID of folder to which deliver logs.
    • greenplum_enabled (Bool). Deliver Greenplum's logs to Cloud Logging.
    • log_group_id (String). Cloud Logging group ID to send logs to.
    • pooler_enabled (Bool). Deliver connection pooler's logs to Cloud Logging.
  • maintenance_window [Block]. Maintenance policy of the Greenplum cluster.
    • day (String). Day of the week (in DDD format). Allowed values: MON, TUE, WED, THU, FRI, SAT, SUN.
    • hour (Number). Hour of the day in UTC (in HH format). Allowed value is between 0 and 23.
    • type (Required)(String). Type of maintenance window. Can be either ANYTIME or WEEKLY. A day and hour of window need to be specified with weekly window.
  • master_subcluster [Block]. Settings for master subcluster.
    • resources [Block]. Resources allocated to hosts for master subcluster of the Greenplum cluster.
      • disk_size (Required)(Number). Volume of the storage available to a host, in gigabytes.
      • disk_type_id (Required)(String). Type of the storage of Greenplum hosts - environment default is used if missing.
      • resource_preset_id (Required)(String). The ID of the preset for computational resources available to a host (CPU, memory etc.). For more information, see the official documentation.
  • pooler_config [Block]. Configuration of the connection pooler.
    • pool_client_idle_timeout (Number). Value for pool_client_idle_timeout parameter in Odyssey.
    • pool_idle_in_transaction_timeout (Number). Value for pool_idle_in_transaction_timeout parameter in Odyssey.
    • pool_size (Number). Value for pool_size parameter in Odyssey.
    • pooling_mode (String). Mode that the connection pooler is working in. See descriptions of all modes in the documentation for Odyssey.
  • pxf_config [Block]. Configuration of the PXF daemon.
    • connection_timeout (Number). The Tomcat server connection timeout for read operations in seconds. Value is between 5 and 600.
    • max_threads (Number). The maximum number of PXF tomcat threads. Value is between 1 and 1024.
    • pool_allow_core_thread_timeout (Bool). Identifies whether or not core streaming threads are allowed to time out.
    • pool_core_size (Number). The number of core streaming threads. Value is between 1 and 1024.
    • pool_max_size (Number). The maximum allowed number of core streaming threads. Value is between 1 and 1024.
    • pool_queue_capacity (Number). The capacity of the core streaming thread pool queue. Value is positive.
    • upload_timeout (Number). The Tomcat server connection timeout for write operations in seconds. Value is between 5 and 600.
    • xms (Number). Maximum JVM heap size for PXF daemon. Value is between 64 and 16384.
    • xmx (Number). Initial JVM heap size for PXF daemon. Value is between 64 and 16384.
  • restore [Block]. The cluster will be created from the specified backup.
    • backup_id (Required)(String). Backup ID. The cluster will be created from the specified backup.
    • restore_hba (Bool). Restore HBA settings from the original cluster.
    • restore_pxf (Bool). Restore PXF settings from the original cluster.
    • time (String). Timestamp of the moment to which the Greenplum cluster should be restored. (Format: 2006-01-02T15:04:05 - UTC). When not set, current time is used.
  • segment_subcluster [Block]. Settings for segment subcluster.
    • resources [Block]. Resources allocated to hosts for segment subcluster of the Greenplum cluster.
      • disk_size (Required)(Number). Volume of the storage available to a host, in gigabytes.
      • disk_type_id (Required)(String). Type of the storage of Greenplum hosts - environment default is used if missing.
      • resource_preset_id (Required)(String). The ID of the preset for computational resources available to a host (CPU, memory etc.). For more information, see the official documentation.
  • timeouts [Block].
    • create (String).
    • delete (String).
    • update (String).

ImportImport

The resource can be imported by using their resource ID. For getting it you can use Yandex Cloud Web Console or Yandex Cloud CLI.

# terraform import yandex_mdb_greenplum_cluster.<resource Name> <resource Id>
terraform import yandex_mdb_greenplum_cluster.my_cluster ...

Была ли статья полезна?

Предыдущая
mdb_greenplum_user
Следующая
mdb_greenplum_cluster_iam_binding
Создавайте контент и получайте гранты!Готовы написать своё руководство? Участвуйте в контент-программе и получайте гранты на работу с облачными сервисами!
Подробнее о программе
Проект Яндекса
© 2026 ТОО «Облачные Сервисы Казахстан»