Skip to content

Commit aefc6ec

Browse files
authored
Moved ignore 404 on deletion to client options. (#277)
* - Moved `ignore 404` on deletion to client options. - Removed `ignore` feature from `OpenSearch::Transport::Transport::Base#perform_request` Signed-off-by: Theo Truong <[email protected]> * # explicitly added logger as a dependency Signed-off-by: Theo Truong <[email protected]> --------- Signed-off-by: Theo Truong <[email protected]>
1 parent 0c25b91 commit aefc6ec

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+110
-228
lines changed

CHANGELOG.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,14 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
1212
## [4.0.0]
1313
### Added
1414
- Added an API Generator ([#233](https://github.com/opensearch-project/opensearch-ruby/issues/233))
15-
- Added a workflow to generate API methods from OpenSearch API Spec
15+
- Added a workflow to generate API methods from OpenSearch API Spec ([261](https://github.com/opensearch-project/opensearch-ruby/pull/261))
1616
- Added support for Ruby 3.4 ([#265](https://github.com/opensearch-project/opensearch-ruby/pull/265))
1717
### Changed
18-
- Restructured the API methods and modules to be more efficient and intuitive
18+
- Restructured the API methods and modules to be more efficient and intuitive ([261](https://github.com/opensearch-project/opensearch-ruby/pull/261))
19+
- Moved ignore-404-on-deletion feature into the client options ([#277](https://github.com/opensearch-project/opensearch-ruby/pull/277))
1920
### Deprecated
20-
- Removed support for Ruby 2.x
21+
- Removed support for Ruby 2.x ([261](https://github.com/opensearch-project/opensearch-ruby/pull/261))
22+
- Removed the ability to ignore any error code by passing the `ignore: Array<error_code>` to each API method invocation ([#277](https://github.com/opensearch-project/opensearch-ruby/pull/277))
2123

2224
## [3.4.0]
2325
### Added

UPGRADING.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
# Upgrading
22
Major versions of OpenSearch introduce breaking changes that require careful upgrades of the client. Check the [Compatibility](COMPATIBILITY.md) doc to see which version of the client should be used against your OpenSearch cluster.
33

4-
### Upgrade to OpenSearch Ruby 4
5-
OpenSearch Ruby 4 drops support for Ruby 2.x. If you are using Ruby 2.x, you should upgrade to Ruby 3.x before upgrading to OpenSearch Ruby 4.
6-
7-
8-
### Upgrade to OpenSearch Ruby 3
4+
## Upgrade to OpenSearch Ruby 4
5+
- OpenSearch Ruby 4 drops support for Ruby 2.x. If you are using Ruby 2.x, you should upgrade to Ruby 3.x before upgrading to OpenSearch Ruby 4.
6+
- OpenSearch Ruby 4 has a different implementation of the `ignore 404 error` feature on all delete actions. Instead of passing `ingore: 404` as if it is a query parameter for each API action, this feature can now be toggled on and off (off by default) during the client instance instantiation. If you are using this feature, you should review the [Idempotent Delete](./guides/idempotent_delete.md) guide for the changes.
7+
- The lesser-known ability to ignore any error code by passing the `ignore: Array<error_code>` to each API method invocation is deemed unnecessary and dangerous. This feature has been removed in OpenSearch Ruby 4.
8+
- OpenSearch Ruby 4 received a major refactor to remove middle-man `perform_request` methods. While this does not affect the vast majority of use cases, applications or wrappers that rely on these methods should be updated. For more information, check the `How the perform_request method is invoked` section of this [PR](https://github.com/opensearch-project/opensearch-ruby/pull/261).
9+
## Upgrade to OpenSearch Ruby 3
910
In Version 3 of the OpenSearch Ruby client, we have added the `api` and `transport` modules as the core components of the gem, instead of treating them as separate gems that are required by the `opensearch-ruby` gem. This removes the confusions around compatibility between the ruby client, its legacy dependencies, and the OpenSearch cluster.
1011

1112
`opensearch-dsl` has also been moved into `opensearch-ruby` 3.0. If your application uses `opensearch-dsl`, you should now remove this gem from your Gemfile or gemspec.
1213

1314
We don't expect the upgrade to OpenSearch Ruby 3 to be a breaking change for the vast majority of use cases, and you do not have to make any changes to your application before the upgrade. On your development environment, you might want to perform a `bundle clean` to remove `opensearch-api`, `opensearch-transport`, and `opensearch-dsl` gems after the upgrade.
1415

15-
### Upgrade to OpenSearch Ruby 2
16+
## Upgrade to OpenSearch Ruby 2
1617
While `opensearch-ruby-client` 2.x works against the latest OpenSearch 1.x, certain deprecated features removed in OpenSearch 2.0 have also been removed from the client. So, only upgrade to `opensearch-ruby` gem to 2.x if you are also upgrading your cluster to OpenSearch 2.0.

api_generator/lib/generators/action_generator.rb

+1-5
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,6 @@ def bulk_body
7272
@action.arguments.find { |arg| arg.name == 'body' }&.schema&.type == 'array'
7373
end
7474

75-
def support_ignore
76-
@action.http_verbs == %w[DELETE]
77-
end
78-
7975
def path_params
8076
@action.path_params.map { |arg| { name: arg.name } }
8177
.tap { |args| args.last&.[]=('_blank_line', true) }
@@ -89,7 +85,7 @@ def perform_request
8985
args = 'method, url, args, body, headers'
9086
return "transport.perform_ping_request #{args}" if @action.full_name == 'ping'
9187
return "transport.perform_head_request #{args}" if @action.http_verbs == %w[HEAD]
92-
return "transport.perform_delete_request #{args}, ignore.include?(404)" if @action.http_verbs == %w[DELETE]
88+
return "transport.perform_delete_request #{args}" if @action.http_verbs == %w[DELETE]
9389
"transport.perform_request(#{args}).body"
9490
end
9591
end

api_generator/lib/templates/action.mustache

-6
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ module OpenSearch
1212
{{#argument_descriptions}}
1313
# @option args [{{{data_type}}}] :{{{name}}}{{#required}} *Required*{{/required}}{{#deprecated}} DEPRECATED{{/deprecated}}{{#default}} (default: {{{default}}}){{/default}}{{#description}} {{{description}}}{{/description}}
1414
{{/argument_descriptions}}
15-
{{#support_ignore}}
16-
# @option args [List] :ignore set to [404] to ignore server's NOT FOUND error for this request
17-
{{/support_ignore}}
1815
{{#api_reference}}
1916
#
2017
# {API Reference}[{{{api_reference}}}]
@@ -33,9 +30,6 @@ module OpenSearch
3330

3431
{{/_blank_line}}
3532
{{/path_params}}
36-
{{#support_ignore}}
37-
ignore = args.delete('ignore') || []
38-
{{/support_ignore}}
3933
{{#bulk_body}}
4034
headers = (args.delete('headers') || {}).merge('Content-Type' => 'application/x-ndjson')
4135
body = Utils.bulkify(args.delete('body'))

guides/document_lifecycle.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,7 @@ To delete a document, use the `delete` API action. The following code deletes th
113113
```ruby
114114
client.delete(index: index, id: 1)
115115
```
116-
By default, the `delete` action is not idempotent. If you try to delete a document that does not exist, or delete the same document twice, you will run into Not Found (404) error. You can make the `delete` action idempotent by setting the `ignore` parameter to `404`:
117-
```ruby
118-
client.delete(index: index, id: 1, ignore: 404)
119-
```
116+
By default, the `delete` action is not idempotent. If you try to delete a document that does not exist, or delete the same document twice, you will run into 404/NotFound error. You can make the `delete` action idempotent across the client instance. Check the [Idempotent Delete](idempotent_delete.md) guide for more information.
120117

121118
### Delete multiple documents by query
122119
To delete documents that match a query, use the `delete_by_query` API action. The following code deletes all documents with `year` greater than 2023:

guides/idempotent_delete.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Idempotent Delete
2+
Most OpenSearch API endpoints will return a 404/NotFound error when attempting to delete a resource that no longer exists. This means you must check if the resource exists before performing a deletion, making the delete action non-idempotent in OpenSearch. This process can be cumbersome and error-prone. The Ruby client provides the `:ignore_404_on_delete` option to make delete actions idempotent. When set to `true` (default is `false`), the client will ignore the 404 error if the resource does not exist and return `false` instead.
3+
4+
5+
Let's create a client instance with the `:ignore_404_on_delete` option set to `true`:
6+
```ruby
7+
require 'opensearch-ruby'
8+
client = OpenSearch::Client.new(
9+
host: 'https://admin:admin@localhost:9200',
10+
transport_options: { ssl: { verify: false } },
11+
ignore_404_on_delete: true
12+
)
13+
```
14+
Now you can delete a resource without checking if it exists, or delete the same resource several times without error:
15+
```ruby
16+
client.indices.create(index: :movies)
17+
client.delete(index: :movies, id: 1)
18+
client.delete(index: :movies, id: 1)
19+
client.indices.delete(index: :movies)
20+
client.indices.delete(index: [:moves, :books])
21+
```

guides/index_lifecycle.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ The response body contains the index's settings and mappings:
120120
}
121121
}
122122
}
123-
}
123+
}
124124
```
125125
### Delete an Index
126126
Let's delete the `movies` index by using the `indices.delete` API action:
@@ -131,9 +131,9 @@ client.indices.delete(index: :movies)
131131
We can also delete multiple indices at once:
132132

133133
```ruby
134-
client.indices.delete(index: [:movies, :paintings, :burner], ignore: 404)
134+
client.indices.delete(index: [:movies, :paintings, :burner])
135135
```
136-
Notice that we are passing `ignore: 404` to the request. This tells the client to ignore the `404` error if the index doesn't exist for deletion. Without it, the above `delete` request will throw an error because the `movies` index has already been deleted in the previous example.
136+
By default, the `indices.delete` action is not idempotent. If you try to delete an index that does not exist, or delete the same indices twice, you will run into 404/NotFound error. You can make the `indices.delete` action idempotent across the client instance. Check the [Idempotent Delete](idempotent_delete.md) guide for more information.
137137

138138
## Cleanup
139139

lib/opensearch/api/actions/asynchronous_search/delete.rb

+1-3
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,19 @@ module Actions
1616
# Deletes any responses from an asynchronous search.
1717
#
1818
# @option args [String] :id *Required*
19-
# @option args [List] :ignore set to [404] to ignore server's NOT FOUND error for this request
2019
def delete(args = {})
2120
args = Utils.clone_and_normalize_arguments(args)
2221
raise ArgumentError, "Required argument 'id' missing" if args['id'].nil?
2322

2423
_id = args.delete('id')
2524

26-
ignore = args.delete('ignore') || []
2725
headers = args.delete('headers') || {}
2826
body = args.delete('body')
2927
method = 'DELETE'
3028
url = Utils.build_url('_plugins/_asynchronous_search', _id)
3129

3230
Utils.validate_query_params! args
33-
transport.perform_delete_request method, url, args, body, headers, ignore.include?(404)
31+
transport.perform_delete_request method, url, args, body, headers
3432
end
3533
end
3634
end

lib/opensearch/api/actions/clear_scroll.rb

+1-3
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,17 @@ module Actions
1717
#
1818
# @option args [Enumerable<String>, String] :scroll_id DEPRECATED Comma-separated list of scroll IDs to clear. To clear all scroll IDs, use `_all`.
1919
# @option args [Hash] :body Comma-separated list of scroll IDs to clear if none was specified using the `scroll_id` parameter
20-
# @option args [List] :ignore set to [404] to ignore server's NOT FOUND error for this request
2120
def clear_scroll(args = {})
2221
args = Utils.clone_and_normalize_arguments(args)
2322
_scroll_id = args.delete('scroll_id')
2423

25-
ignore = args.delete('ignore') || []
2624
headers = args.delete('headers') || {}
2725
body = args.delete('body')
2826
method = 'DELETE'
2927
url = Utils.build_url('_search/scroll', _scroll_id)
3028

3129
Utils.validate_query_params! args
32-
transport.perform_delete_request method, url, args, body, headers, ignore.include?(404)
30+
transport.perform_delete_request method, url, args, body, headers
3331
end
3432
end
3533
end

lib/opensearch/api/actions/cluster/delete_component_template.rb

+1-3
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,19 @@ module Actions
1919
# @option args [String] :cluster_manager_timeout Operation timeout for connection to cluster-manager node.
2020
# @option args [String] :master_timeout DEPRECATED A duration. Units can be `nanos`, `micros`, `ms` (milliseconds), `s` (seconds), `m` (minutes), `h` (hours) and `d` (days). Also accepts "0" without a unit and "-1" to indicate an unspecified value.
2121
# @option args [String] :timeout A duration. Units can be `nanos`, `micros`, `ms` (milliseconds), `s` (seconds), `m` (minutes), `h` (hours) and `d` (days). Also accepts "0" without a unit and "-1" to indicate an unspecified value.
22-
# @option args [List] :ignore set to [404] to ignore server's NOT FOUND error for this request
2322
def delete_component_template(args = {})
2423
args = Utils.clone_and_normalize_arguments(args)
2524
raise ArgumentError, "Required argument 'name' missing" if args['name'].nil?
2625

2726
_name = args.delete('name')
2827

29-
ignore = args.delete('ignore') || []
3028
headers = args.delete('headers') || {}
3129
body = args.delete('body')
3230
method = 'DELETE'
3331
url = Utils.build_url('_component_template', _name)
3432

3533
Utils.validate_query_params! args, DELETE_COMPONENT_TEMPLATE_QUERY_PARAMS
36-
transport.perform_delete_request method, url, args, body, headers, ignore.include?(404)
34+
transport.perform_delete_request method, url, args, body, headers
3735
end
3836

3937
DELETE_COMPONENT_TEMPLATE_QUERY_PARAMS = Set.new(%w[

lib/opensearch/api/actions/cluster/delete_decommission_awareness.rb

+1-3
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,15 @@ module Cluster
1515
module Actions
1616
# Recommissions a decommissioned zone.
1717
#
18-
# @option args [List] :ignore set to [404] to ignore server's NOT FOUND error for this request
1918
def delete_decommission_awareness(args = {})
2019
args = Utils.clone_and_normalize_arguments(args)
21-
ignore = args.delete('ignore') || []
2220
headers = args.delete('headers') || {}
2321
body = args.delete('body')
2422
method = 'DELETE'
2523
url = '_cluster/decommission/awareness'
2624

2725
Utils.validate_query_params! args
28-
transport.perform_delete_request method, url, args, body, headers, ignore.include?(404)
26+
transport.perform_delete_request method, url, args, body, headers
2927
end
3028
end
3129
end

lib/opensearch/api/actions/cluster/delete_voting_config_exclusions.rb

+1-3
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,15 @@ module Actions
1616
# Clears any cluster voting configuration exclusions.
1717
#
1818
# @option args [Boolean] :wait_for_removal (default: true) Specifies whether to wait for all excluded nodes to be removed from the cluster before clearing the voting configuration exclusions list. When `true`, all excluded nodes are removed from the cluster before this API takes any action. When `false`, the voting configuration exclusions list is cleared even if some excluded nodes are still in the cluster.
19-
# @option args [List] :ignore set to [404] to ignore server's NOT FOUND error for this request
2019
def delete_voting_config_exclusions(args = {})
2120
args = Utils.clone_and_normalize_arguments(args)
22-
ignore = args.delete('ignore') || []
2321
headers = args.delete('headers') || {}
2422
body = args.delete('body')
2523
method = 'DELETE'
2624
url = '_cluster/voting_config_exclusions'
2725

2826
Utils.validate_query_params! args, DELETE_VOTING_CONFIG_EXCLUSIONS_QUERY_PARAMS
29-
transport.perform_delete_request method, url, args, body, headers, ignore.include?(404)
27+
transport.perform_delete_request method, url, args, body, headers
3028
end
3129

3230
DELETE_VOTING_CONFIG_EXCLUSIONS_QUERY_PARAMS = Set.new(%w[

lib/opensearch/api/actions/cluster/delete_weighted_routing.rb

+1-3
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,15 @@ module Actions
1616
# Delete weighted shard routing weights.
1717
#
1818
# @option args [Hash] :body
19-
# @option args [List] :ignore set to [404] to ignore server's NOT FOUND error for this request
2019
def delete_weighted_routing(args = {})
2120
args = Utils.clone_and_normalize_arguments(args)
22-
ignore = args.delete('ignore') || []
2321
headers = args.delete('headers') || {}
2422
body = args.delete('body')
2523
method = 'DELETE'
2624
url = '_cluster/routing/awareness/weights'
2725

2826
Utils.validate_query_params! args
29-
transport.perform_delete_request method, url, args, body, headers, ignore.include?(404)
27+
transport.perform_delete_request method, url, args, body, headers
3028
end
3129
end
3230
end

lib/opensearch/api/actions/dangling_indices/delete_dangling_index.rb

+1-3
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,20 @@ module Actions
2020
# @option args [String] :cluster_manager_timeout Operation timeout for connection to cluster-manager node.
2121
# @option args [String] :master_timeout DEPRECATED Specify timeout for connection to cluster manager.
2222
# @option args [String] :timeout Explicit operation timeout.
23-
# @option args [List] :ignore set to [404] to ignore server's NOT FOUND error for this request
2423
def delete_dangling_index(args = {})
2524
args = Utils.clone_and_normalize_arguments(args)
2625
raise ArgumentError, "Required argument 'index_uuid' missing" if args['index_uuid'].nil?
2726
raise ArgumentError, "Required argument 'accept_data_loss' missing" if args['accept_data_loss'].nil?
2827

2928
_index_uuid = args.delete('index_uuid')
3029

31-
ignore = args.delete('ignore') || []
3230
headers = args.delete('headers') || {}
3331
body = args.delete('body')
3432
method = 'DELETE'
3533
url = Utils.build_url('_dangling', _index_uuid)
3634

3735
Utils.validate_query_params! args, DELETE_DANGLING_INDEX_QUERY_PARAMS
38-
transport.perform_delete_request method, url, args, body, headers, ignore.include?(404)
36+
transport.perform_delete_request method, url, args, body, headers
3937
end
4038

4139
DELETE_DANGLING_INDEX_QUERY_PARAMS = Set.new(%w[

lib/opensearch/api/actions/delete.rb

+1-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ module Actions
2525
# @option args [Integer] :version Explicit version number for concurrency control. The specified version must match the current version of the document for the request to succeed.
2626
# @option args [String] :version_type Specific version type: `external`, `external_gte`.
2727
# @option args [Integer, String] :wait_for_active_shards The number of shard copies that must be active before proceeding with the operation. Set to `all` or any positive integer up to the total number of shards in the index (`number_of_replicas+1`).
28-
# @option args [List] :ignore set to [404] to ignore server's NOT FOUND error for this request
2928
def delete(args = {})
3029
args = Utils.clone_and_normalize_arguments(args)
3130
raise ArgumentError, "Required argument 'id' missing" if args['id'].nil?
@@ -34,14 +33,13 @@ def delete(args = {})
3433
_id = args.delete('id')
3534
_index = args.delete('index')
3635

37-
ignore = args.delete('ignore') || []
3836
headers = args.delete('headers') || {}
3937
body = args.delete('body')
4038
method = 'DELETE'
4139
url = Utils.build_url(_index, '_doc', _id)
4240

4341
Utils.validate_query_params! args, DELETE_QUERY_PARAMS
44-
transport.perform_delete_request method, url, args, body, headers, ignore.include?(404)
42+
transport.perform_delete_request method, url, args, body, headers
4543
end
4644

4745
DELETE_QUERY_PARAMS = Set.new(%w[

lib/opensearch/api/actions/delete_all_pits.rb

+1-3
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,15 @@ module Root
1515
module Actions
1616
# Deletes all active point in time searches.
1717
#
18-
# @option args [List] :ignore set to [404] to ignore server's NOT FOUND error for this request
1918
def delete_all_pits(args = {})
2019
args = Utils.clone_and_normalize_arguments(args)
21-
ignore = args.delete('ignore') || []
2220
headers = args.delete('headers') || {}
2321
body = args.delete('body')
2422
method = 'DELETE'
2523
url = '_search/point_in_time/_all'
2624

2725
Utils.validate_query_params! args
28-
transport.perform_delete_request method, url, args, body, headers, ignore.include?(404)
26+
transport.perform_delete_request method, url, args, body, headers
2927
end
3028
end
3129
end

0 commit comments

Comments
 (0)