Alibaba Cloud Elasticsearch allows you to separate hot and cold data to improve the efficiency of data queries and reduce the storage costs of historical data. This topic describes how to create an Elasticsearch cluster that uses the hot-warm architecture and specify the hot or warm attribute for indexes to separate hot and cold data.
Background information
Node type | Type of data stored | Read and write performance | Specifications | Disk |
---|---|---|---|---|
Hot node | Recent data, such as log data over the last two days. | High | High, such as 32 vCPUs and 64 GiB of memory | We recommend that you use a standard SSD. You can specify the storage space based on the volume of data. |
Warm node | Historical data, such as log data before the last two days. | Low | Low, such as 8 vCPUs and 32 GiB of memory | We recommend that you use an ultra disk. You can specify the storage space based on the volume of data. |
Note You can use the index lifecycle management (ILM) feature to periodically migrate data
from hot nodes to warm nodes. For more information, see ILM overview.
Create an Alibaba Cloud Elasticsearch cluster that uses the hot-warm architecture
When you purchase an Elasticsearch cluster, you can purchase warm nodes to create an Elasticsearch cluster that uses the hot-warm
architecture. After you create a cluster that contains warm data nodes, the system
adds the -Enode.attr.box_type parameter to the startup parameters of nodes.
- Hot node: -Enode.attr.box_type=hot
Notice Data nodes become hot nodes only after you purchase warm nodes.
- Warm node: -Enode.attr.box_type=warm
Specify the hot or warm attribute for indexes
Run the following commands to specify the hot or warm attribute for indexes. For more
information, see Log on to the Kibana console.
- Specify the hot attribute for an index
PUT hot_data/_settings { "index.routing.allocation.require.box_type": "hot" }
- Specify the warm attribute for an index
PUT warm_data/_settings { "index.routing.allocation.require.box_type": "warm" }