云搜索服务 CSS-使用云服务Logstash全量迁移集群数据:准备工作

时间:2024-06-25 11:37:40

准备工作

  • 创建迁移虚拟机。
    创建迁移虚拟机,用于迁移源集群的元数据。
    1. 创建E CS 虚拟机,虚拟机需要创建linux系统,规格选择2U4G。
    2. 测试虚拟机和源集群和目标集群保持连通性,执行命令curl http:// {ip}:{port}可以测试结果。

      IP是源集群和目的集群访问地址,端口默认是9200,如果不是9200使用集群实际端口。

      如下示例仅适用于非安全集群。

      curl http://10.234.73.128:9200
      {
        "name" : "voc_es_cluster_new-ess-esn-1-1",
        "cluster_name" : "voc_es_cluster_new",
        "cluster_uuid" : "1VbP7-39QNOx_R-llXKKtA",
        "version" : {
          "number" : "6.5.4",
          "build_flavor" : "default",
          "build_type" : "tar",
          "build_hash" : "d2ef93d",
          "build_date" : "2018-12-17T21:17:40.758843Z",
          "build_snapshot" : false,
          "lucene_version" : "7.5.0",
          "minimum_wire_compatibility_version" : "5.6.0",
          "minimum_index_compatibility_version" : "5.0.0"
        },
        "Tagline" : "You Know, for Search"
      }
support.huaweicloud.com/bestpractice-css/css_07_0009.html