

本文為英文版的機器翻譯版本，如內容有任何歧義或不一致之處，概以英文版為準。

# Amazon OpenSearch Service 中支援的操作
<a name="supported-operations"></a>

OpenSearch Service 支援多種版本的 OpenSearch 和舊版 Elasticsearch OSS。下列章節顯示 OpenSearch Service 針對每個版本支援的操作。

**Topics**
+ [值得注意的 API 差異](#version_api_notes)

## 值得注意的 API 差異
<a name="version_api_notes"></a>

### 新清單 APIs
<a name="new-list-api"></a>

為了支援具有大量索引和碎片的大型叢集，我們推出了具有分頁支援的新清單 APIs，例如 \_list/indices 和 \_list/shards。清單 API 會以分頁格式擷取索引和碎片的統計資料。這可簡化處理包含許多索引之回應的任務。
+ `_list/indices`：[\_list/indices](https://opensearch.org/docs/latest/api-reference/list/list-indices/)
+ `_list/shards`：[\_list/shards](https://opensearch.org/docs/latest/api-reference/list/list-shards/)

### 現有 APIs的變更
<a name="changes-existing-api"></a>

為了支援大型叢集，我們在 `_cluster/stats` API 中新增支援以新增其他指標篩選條件，以支援僅擷取相關的統計資料回應，例如 `_cluster/stats/<metric>/nodes/<node-filters>`和 `_cluster/stats/<metric>/<index_metric>/nodes/<node-filters>`。如需詳細資訊，請參閱 [\_cluster/stats](https://opensearch.org/docs/latest/api-reference/cluster-api/cluster-stats/)。

我們已透過指定`cancel_after_time_interval`請求參數，在 `_cat/shards` API 中新增取消任務的支援。如需詳細資訊，請參閱 [\_cat/shards](https://opensearch.org/docs/latest/api-reference/cat/cat-shards/)。

 **限制 \_cat API 的回應大小 **

為了支援跨資料和暖節點執行個體總數超過 200 的大型叢集，我們對 傳回的索引數量有 10K 的限制`_cat/segments API`。如果回應中的索引數量超過此限制，API 會傳回 429 錯誤。若要避免這種情況，您可以在查詢中指定索引模式篩選條件，例如 `_cat/segments/<index-pattern>`。

### 設定和統計數字
<a name="version_api_notes-cs"></a>

OpenSearch Service 只接受針對 `_cluster/settings` API 的 PUT 請求，這些請求使用 "flat" 設定形式。並拒絕使用展開設定表單的請求。

```
// Accepted
PUT _cluster/settings
{
  "persistent" : {
    "action.auto_create_index" : false
  }
}

// Rejected
PUT _cluster/settings
{
  "persistent": {
    "action": {
      "auto_create_index": false
    }
  }
}
```

高階 Java REST 用戶端會使用展開的表單，因此如果您需要傳送設定請求，請使用低階用戶端。

在 Elasticsearch 5.3 之前，OpenSearch Service 網域上的 `_cluster/settings` API 僅支援 HTTP `PUT` 方法，而不支援 `GET` 方法。OpenSearch 和更新版本的 Elasticsearch 支援 `GET` 方法，如以下範例所示：

```
GET https://{{domain-name}}.{{region}}.es.amazonaws.com/_cluster/settings?pretty
```

此為傳回範例：

```
{
  "persistent": {
    "cluster": {
      "routing": {
        "allocation": {
          "cluster_concurrent_rebalance": "2",
          "node_concurrent_recoveries": "2",
          "disk": {
            "watermark": {
              "low": "1.35gb",
              "flood_stage": "0.45gb",
              "high": "0.9gb"
            }
          },
          "node_initial_primarirecoveries": "4"
        }
      }
    },
    "indices": {
      "recovery": {
        "max_bytper_sec": "40mb"
      }
    }
  }
}
```

如果您針對特定設定和統計數字 API 來比較開源 OpenSearch 叢集和 OpenSearch Service 的回應，您可能會注意到缺少一些欄位。OpenSearch Service 會編輯某些公開服務內部細節的特定資訊，例如 `_nodes/stats` 的檔案系統資料路徑或作業系統名稱以及 `_nodes` 的版本。

### 縮小
<a name="version_api_notes-shrink"></a>

`_shrink` API 可造成升級、組態變更與網域刪除失敗。我們不建議在執行 ​Elasticsearch 版本 5.3 或 5.1 的網域上使用它。這些版本皆含有可導致已縮小的索引之快照還原失敗。

若您在其他 Elasticsearch 或 OpenSearch 版本上使用 `_shrink` API，請在開始縮小操作前提出下列請求：

```
PUT https://{{domain-name}}.{{region}}.es.amazonaws.com/{{source-index}}/_settings
{
  "settings": {
    "index.routing.allocation.require._name": "{{name-of-the-node-to-shrink-to}}",
    "index.blocks.read_only": true
  }
}
```

然後在完成縮小操作後再提出下列請求：

```
PUT https://{{domain-name}}.{{region}}.es.amazonaws.com/{{source-index}}/_settings
{
  "settings": {
    "index.routing.allocation.require._name": null,
    "index.blocks.read_only": false
  }
}

PUT https://{{domain-name}}.{{region}}.es.amazonaws.com/{{shrunken-index}}/_settings
{
  "settings": {
    "index.routing.allocation.require._name": null,
    "index.blocks.read_only": false
  }
}
```

### 新清單 APIs
<a name="version_api_new."></a>

為了支援具有大量索引和碎片的大型叢集，我們推出了具有分頁支援的新清單 APIs，即 `_list/indices`和 。 `_list/shards`清單 API 會以分頁格式擷取索引和碎片的統計資料。這可簡化處理包含許多索引之回應的任務。如需 的詳細資訊`_list/indices`，請參閱[列出索引](https://opensearch.org/docs/latest/api-reference/list/list-indices/)。如需 的詳細資訊`_list/shards`，請參閱[列出碎片](https://opensearch.org/docs/latest/api-reference/list/list-shards/)。

### 現有 APIs的變更
<a name="version_api_changes_exisiting"></a>

為了支援大型叢集，我們在 `_cluster/stats/<metric>/nodes/<node-filters>`和 中新增了支援`_cluster/stats/<metric>/<index_metric>/nodes/<node-filters>`。如需 的詳細資訊`_cluster/stats`，請參閱[叢集統計資料](https://opensearch.org/docs/latest/api-reference/cluster-api/cluster-stats/)。

### 限制 \_cat APIs回應大小
<a name="version_api_cat"></a>

為了支援執行個體總數超過 200 個資料和暖節點的大型叢集，我們對 \_cat/segments API 傳回的索引數量有 10，000 個限制。如果回應中的索引數量超過此限制，API 會傳回`429`錯誤。若要避免這種情況，您可以在查詢中指定索引模式篩選條件 （例如 `_cat/segments/<index-pattern>` )。

此外，透過指定`cancel_after_time_interval`請求參數，任務取消的支援現在可用於任務取消的 `_cat/shards` API。如需詳細資訊，請參閱 [CAT 碎片](https://opensearch.org/docs/latest/api-reference/cluster-api/cluster-stats/)。

### 選擇專用主節點的執行個體類型
<a name="version_api_cat"></a>

下表提供為專用主節點選擇適當執行個體類型的建議：


| RAM | 支援的節點上限 | 支援的碎片上限 | 
| --- | --- | --- | 
| 2 GB | 10 | 1,000 | 
| 4 GB | 10 | 5,000 | 
| 8 GB | 30 | 15,000 | 
| 16 GB | 60 | 30,000 | 
| 32 GB | 120 | 60,000 | 
| 64 GB | 240 | 120,000 | 
| 128 GB | 480 | 240，000 | 
| 256 GB | 1002 | 500,000 | 

### OpenSearch 2.19 版
<a name="version_opensearch_2.19"></a>

如需 OpenSearch 2.19 操作的相關資訊，請參閱 [OpenSearch REST API 參考](https://opensearch.org/docs/latest/opensearch/rest-api/index/)或特定外掛程式的 API 參考。如需此版本變更的詳細資訊，請參閱 [2.19 版本備註。](https://github.com/opensearch-project/opensearch-build/blob/main/release-notes/opensearch-release-notes-2.19.0.md)

### OpenSearch 2.17 版
<a name="version_opensearch_2.17"></a>

對於 OpenSearch 2.17，OpenSearch Service 支援下列操作。如需大部分操作的詳細資訊，請參閱 [OpenSearch REST API 參考](https://opensearch.org/docs/latest/opensearch/rest-api/index/)或特定外掛程式的 API 參考。

**注意**  
從 OpenSearch 2.17 開始，無法修改`cluster.max_shards_per_node`設定。對於 OpenSearch 2.17 和更新版本，OpenSearch Service 支援每 16GB JVM 堆積記憶體 1000 個碎片，每個節點最多 4000 個碎片。


|  |  |  | 
| --- |--- |--- |
|  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  | 

1. 叢集組態變更完成之前，這些操作可能中斷。我們建議您隨這些操作一起使用 `/_tasks` 作業，以確認請求已成功完成。

1. 對 `/_search/scroll` 的 DELETE 請求及訊息本文，都必須在 HTTP 標頭指定 `"Content-Length"`。根據預設，大多數的用戶端新增此標頭。為避免發生 `scroll_id` 值中有 `=` 字元的問題，請使用要求主體而不是查詢字串，將 `scroll_id` 值傳遞至 OpenSearch Service。

1. 有關使用指令碼的考量事項，請參閱[Amazon OpenSearch Service 中的其他支援資源](supported-resources.md)。

1. 請參閱 `PUT`方法。如需 `GET` 方法的詳細資訊，請參閱[值得注意的 API 差異](#version_api_notes)。此清單僅參考 OpenSearch Service 支援的通用 OpenSearch 操作，不包含用於異常偵測、ISM 等的外掛程式特定支援操作。

1. 請參閱 [縮小](#version_api_notes-shrink)。
**注意**  
目前，未針對具有異地同步備份 （可用區域） 且待命的客戶啟用`cluster.max_shards_per_node`設定功能。

### OpenSearch 2.15 版
<a name="version_opensearch_2.15"></a>

對於 OpenSearch 2.15，OpenSearch Service 支援下列操作。如需大部分操作的詳細資訊，請參閱 [OpenSearch REST API 參考](https://opensearch.org/docs/latest/opensearch/rest-api/index/)或特定外掛程式的 API 參考。


|  |  |  | 
| --- |--- |--- |
|  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  | 

1. 叢集組態變更完成之前，這些操作可能中斷。我們建議您隨這些操作一起使用 `/_tasks` 作業，以確認請求已成功完成。

1. 對 `/_search/scroll` 的 DELETE 請求及訊息本文，都必須在 HTTP 標頭指定 `"Content-Length"`。根據預設，大多數的用戶端新增此標頭。為避免發生 `scroll_id` 值中有 `=` 字元的問題，請使用要求主體而不是查詢字串，將 `scroll_id` 值傳遞至 OpenSearch Service。

1. 有關使用指令碼的考量事項，請參閱[Amazon OpenSearch Service 中的其他支援資源](supported-resources.md)。

1. 參考 `PUT` 方法。如需 `GET` 方法的詳細資訊，請參閱[值得注意的 API 差異](#version_api_notes)。此清單僅涉及 OpenSearch Service 支援的一般 OpenSearch 操作，不包括針對異常偵測、ISM 等的外掛程式特定支援操作。

1. 請參閱 [縮小](#version_api_notes-shrink)。

### OpenSearch 2.13 版
<a name="version_opensearch_2.13"></a>

對於 OpenSearch 2.13，OpenSearch Service 支援下列操作。如需大部分操作的詳細資訊，請參閱 [OpenSearch REST API 參考](https://opensearch.org/docs/latest/opensearch/rest-api/index/)或特定外掛程式的 API 參考。


|  |  |  | 
| --- |--- |--- |
|  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  | 

1. 叢集組態變更完成之前，這些操作可能中斷。我們建議您隨這些操作一起使用 `/_tasks` 作業，以確認請求已成功完成。

1. 對 `/_search/scroll` 的 DELETE 請求及訊息本文，都必須在 HTTP 標頭指定 `"Content-Length"`。根據預設，大多數的用戶端新增此標頭。為避免發生 `scroll_id` 值中有 `=` 字元的問題，請使用要求主體而不是查詢字串，將 `scroll_id` 值傳遞至 OpenSearch Service。

1. 有關使用指令碼的考量事項，請參閱[Amazon OpenSearch Service 中的其他支援資源](supported-resources.md)。

1. 參考 `PUT` 方法。如需 `GET` 方法的詳細資訊，請參閱[值得注意的 API 差異](#version_api_notes)。此清單僅涉及 OpenSearch Service 支援的一般 OpenSearch 操作，不包括針對異常偵測、ISM 等的外掛程式特定支援操作。

1. 請參閱 [縮小](#version_api_notes-shrink)。

### OpenSearch 2.11 版
<a name="version_opensearch_2.11"></a>

對於 OpenSearch 2.11，OpenSearch Service 支援下列操作。如需大部分操作的詳細資訊，請參閱 [OpenSearch REST API 參考](https://opensearch.org/docs/latest/opensearch/rest-api/index/)或特定外掛程式的 API 參考。


|  |  |  | 
| --- |--- |--- |
|  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  | 

1. 叢集組態變更完成之前，這些操作可能中斷。我們建議您隨這些操作一起使用 `/_tasks` 作業，以確認請求已成功完成。

1. 對 `/_search/scroll` 的 DELETE 請求及訊息本文，都必須在 HTTP 標頭指定 `"Content-Length"`。根據預設，大多數的用戶端新增此標頭。為避免發生 `scroll_id` 值中有 `=` 字元的問題，請使用要求主體而不是查詢字串，將 `scroll_id` 值傳遞至 OpenSearch Service。

1. 有關使用指令碼的考量事項，請參閱[Amazon OpenSearch Service 中的其他支援資源](supported-resources.md)。

1. 參考 `PUT` 方法。如需 `GET` 方法的詳細資訊，請參閱[值得注意的 API 差異](#version_api_notes)。此清單僅涉及 OpenSearch Service 支援的一般 OpenSearch 操作，不包括針對異常偵測、ISM 等的外掛程式特定支援操作。

1. 請參閱 [縮小](#version_api_notes-shrink)。

### OpenSearch 2.9 版
<a name="version_opensearch_2.9"></a>

對於 OpenSearch 2.9，OpenSearch Service 支援下列操作。如需大部分操作的詳細資訊，請參閱 [OpenSearch REST API 參考](https://opensearch.org/docs/latest/opensearch/rest-api/index/)或特定外掛程式的 API 參考。


|  |  |  | 
| --- |--- |--- |
|  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  | 

1. 叢集組態變更完成之前，這些操作可能中斷。我們建議您隨這些操作一起使用 `/_tasks` 作業，以確認請求已成功完成。

1. 對 `/_search/scroll` 的 DELETE 請求及訊息本文，都必須在 HTTP 標頭指定 `"Content-Length"`。根據預設，大多數的用戶端新增此標頭。為避免發生 `scroll_id` 值中有 `=` 字元的問題，請使用要求主體而不是查詢字串，將 `scroll_id` 值傳遞至 OpenSearch Service。

1. 有關使用指令碼的考量事項，請參閱[Amazon OpenSearch Service 中的其他支援資源](supported-resources.md)。

1. 參考 `PUT` 方法。如需 `GET` 方法的詳細資訊，請參閱[值得注意的 API 差異](#version_api_notes)。此清單僅涉及 OpenSearch Service 支援的一般 OpenSearch 操作，不包括針對異常偵測、ISM 等的外掛程式特定支援操作。

1. 請參閱 [縮小](#version_api_notes-shrink)。

### OpenSearch 2.7 版
<a name="version_opensearch_2.7"></a>

對於 OpenSearch 2.7，OpenSearch Service 支援下列操作。如需大部分操作的詳細資訊，請參閱 [OpenSearch REST API 參考](https://opensearch.org/docs/latest/opensearch/rest-api/index/)或特定外掛程式的 API 參考。


|  |  |  | 
| --- |--- |--- |
|  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  | 

1. 叢集組態變更完成之前，這些操作可能中斷。我們建議您隨這些操作一起使用 `/_tasks` 作業，以確認請求已成功完成。

1. 對 `/_search/scroll` 的 DELETE 請求及訊息本文，都必須在 HTTP 標頭指定 `"Content-Length"`。根據預設，大多數的用戶端新增此標頭。為避免發生 `scroll_id` 值中有 `=` 字元的問題，請使用要求主體而不是查詢字串，將 `scroll_id` 值傳遞至 OpenSearch Service。

1. 有關使用指令碼的考量事項，請參閱[Amazon OpenSearch Service 中的其他支援資源](supported-resources.md)。

1. 參考 `PUT` 方法。如需 `GET` 方法的詳細資訊，請參閱[值得注意的 API 差異](#version_api_notes)。此清單僅涉及 OpenSearch Service 支援的一般 OpenSearch 操作，不包括針對異常偵測、ISM 等的外掛程式特定支援操作。

1. 請參閱 [縮小](#version_api_notes-shrink)。

### OpenSearch 2.5 版
<a name="version_opensearch_2.5"></a>

對於 OpenSearch 2.5，OpenSearch Service 支援下列操作。如需大部分操作的詳細資訊，請參閱 [OpenSearch REST API 參考](https://opensearch.org/docs/latest/opensearch/rest-api/index/)或特定外掛程式的 API 參考。


|  |  |  | 
| --- |--- |--- |
|  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  | 

1. 叢集組態變更完成之前，這些操作可能中斷。我們建議您隨這些操作一起使用 `/_tasks` 作業，以確認請求已成功完成。

1. 對 `/_search/scroll` 的 DELETE 請求及訊息本文，都必須在 HTTP 標頭指定 `"Content-Length"`。根據預設，大多數的用戶端新增此標頭。為避免發生 `scroll_id` 值中有 `=` 字元的問題，請使用要求主體而不是查詢字串，將 `scroll_id` 值傳遞至 OpenSearch Service。

1. 有關使用指令碼的考量事項，請參閱[Amazon OpenSearch Service 中的其他支援資源](supported-resources.md)。

1. 參考 `PUT` 方法。如需 `GET` 方法的詳細資訊，請參閱[值得注意的 API 差異](#version_api_notes)。此清單僅涉及 OpenSearch Service 支援的一般 OpenSearch 操作，不包括針對異常偵測、ISM 等的外掛程式特定支援操作。

1. 請參閱 [縮小](#version_api_notes-shrink)。

### OpenSearch 2.3 版
<a name="version_opensearch_2.3"></a>

若為 OpenSearch 2.3，OpenSearch Service 支援下列操作。如需大部分操作的詳細資訊，請參閱 [OpenSearch REST API 參考](https://opensearch.org/docs/latest/opensearch/rest-api/index/)或特定外掛程式的 API 參考。


|  |  |  | 
| --- |--- |--- |
|  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  | 

1. 叢集組態變更完成之前，這些操作可能中斷。我們建議您隨這些操作一起使用 `/_tasks` 作業，以確認請求已成功完成。

1. 對 `/_search/scroll` 的 DELETE 請求及訊息本文，都必須在 HTTP 標頭指定 `"Content-Length"`。根據預設，大多數的用戶端新增此標頭。為避免發生 `scroll_id` 值中有 `=` 字元的問題，請使用要求主體而不是查詢字串，將 `scroll_id` 值傳遞至 OpenSearch Service。

1. 有關使用指令碼的考量事項，請參閱[Amazon OpenSearch Service 中的其他支援資源](supported-resources.md)。

1. 參考 `PUT` 方法。如需 `GET` 方法的詳細資訊，請參閱[值得注意的 API 差異](#version_api_notes)。此清單僅涉及 OpenSearch Service 支援的一般 OpenSearch 操作，不包括針對異常偵測、ISM 等的外掛程式特定支援操作。

1. 請參閱 [縮小](#version_api_notes-shrink)。

### OpenSearch 1.3 版
<a name="version_opensearch_1.3"></a>

若為 OpenSearch 1.3，OpenSearch Service 支援下列操作。如需大部分操作的詳細資訊，請參閱 [OpenSearch REST API 參考](https://opensearch.org/docs/latest/opensearch/rest-api/index/)或特定外掛程式的 API 參考。


|  |  |  | 
| --- |--- |--- |
|  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  | 

1. 叢集組態變更完成之前，這些操作可能中斷。我們建議您隨這些操作一起使用 `/_tasks` 作業，以確認請求已成功完成。

1. 對 `/_search/scroll` 的 DELETE 請求及訊息本文，都必須在 HTTP 標頭指定 `"Content-Length"`。根據預設，大多數的用戶端新增此標頭。為避免發生 `scroll_id` 值中有 `=` 字元的問題，請使用要求主體而不是查詢字串，將 `scroll_id` 值傳遞至 OpenSearch Service。

1. 有關使用指令碼的考量事項，請參閱[Amazon OpenSearch Service 中的其他支援資源](supported-resources.md)。

1. 參考 `PUT` 方法。如需 `GET` 方法的詳細資訊，請參閱[值得注意的 API 差異](#version_api_notes)。此清單僅涉及 OpenSearch Service 支援的一般 OpenSearch 操作，不包括針對異常偵測、ISM 等的外掛程式特定支援操作。

1. 請參閱 [縮小](#version_api_notes-shrink)。

### OpenSearch 1.2 版
<a name="version_opensearch_1.2"></a>

若為 OpenSearch 1.2，OpenSearch Service 支援下列操作。如需大部分操作的詳細資訊，請參閱 [OpenSearch REST API 參考](https://opensearch.org/docs/latest/opensearch/rest-api/index/)或特定外掛程式的 API 參考。


|  |  |  | 
| --- |--- |--- |
|  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  | 

1. 叢集組態變更完成之前，這些操作可能中斷。我們建議您隨這些操作一起使用 `/_tasks` 作業，以確認請求已成功完成。

1. 對 `/_search/scroll` 的 DELETE 請求及訊息本文，都必須在 HTTP 標頭指定 `"Content-Length"`。根據預設，大多數的用戶端新增此標頭。為避免發生 `scroll_id` 值中有 `=` 字元的問題，請使用要求主體而不是查詢字串，將 `scroll_id` 值傳遞至 OpenSearch Service。

1. 有關使用指令碼的考量事項，請參閱[Amazon OpenSearch Service 中的其他支援資源](supported-resources.md)。

1. 參考 `PUT` 方法。如需 `GET` 方法的詳細資訊，請參閱[值得注意的 API 差異](#version_api_notes)。此清單僅涉及 OpenSearch Service 支援的一般 OpenSearch 操作，不包括針對異常偵測、ISM 等的外掛程式特定支援操作。

1. 請參閱 [縮小](#version_api_notes-shrink)。

### OpenSearch 1.1 版
<a name="version_opensearch_1.1"></a>

若為 OpenSearch 1.1，OpenSearch Service 支援下列操作。如需大部分操作的詳細資訊，請參閱 [OpenSearch REST API 參考](https://opensearch.org/docs/latest/opensearch/rest-api/index/)或特定外掛程式的 API 參考。


|  |  |  | 
| --- |--- |--- |
|  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  | 

1. 叢集組態變更完成之前，這些操作可能中斷。我們建議您隨這些操作一起使用 `/_tasks` 作業，以確認請求已成功完成。

1. 對 `/_search/scroll` 的 DELETE 請求及訊息本文，都必須在 HTTP 標頭指定 `"Content-Length"`。根據預設，大多數的用戶端新增此標頭。為避免發生 `scroll_id` 值中有 `=` 字元的問題，請使用要求主體而不是查詢字串，將 `scroll_id` 值傳遞至 OpenSearch Service。

1. 有關使用指令碼的考量事項，請參閱[Amazon OpenSearch Service 中的其他支援資源](supported-resources.md)。

1. 參考 `PUT` 方法。如需 `GET` 方法的詳細資訊，請參閱[值得注意的 API 差異](#version_api_notes)。此清單僅涉及 OpenSearch Service 支援的一般 OpenSearch 操作，不包括針對異常偵測、ISM 等的外掛程式特定支援操作。

1. 請參閱 [縮小](#version_api_notes-shrink)。

### OpenSearch 1.0 版
<a name="version_opensearch_1.0"></a>

對於 OpenSearch 1.0，OpenSearch Service 支援下列操作。如需大部分操作的詳細資訊，請參閱 [OpenSearch REST API 參考](https://opensearch.org/docs/latest/opensearch/rest-api/index/)或特定外掛程式的 API 參考。


|  |  |  | 
| --- |--- |--- |
|  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  | 

1. 叢集組態變更完成之前，這些操作可能中斷。我們建議您隨這些操作一起使用 `/_tasks` 作業，以確認請求已成功完成。

1. 對 `/_search/scroll` 的 DELETE 請求及訊息本文，都必須在 HTTP 標頭指定 `"Content-Length"`。根據預設，大多數的用戶端新增此標頭。為避免發生 `scroll_id` 值中有 `=` 字元的問題，請使用要求主體而不是查詢字串，將 `scroll_id` 值傳遞至 OpenSearch Service。

1. 有關使用指令碼的考量事項，請參閱[Amazon OpenSearch Service 中的其他支援資源](supported-resources.md)。

1. 參考 `PUT` 方法。如需 `GET` 方法的詳細資訊，請參閱[值得注意的 API 差異](#version_api_notes)。此清單僅涉及 OpenSearch Service 支援的一般 OpenSearch 操作，不包括針對異常偵測、ISM 等的外掛程式特定支援操作。

1. 請參閱 [縮小](#version_api_notes-shrink)。

### Elasticsearch 7.10 版
<a name="version_7_10"></a>

對於 Elasticsearch 7.10，OpenSearch Service 支援下列操作。


|  |  |  | 
| --- |--- |--- |
|  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  | 

1. 叢集組態變更完成之前，這些操作可能中斷。我們建議您隨這些操作一起使用 `/_tasks` 作業，以確認請求已成功完成。

1. 對 `/_search/scroll` 的 DELETE 請求及訊息本文，都必須在 HTTP 標頭指定 `"Content-Length"`。根據預設，大多數的用戶端新增此標頭。為避免發生 `scroll_id` 值中有 `=` 字元的問題，請使用要求主體而不是查詢字串，將 `scroll_id` 值傳遞至 OpenSearch Service。

1. 有關使用指令碼的考量事項，請參閱[Amazon OpenSearch Service 中的其他支援資源](supported-resources.md)。

1. 參考 `PUT` 方法。如需 `GET` 方法的詳細資訊，請參閱[值得注意的 API 差異](#version_api_notes)。此清單僅涉及 OpenSearch Service 支援的一般 Elasticsearch 操作，不包括針對異常偵測、ISM 等的外掛程式特定支援操作。

1. 請參閱 [縮小](#version_api_notes-shrink)。

1. 舊版索引範本 (`_template`) 被可組合的範本 (`_index_template`) 所取代，從 Elasticsearch 7.8 開始。可組合的範本優先於舊版範本。如果可組合的範本與指定索引不匹配，則舊版範本仍然匹配並套用。`_template` 操作仍然適用於 OpenSearch 和更新版本的 Elasticsearch OSS，但對兩個範本類型的 GET 呼叫會傳回不同結果。

### Elasticsearch 7.9 版
<a name="version_7_9"></a>

對於 Elasticsearch 7.9，OpenSearch Service 支援下列操作。


|  |  |  | 
| --- |--- |--- |
|  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  | 

1. 叢集組態變更完成之前，這些操作可能中斷。我們建議您隨這些操作一起使用 `/_tasks` 作業，以確認請求已成功完成。

1. 對 `/_search/scroll` 的 DELETE 請求及訊息本文，都必須在 HTTP 標頭指定 `"Content-Length"`。根據預設，大多數的用戶端新增此標頭。為避免發生 `scroll_id` 值中有 `=` 字元的問題，請使用要求主體而不是查詢字串，將 `scroll_id` 值傳遞至 OpenSearch Service。

1. 有關使用指令碼的考量事項，請參閱[Amazon OpenSearch Service 中的其他支援資源](supported-resources.md)。

1. 參考 `PUT` 方法。如需 `GET` 方法的詳細資訊，請參閱[值得注意的 API 差異](#version_api_notes)。此清單僅涉及 OpenSearch Service 支援的一般 OpenSearch 操作，不包括針對異常偵測、ISM 等的外掛程式特定支援操作。

1. 請參閱 [縮小](#version_api_notes-shrink)。

1. 舊版索引範本 (`_template`) 被可組合的範本 (`_index_template`) 所取代，從 Elasticsearch 7.8 開始。可組合的範本優先於舊版範本。如果可組合的範本與指定索引不匹配，則舊版範本仍然匹配並套用。`_template` 操作仍然適用於 OpenSearch 和更新版本的 Elasticsearch OSS，但對兩個範本類型的 GET 呼叫會傳回不同結果。

### Elasticsearch 7.8 版
<a name="version_7_8"></a>

對於 Elasticsearch 7.8，OpenSearch Service 支援下列操作。


|  |  |  | 
| --- |--- |--- |
|  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  | 

1. 叢集組態變更完成之前，這些操作可能中斷。我們建議您隨這些操作一起使用 `/_tasks` 作業，以確認請求已成功完成。

1. 對 `/_search/scroll` 的 DELETE 請求及訊息本文，都必須在 HTTP 標頭指定 `"Content-Length"`。根據預設，大多數的用戶端新增此標頭。為避免發生 `scroll_id` 值中有 `=` 字元的問題，請使用要求主體而不是查詢字串，將 `scroll_id` 值傳遞至 OpenSearch Service。

1. 有關使用指令碼的考量事項，請參閱[Amazon OpenSearch Service 中的其他支援資源](supported-resources.md)。

1. 參考 `PUT` 方法。如需 `GET` 方法的詳細資訊，請參閱[值得注意的 API 差異](#version_api_notes)。此清單僅涉及 OpenSearch Service 支援的一般 Elasticsearch 操作，不包括針對異常偵測、ISM 等的外掛程式特定支援操作。

1. 請參閱 [縮小](#version_api_notes-shrink)。

1. 舊版索引範本 (`_template`) 被可組合的範本 (`_index_template`) 所取代，從 Elasticsearch 7.8 開始。可組合的範本優先於舊版範本。如果可組合的範本與指定索引不匹配，則舊版範本仍然匹配並套用。`_template` 操作仍然適用於 OpenSearch 和更新版本的 Elasticsearch OSS，但對兩個範本類型的 GET 呼叫會傳回不同結果。

### Elasticsearch 7.7 版
<a name="version_7_7"></a>

對於 Elasticsearch 7.7，OpenSearch Service 支援下列操作。


|  |  |  | 
| --- |--- |--- |
|  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  | 

1. 叢集組態變更完成之前，這些操作可能中斷。我們建議您隨這些操作一起使用 `/_tasks` 作業，以確認請求已成功完成。

1. 對 `/_search/scroll` 的 DELETE 請求及訊息本文，都必須在 HTTP 標頭指定 `"Content-Length"`。根據預設，大多數的用戶端新增此標頭。為避免發生 `scroll_id` 值中有 `=` 字元的問題，請使用要求主體而不是查詢字串，將 `scroll_id` 值傳遞至 OpenSearch Service。

1. 有關使用指令碼的考量事項，請參閱[Amazon OpenSearch Service 中的其他支援資源](supported-resources.md)。

1. 參考 `PUT` 方法。如需 `GET` 方法的詳細資訊，請參閱[值得注意的 API 差異](#version_api_notes)。此清單僅涉及 OpenSearch Service 支援的一般 Elasticsearch 操作，不包括針對異常偵測、ISM 等的外掛程式特定支援操作。

1. 請參閱 [縮小](#version_api_notes-shrink)。

### Elasticsearch 7.4 版
<a name="version_7_4"></a>

對於 Elasticsearch 7.4，OpenSearch Service 支援下列操作。


|  |  |  | 
| --- |--- |--- |
|  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  | 

1. 叢集組態變更完成之前，這些操作可能中斷。我們建議您隨這些操作一起使用 `/_tasks` 作業，以確認請求已成功完成。

1. 對 `/_search/scroll` 的 DELETE 請求及訊息本文，都必須在 HTTP 標頭指定 `"Content-Length"`。根據預設，大多數的用戶端新增此標頭。為避免發生 `scroll_id` 值中有 `=` 字元的問題，請使用要求主體而不是查詢字串，將 `scroll_id` 值傳遞至 OpenSearch Service。

1. 有關使用指令碼的考量事項，請參閱[Amazon OpenSearch Service 中的其他支援資源](supported-resources.md)。

1. 參考 `PUT` 方法。如需 `GET` 方法的詳細資訊，請參閱[值得注意的 API 差異](#version_api_notes)。此清單僅涉及 OpenSearch Service 支援的一般 Elasticsearch 操作，不包括針對異常偵測、ISM 等的外掛程式特定支援操作。

1. 請參閱 [縮小](#version_api_notes-shrink)。

### Elasticsearch 7.1 版
<a name="version_7_1"></a>

對於 Elasticsearch 7.1，OpenSearch Service 支援下列操作。


|  |  |  | 
| --- |--- |--- |
|  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  | 

1. 叢集組態變更完成之前，這些操作可能中斷。我們建議您隨這些操作一起使用 `/_tasks` 作業，以確認請求已成功完成。

1. 對 `/_search/scroll` 的 DELETE 請求及訊息本文，都必須在 HTTP 標頭指定 `"Content-Length"`。根據預設，大多數的用戶端新增此標頭。為避免發生 `scroll_id` 值中有 `=` 字元的問題，請使用要求主體而不是查詢字串，將 `scroll_id` 值傳遞至 OpenSearch Service。

1. 有關使用指令碼的考量事項，請參閱[Amazon OpenSearch Service 中的其他支援資源](supported-resources.md)。

1. 參考 `PUT` 方法。如需 `GET` 方法的詳細資訊，請參閱[值得注意的 API 差異](#version_api_notes)。此清單僅涉及 OpenSearch Service 支援的一般 Elasticsearch 操作，不包括針對異常偵測、ISM 等的外掛程式特定支援操作。

1. 請參閱 [縮小](#version_api_notes-shrink)。

### Elasticsearch 6.8 版
<a name="version_6_8"></a>

對於 Elasticsearch 6.8，OpenSearch Service 支援下列操作。


|  |  |  | 
| --- |--- |--- |
|  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  | 

1. 叢集組態變更完成之前，這些操作可能中斷。我們建議您隨這些操作一起使用 `/_tasks` 作業，以確認請求已成功完成。

1. 對 `/_search/scroll` 的 DELETE 請求及訊息本文，都必須在 HTTP 標頭指定 `"Content-Length"`。根據預設，大多數的用戶端新增此標頭。為避免發生 `scroll_id` 值中有 `=` 字元的問題，請使用要求主體而不是查詢字串，將 `scroll_id` 值傳遞至 OpenSearch Service。

1. 有關使用指令碼的考量事項，請參閱[Amazon OpenSearch Service 中的其他支援資源](supported-resources.md)。

1. 參考 `PUT` 方法。如需 `GET` 方法的詳細資訊，請參閱[值得注意的 API 差異](#version_api_notes)。此清單僅涉及 OpenSearch Service 支援的一般 Elasticsearch 操作，不包括針對異常偵測、ISM 等的外掛程式特定支援操作。

1. 請參閱 [縮小](#version_api_notes-shrink)。

### Elasticsearch 6.7 版
<a name="version_6_7"></a>

對於 Elasticsearch 6.7，OpenSearch Service 支援下列操作。


|  |  |  | 
| --- |--- |--- |
|  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  | 

1. 叢集組態變更完成之前，這些操作可能中斷。我們建議您隨這些操作一起使用 `/_tasks` 作業，以確認請求已成功完成。

1. 對 `/_search/scroll` 的 DELETE 請求及訊息本文，都必須在 HTTP 標頭指定 `"Content-Length"`。根據預設，大多數的用戶端新增此標頭。為避免發生 `scroll_id` 值中有 `=` 字元的問題，請使用要求主體而不是查詢字串，將 `scroll_id` 值傳遞至 OpenSearch Service。

1. 有關使用指令碼的考量事項，請參閱[Amazon OpenSearch Service 中的其他支援資源](supported-resources.md)。

1. 參考 `PUT` 方法。如需 `GET` 方法的詳細資訊，請參閱[值得注意的 API 差異](#version_api_notes)。此清單僅涉及 OpenSearch Service 支援的一般 Elasticsearch 操作，不包括針對異常偵測、ISM 等的外掛程式特定支援操作。

1. 請參閱 [縮小](#version_api_notes-shrink)。

### Elasticsearch 6.5 版
<a name="version_6_5"></a>

對於 Elasticsearch 6.5，OpenSearch Service 支援下列操作。


|  |  |  | 
| --- |--- |--- |
|  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  | 

1. 叢集組態變更完成之前，這些操作可能中斷。我們建議您隨這些操作一起使用 `/_tasks` 作業，以確認請求已成功完成。

1. 對 `/_search/scroll` 的 DELETE 請求及訊息本文，都必須在 HTTP 標頭指定 `"Content-Length"`。根據預設，大多數的用戶端新增此標頭。為避免發生 `scroll_id` 值中有 `=` 字元的問題，請使用要求主體而不是查詢字串，將 `scroll_id` 值傳遞至 OpenSearch Service。

1. 有關使用指令碼的考量事項，請參閱[Amazon OpenSearch Service 中的其他支援資源](supported-resources.md)。

1. 參考 `PUT` 方法。如需 `GET` 方法的詳細資訊，請參閱[值得注意的 API 差異](#version_api_notes)。此清單僅涉及 OpenSearch Service 支援的一般 Elasticsearch 操作，不包括針對異常偵測、ISM 等的外掛程式特定支援操作。

1. 請參閱 [縮小](#version_api_notes-shrink)。

### Elasticsearch 6.4 版
<a name="version_6_4"></a>

對於 Elasticsearch 6.4，OpenSearch Service 支援下列操作。


|  |  |  | 
| --- |--- |--- |
|  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  | 

1. 叢集組態變更完成之前，這些操作可能中斷。我們建議您隨這些操作一起使用 `/_tasks` 作業，以確認請求已成功完成。

1. 對 `/_search/scroll` 的 DELETE 請求及訊息本文，都必須在 HTTP 標頭指定 `"Content-Length"`。根據預設，大多數的用戶端新增此標頭。為避免發生 `scroll_id` 值中有 `=` 字元的問題，請使用要求主體而不是查詢字串，將 `scroll_id` 值傳遞至 OpenSearch Service。

1. 有關使用指令碼的考量事項，請參閱[Amazon OpenSearch Service 中的其他支援資源](supported-resources.md)。

1. 參考 `PUT` 方法。如需 `GET` 方法的詳細資訊，請參閱[值得注意的 API 差異](#version_api_notes)。此清單僅涉及 OpenSearch Service 支援的一般 Elasticsearch 操作，不包括針對異常偵測、ISM 等的外掛程式特定支援操作。

1. 請參閱 [縮小](#version_api_notes-shrink)。

### Elasticsearch 6.3 版
<a name="version_6_3"></a>

對於 Elasticsearch 6.3，OpenSearch Service 支援下列操作。


|  |  |  | 
| --- |--- |--- |
|  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  | 

1. 叢集組態變更完成之前，這些操作可能中斷。我們建議您隨這些操作一起使用 `/_tasks` 作業，以確認請求已成功完成。

1. 對 `/_search/scroll` 的 DELETE 請求及訊息本文，都必須在 HTTP 標頭指定 `"Content-Length"`。根據預設，大多數的用戶端新增此標頭。為避免發生 `scroll_id` 值中有 `=` 字元的問題，請使用要求主體而不是查詢字串，將 `scroll_id` 值傳遞至 OpenSearch Service。

1. 有關使用指令碼的考量事項，請參閱[Amazon OpenSearch Service 中的其他支援資源](supported-resources.md)。

1. 參考 `PUT` 方法。如需 `GET` 方法的詳細資訊，請參閱[值得注意的 API 差異](#version_api_notes)。此清單僅涉及 OpenSearch Service 支援的一般 Elasticsearch 操作，不包括針對異常偵測、ISM 等的外掛程式特定支援操作。

1. 請參閱 [縮小](#version_api_notes-shrink)。

### Elasticsearch 6.2 版
<a name="version_6_2"></a>

對於 Elasticsearch 6.2，OpenSearch Service 支援下列操作。


|  |  |  | 
| --- |--- |--- |
|  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  | 

1. 叢集組態變更完成之前，這些操作可能中斷。我們建議您隨這些操作一起使用 `/_tasks` 作業，以確認請求已成功完成。

1. 對 `/_search/scroll` 的 DELETE 請求及訊息本文，都必須在 HTTP 標頭指定 `"Content-Length"`。根據預設，大多數的用戶端新增此標頭。為避免發生 `scroll_id` 值中有 `=` 字元的問題，請使用要求主體而不是查詢字串，將 `scroll_id` 值傳遞至 OpenSearch Service。

1. 有關使用指令碼的考量事項，請參閱[Amazon OpenSearch Service 中的其他支援資源](supported-resources.md)。

1. 參考 `PUT` 方法。如需 `GET` 方法的詳細資訊，請參閱[值得注意的 API 差異](#version_api_notes)。此清單僅涉及 OpenSearch Service 支援的一般 Elasticsearch 操作，不包括針對異常偵測、ISM 等的外掛程式特定支援操作。

1. 請參閱 [縮小](#version_api_notes-shrink)。

### Elasticsearch 6.0 版
<a name="version_6_0"></a>

對於 Elasticsearch 6.0，OpenSearch Service 支援下列操作。


|  |  |  | 
| --- |--- |--- |
|  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  | 

1. 叢集組態變更完成之前，這些操作可能中斷。我們建議您隨這些操作一起使用 `/_tasks` 作業，以確認請求已成功完成。

1. 對 `/_search/scroll` 的 DELETE 請求及訊息本文，都必須在 HTTP 標頭指定 `"Content-Length"`。根據預設，大多數的用戶端新增此標頭。為避免發生 `scroll_id` 值中有 `=` 字元的問題，請使用要求主體而不是查詢字串，將 `scroll_id` 值傳遞至 OpenSearch Service。

1. 有關使用指令碼的考量事項，請參閱[Amazon OpenSearch Service 中的其他支援資源](supported-resources.md)。

1. 參考 `PUT` 方法。如需 `GET` 方法的詳細資訊，請參閱[值得注意的 API 差異](#version_api_notes)。此清單僅涉及 OpenSearch Service 支援的一般 Elasticsearch 操作，不包括針對異常偵測、ISM 等的外掛程式特定支援操作。

1. 請參閱 [縮小](#version_api_notes-shrink)。

### Elasticsearch 5.6 版
<a name="version_5_6"></a>

對於 Elasticsearch 5.6，OpenSearch Service 支援下列操作。


|  |  |  | 
| --- |--- |--- |
|  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  | 

1. 叢集組態變更完成之前，這些操作可能中斷。我們建議您隨這些操作一起使用 `/_tasks` 作業，以確認請求已成功完成。

1. 對 `/_search/scroll` 的 DELETE 請求及訊息本文，都必須在 HTTP 標頭指定 `"Content-Length"`。根據預設，大多數的用戶端新增此標頭。為避免發生 `scroll_id` 值中有 `=` 字元的問題，請使用要求主體而不是查詢字串，將 `scroll_id` 值傳遞至 OpenSearch Service。

1. 有關使用指令碼的考量事項，請參閱[Amazon OpenSearch Service 中的其他支援資源](supported-resources.md)。

1. 參考 `PUT` 方法。如需 `GET` 方法的詳細資訊，請參閱[值得注意的 API 差異](#version_api_notes)。此清單僅涉及 OpenSearch Service 支援的一般 Elasticsearch 操作，不包括針對異常偵測、ISM 等的外掛程式特定支援操作。

1. 請參閱 [縮小](#version_api_notes-shrink)。

### Elasticsearch 5.5 版
<a name="version_5_5"></a>

對於 Elasticsearch 5.5，OpenSearch Service 支援下列操作。


|  |  |  | 
| --- |--- |--- |
|  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  | 

1. 叢集組態變更完成之前，這些操作可能中斷。我們建議您隨這些操作一起使用 `/_tasks` 作業，以確認請求已成功完成。

1. 對 `/_search/scroll` 的 DELETE 請求及訊息本文，都必須在 HTTP 標頭指定 `"Content-Length"`。根據預設，大多數的用戶端新增此標頭。為避免發生 `scroll_id` 值中有 `=` 字元的問題，請使用要求主體而不是查詢字串，將 `scroll_id` 值傳遞至 OpenSearch Service。

1. 有關使用指令碼的考量事項，請參閱[Amazon OpenSearch Service 中的其他支援資源](supported-resources.md)。

1. 參考 `PUT` 方法。如需 `GET` 方法的詳細資訊，請參閱[值得注意的 API 差異](#version_api_notes)。此清單僅涉及 OpenSearch Service 支援的一般 Elasticsearch 操作，不包括針對異常偵測、ISM 等的外掛程式特定支援操作。

1. 請參閱 [縮小](#version_api_notes-shrink)。

### Elasticsearch 5.3 版
<a name="version_5_3"></a>

對於 Elasticsearch 5.3，OpenSearch Service 支援下列操作。


|  |  |  | 
| --- |--- |--- |
|  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  | 

1. 叢集組態變更完成之前，這些操作可能中斷。我們建議您隨這些操作一起使用 `/_tasks` 作業，以確認請求已成功完成。

1. 對 `/_search/scroll` 的 DELETE 請求及訊息本文，都必須在 HTTP 標頭指定 `"Content-Length"`。根據預設，大多數的用戶端新增此標頭。為避免發生 `scroll_id` 值中有 `=` 字元的問題，請使用要求主體而不是查詢字串，將 `scroll_id` 值傳遞至 OpenSearch Service。

1. 參考 `PUT` 方法。如需 `GET` 方法的詳細資訊，請參閱[值得注意的 API 差異](#version_api_notes)。此清單僅涉及 OpenSearch Service 支援的一般 Elasticsearch 操作，不包括針對異常偵測、ISM 等的外掛程式特定支援操作。

1. 請參閱 [縮小](#version_api_notes-shrink)。

### Elasticsearch 5.1 版
<a name="version_5_1"></a>

對於 Elasticsearch 5.1，OpenSearch Service 支援下列操作。


|  |  |  | 
| --- |--- |--- |
|  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  | 

1. 叢集組態變更完成之前，這些操作可能中斷。我們建議您隨這些操作一起使用 `/_tasks` 作業，以確認請求已成功完成。

1. 對 `/_search/scroll` 的 DELETE 請求及訊息本文，都必須在 HTTP 標頭指定 `"Content-Length"`。根據預設，大多數的用戶端新增此標頭。為避免發生 `scroll_id` 值中有 `=` 字元的問題，請使用要求主體而不是查詢字串，將 `scroll_id` 值傳遞至 OpenSearch Service。

1. 請參閱 [縮小](#version_api_notes-shrink)。

### Elasticsearch 2.3 版
<a name="version_2_3"></a>

對於 Elasticsearch 2.3，OpenSearch Service 支援下列操作。


|  |  | 
| --- |--- |
|  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  | 

### Elasticsearch 1.5 版
<a name="version_1_5"></a>

對於 Elasticsearch 1.5，OpenSearch Service 支援下列操作。


|  |  | 
| --- |--- |
|  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  |  [See the AWS documentation website for more details](http://docs.aws.amazon.com/zh_tw/opensearch-service/latest/developerguide/supported-operations.html)  | 