Skip to content

Commit 2782def

Browse files
authored
Added PIT actions (#155)
Removed Legacy X-Pack Point-In-Time API Signed-off-by: Theo Truong <[email protected]>
1 parent da913e2 commit 2782def

19 files changed

+509
-220
lines changed

USER_GUIDE.md

+36-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
- [User Guide](#user-guide)
22
- [Setup](#setup)
33
- [Sample code](#sample-code)
4+
- [Basic Usage](#basic-usage)
5+
- [Point in Time](#point-in-time)
46
- [Amazon OpenSearch Service](#amazon-opensearch-service)
57

68
# User Guide
@@ -24,7 +26,8 @@ Import the client:
2426
`require 'opensearch'`
2527

2628
## Sample code
27-
29+
<a name="basic-usage" /></a>
30+
### Basic Usage
2831
```ruby
2932
require 'opensearch'
3033

@@ -106,8 +109,39 @@ response = client.indices.delete(
106109
puts response
107110
```
108111

112+
### Point in Time
113+
Refer to OpenSearch [documentation](https://opensearch.org/docs/latest/point-in-time-api/) for more information on point in time.
114+
```ruby
115+
require 'opensearch-ruby'
116+
client = OpenSearch::Client.new({ host: 'localhost' })
117+
index = :movies
118+
client.indices.create(index: 'movies')
119+
120+
# CREATE 3 PITS
121+
client.create_pit index: index, keep_alive: '1m'
122+
client.create_pit index: index, keep_alive: '1m'
123+
client.create_pit index: index, keep_alive: '1m'
124+
125+
# GET ALL PITS
126+
pits = client.get_all_pits
127+
puts pits
128+
129+
# DELETE FIRST PIT
130+
client.delete_pit body: { pit_id: [pits.dig('pits', 0, 'pit_id')] }
131+
132+
# ALL PITS SEGMENTS
133+
puts client.cat.all_pit_segments
134+
135+
# SEGMENTS FOR A SPECIFIC PIT
136+
puts client.cat.pit_segments body: { pit_id: [pits.dig('pits', 1, 'pit_id')] }
137+
138+
139+
# DELETE ALL PITS
140+
puts client.delete_all_pits
141+
```
142+
109143
## Amazon OpenSearch Service
110144

111145
Requests to [OpenSearch Service and OpenSearch Serverless](https://docs.aws.amazon.com/opensearch-service/index.html) must be signed using the AWS signing protocol. Use `opensearch-aws-sigv4` gem in place of `opensearch-ruby` gem.
112146

113-
For more information, checkout the [USER_GUIDE](opensearch-aws-sigv4/USER_GUIDE.md) of [opensearch-aws-sigv4](opensearch-aws-sigv4).
147+
For more information, checkout the [USER_GUIDE](opensearch-aws-sigv4/USER_GUIDE.md) of [opensearch-aws-sigv4](opensearch-aws-sigv4).

opensearch-api/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
.bundle
44
.config
55
.yardoc
6+
.ruby-version
67
Gemfile.lock
78
InstalledFiles
89
_yardoc

opensearch-api/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
33

44
## [Unreleased]
55
### Added
6+
- Added Point-In-Time API ([#136](https://github.com/opensearch-project/opensearch-ruby/issues/136))
67
### Changed
78
### Deprecated
89
### Removed
10+
- Removed Legacy X-Pack Point-In-Time API ([#136](https://github.com/opensearch-project/opensearch-ruby/issues/136))
911
### Fixed
1012
### Security
1113

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
#
3+
# The OpenSearch Contributors require contributions made to
4+
# this file be licensed under the Apache-2.0 license or a
5+
# compatible open source license.
6+
#
7+
# Modifications Copyright OpenSearch Contributors. See
8+
# GitHub history for details.
9+
10+
module OpenSearch
11+
module API
12+
module Cat
13+
module Actions
14+
# Retrieves info of all PIT segments
15+
#
16+
# @option arguments [String] :format a short version of the Accept header, e.g. json, yaml
17+
# @option arguments [List] :h Comma-separated list of column names to display
18+
# @option arguments [Boolean] :help Return help information
19+
# @option arguments [List] :s Comma-separated list of column names or column aliases to sort by
20+
# @option arguments [Boolean] :v Verbose mode. Display column headers
21+
# @option arguments [Hash] :headers Custom HTTP headers
22+
def all_pit_segments(arguments = {})
23+
arguments = arguments.clone
24+
headers = arguments.delete(:headers) || {}
25+
26+
27+
method = OpenSearch::API::HTTP_GET
28+
path = '_cat/pit_segments/_all'
29+
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
30+
params[:h] = Utils.__listify(params[:h]) if params[:h]
31+
32+
body = nil
33+
perform_request(method, path, params, body, headers).body
34+
end
35+
36+
ParamsRegistry.register(:all_pit_segments, [
37+
:format,
38+
:h,
39+
:help,
40+
:s,
41+
:v
42+
].freeze)
43+
end
44+
end
45+
end
46+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
#
3+
# The OpenSearch Contributors require contributions made to
4+
# this file be licensed under the Apache-2.0 license or a
5+
# compatible open source license.
6+
#
7+
# Modifications Copyright OpenSearch Contributors. See
8+
# GitHub history for details.
9+
10+
module OpenSearch
11+
module API
12+
module Cat
13+
module Actions
14+
# Retrieves info of certain PIT segments
15+
#
16+
# @option arguments [Hash] body: Must include `pit_id`, which is an array of PIT IDs. (required)
17+
# @option arguments [String] :format a short version of the Accept header, e.g. json, yaml
18+
# @option arguments [List] :h Comma-separated list of column names to display
19+
# @option arguments [Boolean] :help Return help information
20+
# @option arguments [List] :s Comma-separated list of column names or column aliases to sort by
21+
# @option arguments [Boolean] :v Verbose mode. Display column headers
22+
# @option arguments [Hash] :headers Custom HTTP headers
23+
def pit_segments(arguments = {})
24+
raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]
25+
26+
arguments = arguments.clone
27+
headers = arguments.delete(:headers) || {}
28+
29+
30+
method = OpenSearch::API::HTTP_GET
31+
path = '_cat/pit_segments'
32+
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
33+
params[:h] = Utils.__listify(params[:h]) if params[:h]
34+
35+
body = arguments[:body]
36+
perform_request(method, path, params, body, headers).body
37+
end
38+
39+
ParamsRegistry.register(:pit_segments, [
40+
:format,
41+
:h,
42+
:help,
43+
:s,
44+
:v
45+
].freeze)
46+
end
47+
end
48+
end
49+
end

opensearch-api/lib/opensearch/api/actions/close_point_in_time.rb

-50
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
#
3+
# The OpenSearch Contributors require contributions made to
4+
# this file be licensed under the Apache-2.0 license or a
5+
# compatible open source license.
6+
#
7+
# Modifications Copyright OpenSearch Contributors. See
8+
# GitHub history for details.
9+
10+
module OpenSearch
11+
module API
12+
module Actions
13+
# Creates a point in time.
14+
#
15+
# @option arguments [String] :index The name(s) of the target index(es) for the PIT. May contain a comma-separated list or a wildcard index pattern. (required)
16+
# @option arguments [String] :keep_alive The amount of time to keep the PIT. (required)
17+
# @option arguments [String] :preference The node or the shard used to perform the search. (default: random)
18+
# @option arguments [String] :routing Specifies to route search requests to a specific shard.
19+
# @option arguments [String] :expand_wildcards The type of index that can match the wildcard pattern. Supports comma-separated values. (default: open)
20+
# @option arguments [String] :allow_partial_pit_creation Specifies whether to create a PIT with partial failures. (default: false)
21+
def create_pit(arguments = {})
22+
raise ArgumentError, "Required argument 'index' missing" unless arguments[:index]
23+
raise ArgumentError, "Required argument 'keep_alive' missing" unless arguments[:keep_alive]
24+
25+
arguments = arguments.clone
26+
_index = arguments.delete(:index)
27+
28+
method = OpenSearch::API::HTTP_POST
29+
path = "#{Utils.__listify(_index)}/_search/point_in_time"
30+
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
31+
body = nil
32+
33+
perform_request(method, path, params, body).body
34+
end
35+
36+
ParamsRegistry.register(:create_pit, [
37+
:keep_alive,
38+
:preference,
39+
:routing,
40+
:expand_wildcards,
41+
:allow_partial_pit_creation
42+
].freeze)
43+
end
44+
end
45+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
#
3+
# The OpenSearch Contributors require contributions made to
4+
# this file be licensed under the Apache-2.0 license or a
5+
# compatible open source license.
6+
#
7+
# Modifications Copyright OpenSearch Contributors. See
8+
# GitHub history for details.
9+
10+
module OpenSearch
11+
module API
12+
module Actions
13+
# Deletes all PITs.
14+
def delete_all_pits(arguments = {})
15+
method = OpenSearch::API::HTTP_DELETE
16+
path = "_search/point_in_time/_all"
17+
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
18+
body = nil
19+
20+
perform_request(method, path, params, body).body
21+
end
22+
23+
ParamsRegistry.register(:delete_all_pits, [].freeze)
24+
end
25+
end
26+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
#
3+
# The OpenSearch Contributors require contributions made to
4+
# this file be licensed under the Apache-2.0 license or a
5+
# compatible open source license.
6+
#
7+
# Modifications Copyright OpenSearch Contributors. See
8+
# GitHub history for details.
9+
10+
module OpenSearch
11+
module API
12+
module Actions
13+
# Deletes one or several PITs.
14+
#
15+
# @option arguments [Hash] body: Must include `pit_id`, which is an array of PIT IDs to be deleted. (required)
16+
def delete_pit(arguments = {})
17+
raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]
18+
19+
method = OpenSearch::API::HTTP_DELETE
20+
path = "_search/point_in_time"
21+
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
22+
body = arguments[:body]
23+
24+
perform_request(method, path, params, body).body
25+
end
26+
27+
ParamsRegistry.register(:delete_pit, [].freeze)
28+
end
29+
end
30+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
#
3+
# The OpenSearch Contributors require contributions made to
4+
# this file be licensed under the Apache-2.0 license or a
5+
# compatible open source license.
6+
#
7+
# Modifications Copyright OpenSearch Contributors. See
8+
# GitHub history for details.
9+
10+
module OpenSearch
11+
module API
12+
module Actions
13+
# Gets all PITs.
14+
def get_all_pits(arguments = {})
15+
method = OpenSearch::API::HTTP_GET
16+
path = "_search/point_in_time/_all"
17+
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
18+
body = nil
19+
20+
perform_request(method, path, params, body).body
21+
end
22+
23+
ParamsRegistry.register(:get_all_pits, [].freeze)
24+
end
25+
end
26+
end

0 commit comments

Comments
 (0)