ZoneAwarenessConfig
- class aws_cdk.aws_elasticsearch.ZoneAwarenessConfig(*, availability_zone_count=None, enabled=None)
Bases:
object
(deprecated) Specifies zone awareness configuration options.
- Parameters:
availability_zone_count (
Union
[int
,float
,None
]) – (deprecated) If you enabled multiple Availability Zones (AZs), the number of AZs that you want the domain to use. Valid values are 2 and 3. Default: - 2 if zone awareness is enabled.enabled (
Optional
[bool
]) – (deprecated) Indicates whether to enable zone awareness for the Amazon ES domain. When you enable zone awareness, Amazon ES allocates the nodes and replica index shards that belong to a cluster across two Availability Zones (AZs) in the same region to prevent data loss and minimize downtime in the event of node or data center failure. Don’t enable zone awareness if your cluster has no replica index shards or is a single-node cluster. For more information, see [Configuring a Multi-AZ Domain] (https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-createupdatedomains.html#es-managedomains-multiaz) in the Amazon Elasticsearch Service Developer Guide. Default: - false
- Deprecated:
use opensearchservice module instead
- Stability:
deprecated
- ExampleMetadata:
infused
Example:
prod_domain = es.Domain(self, "Domain", version=es.ElasticsearchVersion.V7_1, capacity=es.CapacityConfig( master_nodes=5, data_nodes=20 ), ebs=es.EbsOptions( volume_size=20 ), zone_awareness=es.ZoneAwarenessConfig( availability_zone_count=3 ), logging=es.LoggingOptions( slow_search_log_enabled=True, app_log_enabled=True, slow_index_log_enabled=True ) )
Attributes
- availability_zone_count
(deprecated) If you enabled multiple Availability Zones (AZs), the number of AZs that you want the domain to use.
Valid values are 2 and 3.
- Default:
2 if zone awareness is enabled.
- Deprecated:
use opensearchservice module instead
- Stability:
deprecated
- enabled
(deprecated) Indicates whether to enable zone awareness for the Amazon ES domain.
When you enable zone awareness, Amazon ES allocates the nodes and replica index shards that belong to a cluster across two Availability Zones (AZs) in the same region to prevent data loss and minimize downtime in the event of node or data center failure. Don’t enable zone awareness if your cluster has no replica index shards or is a single-node cluster. For more information, see [Configuring a Multi-AZ Domain] (https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-createupdatedomains.html#es-managedomains-multiaz) in the Amazon Elasticsearch Service Developer Guide.
- Default:
false
- Deprecated:
use opensearchservice module instead
- Stability:
deprecated