elastic-transport 8.1.0 → 8.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 388aaaffda8babdfb8466e6aef816ed63bc520b56c7cb4f09964a23a1ab73854
4
- data.tar.gz: 2bdc179dba8822d690bc1a1b41b9766996f5a39cf8d8b8d7fa1bc03662cdcc97
3
+ metadata.gz: 97ae80fff7c8f2354bcb14259c86df214ffe8e95cd3027c7716a3e04b51e0e84
4
+ data.tar.gz: c8f303cbe8d6f12136ff6f19ac5975cc0ea9bbe9dc18c3602f72121b8b0bb99f
5
5
  SHA512:
6
- metadata.gz: 45f117b13be213d5b85a17b1df2ecbafcc14fa566f7beda6bd39be8e26b4e5611f80b1d1bd5f3e0f9e35c726721f70e05c479ae112f9e2da97d2d21ff3af676a
7
- data.tar.gz: 9b6d8a1fcc73da9676a309b11860640d6194bed392b1cdd91b4ef8b0ba407de11a8500f542efa588aa3f0a03c31dbef9e374f380c018fe297527ee486540a8b0
6
+ metadata.gz: 62af9d690c084cd40dae188cb5f959a7acd0d67fbf62a7b27abe0e57d3cb0b78644ea36dc04c5f2597f980de113850a0757860d81519759f2a8b965894c0e90c
7
+ data.tar.gz: 59c4cafc61dfb858639934876eb004037c2e31e86a61d3863ed65083fa1d5f0bc2bb15833123c2a5d7d6c7434e9ca74b8fd6721800822141d7ec3af98169a7c6
@@ -15,8 +15,8 @@ jobs:
15
15
  strategy:
16
16
  fail-fast: false
17
17
  matrix:
18
- ruby: [ '2.7', '3.0', '3.1', 'jruby-9.3' ]
19
- es_version: ['8.2-SNAPSHOT', '8.3-SNAPSHOT', '8.4-SNAPSHOT']
18
+ ruby: [ '2.7', '3.0', '3.1', '3.2', 'jruby-9.3', 'jruby-9.4' ]
19
+ es_version: ['8.4-SNAPSHOT', '8.5-SNAPSHOT', '8.6-SNAPSHOT']
20
20
  runs-on: ubuntu-latest
21
21
  steps:
22
22
  - uses: actions/checkout@v2
@@ -53,8 +53,8 @@ jobs:
53
53
  strategy:
54
54
  fail-fast: false
55
55
  matrix:
56
- ruby: [ '2.7', '3.0', '3.1', 'jruby-9.3' ]
57
- es_version: ['8.3.0-SNAPSHOT']
56
+ ruby: [ '2.7', '3.0', '3.1', '3.2', 'jruby-9.3' ]
57
+ es_version: ['8.6-SNAPSHOT']
58
58
  runs-on: ubuntu-latest
59
59
  steps:
60
60
  - uses: actions/checkout@v2
data/CHANGELOG.md CHANGED
@@ -1,10 +1,25 @@
1
+ ## 8.2.1
2
+
3
+ Tested versions of Ruby: (MRI) 2.7, 3.0, 3.1, 3.2, JRuby 9.3 and JRuby 9.4. Ruby 2.7's end of life is coming in a few days, so this'll probably be the last release to test for Ruby 2.7.
4
+
5
+ - Fixes parsing ipv4 addresses like `inet[/127.0.0.1:9200]` in sniffer, [issue #48](https://github.com/elastic/elastic-transport-ruby/issues/48). [Pull Request](https://github.com/elastic/elastic-transport-ruby/pull/49) by [@robbat2](https://github.com/robbat2), thank you!
6
+
7
+ ## 8.2.0
8
+
9
+ Tested versions of Ruby: (MRI) 2.7, 3.0, 3.1, 3.2, JRuby 9.3 and JRuby 9.4.
10
+
11
+ - Fixes [issue #44](https://github.com/elastic/elastic-transport-ruby/issues/44), raising `Elastic::Transport::Transport::Error` instead of `Faraday::ConnectionFailed` (or any other Faraday error class) when a host is unreachable.
12
+ - Removes development dependency on `ansi`, it hasn't been updated for years.
13
+ - Adds `rake console` task to run IRB with the Elastic transport client libraries loaded.
14
+ - General refactors, cleanup and updates in code for `base.rb` (The base class used by HTTP implementations Faraday, Manticore, Curb), `errors.rb`, `faraday.rb`, and more.
15
+
1
16
  ## 8.1.0
2
17
 
3
18
  Adds support for Faraday version 2. From [Faraday's Upgrading guide](https://github.com/lostisland/faraday/blob/main/UPGRADING.md#faraday-20), the main change is the adapters have moved:
4
19
 
5
20
  > With this release, we've officially moved all adapters, except for the net_http one, out of Faraday. What that means, is that they won't be available out-of-the-box anymore, and you'll instead need to add them to your Gemfile.
6
21
  > If you just use the default net_http adapter, then you don't need to do anything!
7
- > Otherwise, add the corresponding adapter gem to your Gemfile (e.g. faraday-net_http_persistent). Then, simply require them after you require faraday.
22
+ > Otherwise, add the corresponding adapter gem to your Gemfile (e.g. faraday-net_http_persistent). Then, simply require them after you require faraday.
8
23
 
9
24
  We're now supporting Faraday v2 and Faraday v1. The adapters were removed as development dependency in the gemspec and added to the Gemfile. A new file `Gemfile-faraday1.gemfile` was added to run tests with version `1.x` of Faraday too.
10
25
 
data/CONTRIBUTING.md ADDED
@@ -0,0 +1,58 @@
1
+ # Contributing to Elasticsearch Transport Ruby
2
+
3
+
4
+ This guide assumes Ruby is already installed. We follow Ruby’s own maintenance policy and officially support all currently maintained versions per [Ruby Maintenance Branches](https://www.ruby-lang.org/en/downloads/branches/). So we can't guarantee the code works for versions of Ruby that have reached their end of life.
5
+
6
+ To work on the code, clone the project first:
7
+
8
+ ```
9
+ $ git clone git@github.com:elastic/elastic-transport-ruby.git
10
+ ```
11
+
12
+ And run `bundle install` to install dependencies.
13
+
14
+ # Tests
15
+
16
+ There are several test tasks in the Rakefile, you can check them with `rake -T` from the project's root directory.
17
+
18
+ ```bash
19
+ rake test:unit
20
+ rake test:spec
21
+ rake test:integration
22
+ ```
23
+
24
+ Use `COVERAGE=true` before running a test task to check coverage with Simplecov.
25
+
26
+ Github's pull requests and issues are used to communicate, send bug reports and code contributions. Bug fixes and features must be covered by unit tests.
27
+
28
+ You need an Elasticsearch cluster running for integration tests. The tests will use the default host `localhost:9200`, but you can change this value by setting the environment variables `TEST_ES_SERVER` or `ELASTICSEARCH_HOSTS`:
29
+
30
+ ```
31
+ $ TEST_ES_SERVER=host:port rake test:integration
32
+ ```
33
+
34
+ A rake task is included to launch an Elasticsearch cluster with Docker. You need to install docker on your system and then run:
35
+ ```bash
36
+ $ rake docker:start[VERSION]
37
+ ```
38
+
39
+ E.g.:
40
+ ```bash
41
+ $ rake docker:start[8.0.0-alpha1]
42
+ ```
43
+
44
+ You can find the available version in [Docker @ Elastic](https://www.docker.elastic.co/r/elasticsearch).
45
+
46
+ # Contributing
47
+
48
+ The process for contributing is:
49
+
50
+ 1. It is best to do your work in a separate Git branch. This makes it easier to synchronise your changes with [`rebase`](http://mislav.uniqpath.com/2013/02/merge-vs-rebase/).
51
+
52
+ 2. Make sure your changes don't break any existing tests, and that you add tests for both bugfixes and new functionality.
53
+
54
+ 3. **Sign the contributor license agreement.**
55
+ Please make sure you have signed the [Contributor License Agreement](https://www.elastic.co/contributor-agreement/). We are not asking you to assign copyright to us, but to give us the right to distribute your code without restriction. We ask this of all contributors in order to assure our users of the origin and continuing existence of the code. You only need to sign the CLA once.
56
+
57
+ 4. Submit a pull request.
58
+ Push your local changes to your forked copy of the repository and submit a pull request. In the pull request, describe what your changes do and mention the number of the issue where discussion has taken place, eg “Closes #123″.
data/README.md CHANGED
@@ -3,63 +3,7 @@
3
3
 
4
4
  This gem provides a low-level Ruby client for connecting to an [Elastic](http://elastic.co) cluster. It powers both the [Elasticsearch client](https://github.com/elasticsearch/elasticsearch-ruby/) and the [Elastic Enterprise Search](https://github.com/elastic/enterprise-search-ruby/) client.
5
5
 
6
- ## Compatibility
7
-
8
- This gem is compatible with maintained Ruby versions. See [Ruby Maintenance Branches](https://www.ruby-lang.org/en/downloads/branches/). We don't provide support to versions which have reached their end of life.
9
-
10
- ## Installation
11
-
12
- Install the package from [Rubygems](https://rubygems.org):
13
-
14
- gem install elastic-transport
15
-
16
- To use an unreleased version, either add it to your `Gemfile` for [Bundler](http://gembundler.com):
17
-
18
- gem 'elastic-transport', git: 'git://github.com/elastic/elastic-transport-ruby.git'
19
-
20
- or install it from a source code checkout:
21
-
22
- ```bash
23
- git clone https://github.com/elastic/elastic-transport-ruby.git
24
- cd elastic-transport-ruby
25
- bundle install
26
- rake install
27
- ```
28
-
29
- ## Description
30
-
31
- It handles connecting to multiple nodes in the cluster, rotating across connections, logging and tracing requests and responses, maintaining failed connections, discovering nodes in the cluster, and provides an abstraction for
32
- data serialization and transport.
33
-
34
- It does not handle calling the Elasticsearch API; see the [`elasticsearch`](https://github.com/elasticsearch/elasticsearch-ruby) library for that.
35
-
36
- Features overview:
37
-
38
- * Pluggable logging and tracing
39
- * Pluggable connection selection strategies (round-robin, random, custom)
40
- * Pluggable transport implementation, customizable and extendable
41
- * Pluggable serializer implementation
42
- * Request retries and dead connections handling
43
- * Node reloading (based on cluster state) on errors or on demand
44
-
45
- This library uses [Faraday](https://github.com/lostisland/faraday) by default as the HTTP transport implementation. We test it it with Faraday versions 1.x and Faraday 2.x.
46
-
47
- For optimal performance, use a HTTP library which supports persistent ("keep-alive") connections, such as [patron](https://github.com/toland/patron) or [Typhoeus](https://github.com/typhoeus/typhoeus).
48
- Require the library (`require 'patron'`) in your code for Faraday 1.x or the adapter (`require 'faraday/patron'`) for Faraday 2.x, and it will be automatically used.
49
-
50
- Currently these libraries are supported:
51
- - [Patron](https://github.com/toland/patron)
52
- - [Typhoeus](https://github.com/typhoeus/typhoeus)
53
- - [HTTPClient](https://rubygems.org/gems/httpclient)
54
- - [Net::HTTP::Persistent](https://rubygems.org/gems/net-http-persistent)
55
-
56
- **Note on [Typhoeus](https://github.com/typhoeus/typhoeus)**: You need to use v1.4.0 or up since older versions are not compatible with Faraday 1.0.
57
-
58
- You can customize Faraday and implement your own HTTP transport. For detailed information, see the example configurations and more information [below](#transport-implementations).
59
-
60
- ## Example Usage
61
-
62
- In the simplest form, connect to Elasticsearch running on <http://localhost:9200> without any configuration:
6
+ In the simplest form, connect to Elasticsearch running on `http://localhost:9200` without any configuration:
63
7
 
64
8
  ```ruby
65
9
  require 'elastic/transport'
@@ -69,497 +13,17 @@ response = client.perform_request('GET', '_cluster/health')
69
13
  # => #<Elastic::Transport::Transport::Response:0x007fc5d506ce38 @status=200, @body={ ... } >
70
14
  ```
71
15
 
72
- Full documentation is available at <http://rubydoc.info/gems/elastic-transport>.
73
-
74
- ## Configuration
75
-
76
- * [Setting Hosts](#setting-hosts)
77
- * [Default port](#default-port)
78
- * [Authentication](#authentication)
79
- * [Logging](#logging)
80
- * [Custom HTTP Headers](#custom-http-headers)
81
- * [Setting Timeouts](#setting-timeouts)
82
- * [Randomizing Hosts](#randomizing-hosts)
83
- * [Retrying on Failures](#retrying-on-failures)
84
- * [Reloading Hosts](#reloading-hosts)
85
- * [Connection Selector](#connection-selector)
86
- * [Transport Implementations](#transport-implementations)
87
- * [Serializer implementations](#serializer-implementations)
88
- * [Exception Handling](#exception-handling)
89
- * [Development and Community](#development-and-community)
90
-
91
- The client supports many configurations options for setting up and managing connections,
92
- configuring logging, customizing the transport library, etc.
93
-
94
- ### Setting Hosts
95
-
96
- This behaviour is going to be simplified, see [#5](https://github.com/elastic/elastic-transport-ruby/issues/5). To connect to a specific Elasticsearch host:
97
-
98
- ```ruby
99
- Elastic::Transport::Client.new(host: 'search.myserver.com')
100
- ```
101
-
102
- To connect to a host with specific port:
103
-
104
- ```ruby
105
- Elastic::Transport::Client.new(host: 'myhost:8080')
106
- ```
107
-
108
- To connect to multiple hosts:
109
-
110
- ```ruby
111
- Elastic::Transport::Client.new(hosts: ['myhost1', 'myhost2'])
112
- ```
113
-
114
- Instead of Strings, you can pass host information as an array of Hashes:
115
-
116
- ```ruby
117
- Elastic::Transport::Client.new(hosts: [{ host: 'myhost1', port: 8080 }, { host: 'myhost2', port: 8080 }])
118
- ```
119
-
120
- **NOTE:** When specifying multiple hosts, you probably want to enable the `retry_on_failure` or `retry_on_status` options to perform a failed request on another node (see the _Retrying on Failures_ chapter).
121
-
122
- Common URL parts -- scheme, HTTP authentication credentials, URL prefixes, etc -- are handled automatically:
123
- ```ruby
124
- Elastic::Transport::Client.new(url: 'https://username:password@api.server.org:4430/search')
125
- ```
126
-
127
- You can pass multiple URLs separated by a comma:
128
- ```ruby
129
- Elastic::Transport::Client.new(urls: 'http://localhost:9200,http://localhost:9201')
130
- ```
131
-
132
- Another way to configure the URL(s) is to export the `ELASTICSEARCH_URL` variable.
133
-
134
- The client will automatically round-robin across the hosts (unless you select or implement a different [connection selector](#connection-selector)).
135
-
136
- ### Default port
137
-
138
- The default port is `9200`. Please specify a port for your host(s) if they differ from this default. Please see below for an exception to this when connecting using an Elastic Cloud ID.
139
-
140
- ### Authentication
141
-
142
- You can pass the authentication credentials, scheme and port in the host configuration hash:
143
-
144
- ```ruby
145
- Elastic::Transport::Client.new(
146
- hosts: [
147
- {
148
- host: 'my-protected-host',
149
- port: '443',
150
- user: 'USERNAME',
151
- password: 'PASSWORD',
152
- scheme: 'https'
153
- }
154
- ]
155
- )
156
- ```
157
- Or use the common URL format:
158
-
159
- ```ruby
160
- Elastic::Transport::Client.new(url: 'https://username:password@example.com:9200')
161
- ```
162
-
163
- To pass a custom certificate for SSL peer verification to Faraday-based clients, use the `transport_options` option:
164
-
165
- ```ruby
166
- Elastic::Transport::Client.new(
167
- url: 'https://username:password@example.com:9200',
168
- transport_options: { ssl: { ca_file: '/path/to/cacert.pem' } }
169
- )
170
- ```
171
-
172
- ### Logging
173
-
174
- To log requests and responses to standard output with the default logger (an instance of Ruby's {::Logger} class), set the `log` argument to true:
175
-
176
- ```ruby
177
- Elastic::Transport::Client.new(log: true)
178
- ```
179
-
180
- You can also use [ecs-logging](https://github.com/elastic/ecs-logging-ruby). `ecs-logging` is a set of libraries that allows you to transform your application logs to structured logs that comply with the [Elastic Common Schema (ECS)](https://www.elastic.co/guide/en/ecs/current/ecs-reference.html):
181
-
182
- ```ruby
183
- logger = EcsLogging::Logger.new($stdout)
184
- Elastic::Transport::Client.new(logger: logger)
185
- ```
186
-
187
- To trace requests and responses in the _Curl_ format, set the `trace` argument:
188
-
189
- ```ruby
190
- Elastic::Transport::Client.new(trace: true)
191
- ```
192
-
193
- You can customize the default logger or tracer:
194
-
195
- ```ruby
196
- client.transport.logger.formatter = proc { |s, d, p, m| "#{s}: #{m}\n" }
197
- client.transport.logger.level = Logger::INFO
198
- ```
199
-
200
- Or, you can use a custom `::Logger` instance:
201
-
202
- ```ruby
203
- Elastic::Transport::Client.new(logger: Logger.new(STDERR))
204
- ```
205
-
206
- You can pass the client any conforming logger implementation:
207
-
208
- ```ruby
209
- require 'logging' # https://github.com/TwP/logging/
210
-
211
- log = Logging.logger['elasticsearch']
212
- log.add_appenders Logging.appenders.stdout
213
- log.level = :info
214
-
215
- client = Elastic::Transport::Client.new(logger: log)
216
- ```
217
-
218
- ### Custom HTTP Headers
219
-
220
- You can set a custom HTTP header on the client's initializer:
221
-
222
- ```ruby
223
- client = Elastic::Transport::Client.new(
224
- transport_options: {
225
- headers:
226
- {user_agent: "My App"}
227
- }
228
- )
229
- ```
230
-
231
- You can also pass in `headers` as a parameter to any of the API Endpoints to set custom headers for the request:
232
-
233
- ```ruby
234
- client.search(index: 'myindex', q: 'title:test', headers: { user_agent: "My App" })
235
- ```
236
-
237
- ### Setting Timeouts
238
-
239
- For many operations in Elasticsearch, the default timeouts of HTTP libraries are too low.
240
- To increase the timeout, you can use the `request_timeout` parameter:
241
-
242
- ```ruby
243
- Elastic::Transport::Client.new(request_timeout: 5 * 60)
244
- ```
245
-
246
- You can also use the `transport_options` argument documented below.
247
-
248
- ### Randomizing Hosts
249
-
250
- If you pass multiple hosts to the client, it rotates across them in a round-robin fashion, by default.
251
- When the same client would be running in multiple processes (eg. in a Ruby web server such as Thin),
252
- it might keep connecting to the same nodes "at once". To prevent this, you can randomize the hosts
253
- collection on initialization and reloading:
254
-
255
- ```ruby
256
- Elastic::Transport::Client.new(hosts: ['localhost:9200', 'localhost:9201'], randomize_hosts: true)
257
- ```
258
-
259
- ### Retrying on Failures
260
-
261
- When the client is initialized with multiple hosts, it makes sense to retry a failed request
262
- on a different host:
263
-
264
- ```ruby
265
- Elastic::Transport::Client.new(hosts: ['localhost:9200', 'localhost:9201'], retry_on_failure: true)
266
- ```
267
-
268
- By default, the client will retry the request 3 times. You can specify how many times to retry before it raises an exception by passing a number to `retry_on_failure`:
269
-
270
- ```ruby
271
- Elastic::Transport::Client.new(hosts: ['localhost:9200', 'localhost:9201'], retry_on_failure: 5)
272
- ```
16
+ **Refer to [the official documentation on Elastic Transport](https://www.elastic.co/guide/en/elasticsearch/client/ruby-api/current/transport.html).**
273
17
 
274
- You can also use `retry_on_status` to retry when specific status codes are returned:
18
+ **Refer to [Advanced Configuration](https://elasticsearch-ruby_1881.docs-preview.app.elstc.co/guide/en/elasticsearch/client/ruby-api/master/advanced-config.html) to read about more configuration options.**
275
19
 
276
- ```ruby
277
- Elastic::Transport::Client.new(hosts: ['localhost:9200', 'localhost:9201'], retry_on_status: [502, 503])
278
- ```
279
-
280
- These two parameters can also be used together:
281
-
282
- ```ruby
283
- Elastic::Transport::Client.new(hosts: ['localhost:9200', 'localhost:9201'], retry_on_status: [502, 503], retry_on_failure: 10)
284
- ```
285
-
286
- ### Reloading Hosts
287
-
288
- Elasticsearch by default dynamically discovers new nodes in the cluster. You can leverage this in the client, and periodically check for new nodes to spread the load.
289
-
290
- To retrieve and use the information from the [_Nodes Info API_](http://www.elastic.co/guide/en/elasticsearch/reference/current/cluster-nodes-info.html) on every 10,000th request:
291
-
292
- ```ruby
293
- Elastic::Transport::Client.new(hosts: ['localhost:9200', 'localhost:9201'], reload_connections: true)
294
- ```
295
-
296
- You can pass a specific number of requests after which the reloading should be performed:
297
-
298
- ```ruby
299
- Elastic::Transport::Client.new(hosts: ['localhost:9200', 'localhost:9201'], reload_connections: 1_000)
300
- ```
301
-
302
- To reload connections on failures, use:
303
-
304
- ```ruby
305
- Elastic::Transport::Client.new(hosts: ['localhost:9200', 'localhost:9201'], reload_on_failure: true)
306
- ```
307
-
308
- The reloading will timeout if not finished under 1 second by default. To change the setting:
309
-
310
- ```ruby
311
- Elastic::Transport::Client.new(hosts: ['localhost:9200', 'localhost:9201'], sniffer_timeout: 3)
312
- ```
313
-
314
- **NOTE:** When using reloading hosts ("sniffing") together with authentication, just pass the scheme, user and password with the host info -- or, for more clarity, in the `http` options:
315
-
316
- ```ruby
317
- Elastic::Transport::Client.new(
318
- host: 'localhost:9200',
319
- http: { scheme: 'https', user: 'U', password: 'P' },
320
- reload_connections: true,
321
- reload_on_failure: true
322
- )
323
- ```
324
-
325
- ### Connection Selector
326
-
327
- By default, the client will rotate the connections in a round-robin fashion, using the {Elastic::Transport::Transport::Connections::Selector::RoundRobin} strategy.
328
-
329
- You can implement your own strategy to customize the behaviour. For example, let's have a "rack aware" strategy, which will prefer the nodes with a specific [attribute](https://github.com/elasticsearch/elasticsearch/blob/1.0/config/elasticsearch.yml#L81-L85). Only when these would be unavailable, the strategy will use the other nodes:
330
-
331
- ```ruby
332
- class RackIdSelector
333
- include Elastic::Transport::Transport::Connections::Selector::Base
334
-
335
- def select(options={})
336
- connections.select do |c|
337
- # Try selecting the nodes with a `rack_id:x1` attribute first
338
- c.host[:attributes] && c.host[:attributes][:rack_id] == 'x1'
339
- end.sample || connections.to_a.sample
340
- end
341
- end
342
-
343
- Elastic::Transport::Client.new hosts: ['x1.search.org', 'x2.search.org'], selector_class: RackIdSelector
344
- ```
345
-
346
- ### Transport Implementations
347
-
348
- By default, the client will use the [_Faraday_](https://rubygems.org/gems/faraday) HTTP library as a transport implementation.
349
-
350
- It will auto-detect and use an _adapter_ for _Faraday_ based on gems loaded in your code, preferring HTTP clients with support for persistent connections. Faraday 2 changed the way adapters are used ([read more here](https://github.com/lostisland/faraday/blob/main/UPGRADING.md#adapters-have-moved)). If you're using Faraday 1.x, you can require the HTTP library. To use the [_Patron_](https://github.com/toland/patron) HTTP, for example, require it:
351
-
352
- ```ruby
353
- require 'patron'
354
- ```
355
-
356
- If you're using Faraday 2.x, you need to add the corresponding adapter gem to your Gemfile and require them after you require `faraday`:
357
-
358
- ```ruby
359
- # Gemfile
360
- gem 'faraday-patron'
361
-
362
- # Code
363
- require 'faraday'
364
- require 'faraday/patron'
365
- ```
366
-
367
- Then, create a new client, and the _Patron_ gem will be used as the "driver":
368
-
369
- ```ruby
370
- client = Elastic::Transport::Client.new
371
-
372
- client.transport.connections.first.connection.builder.adapter
373
- # => Faraday::Adapter::Patron
374
-
375
- 10.times do
376
- client.nodes.stats(metric: 'http')['nodes'].values.each do |n|
377
- puts "#{n['name']} : #{n['http']['total_opened']}"
378
- end
379
- end
380
-
381
- # => Stiletoo : 24
382
- # => Stiletoo : 24
383
- # => Stiletoo : 24
384
- # => ...
385
- ```
386
-
387
- To use a specific adapter for _Faraday_, pass it as the `adapter` argument:
388
-
389
- ```ruby
390
- # Gemfile
391
- gem 'faraday-net_http_persistent'
392
-
393
- # Code
394
- client = Elastic::Transport::Client.new(adapter: :net_http_persistent)
395
-
396
- client.transport.connections.first.connection.builder.handlers
397
- # => [Faraday::Adapter::NetHttpPersistent]
398
- ```
399
-
400
- To pass options to the
401
- [`Faraday::Connection`](https://github.com/lostisland/faraday/blob/master/lib/faraday/connection.rb)
402
- constructor, use the `transport_options` key:
403
-
404
- ```ruby
405
- client = Elastic::Transport::Client.new(
406
- transport_options: {
407
- request: { open_timeout: 1 },
408
- headers: { user_agent: 'MyApp' },
409
- params: { :format => 'yaml' },
410
- ssl: { verify: false }
411
- }
412
- )
413
- ```
414
-
415
- To configure the _Faraday_ instance directly, use a block:
416
-
417
- ```ruby
418
- require 'patron'
419
-
420
- client = Elastic::Transport::Client.new(host: 'localhost', port: '9200') do |f|
421
- f.response :logger
422
- f.adapter :patron
423
- end
424
- ```
425
-
426
- You can use any standard Faraday middleware and plugins in the configuration block. You can also initialize the transport class yourself, and pass it to the client constructor as the `transport` argument:
427
-
428
- ```ruby
429
- require 'patron'
430
-
431
- transport_configuration = lambda do |f|
432
- f.response :logger
433
- f.adapter :patron
434
- end
435
-
436
- transport = Elastic::Transport::Transport::HTTP::Faraday.new(
437
- hosts: [ { host: 'localhost', port: '9200' } ],
438
- &transport_configuration
439
- )
440
-
441
- # Pass the transport to the client
442
- #
443
- client = Elastic::Transport::Client.new(transport: transport)
444
- ```
445
-
446
- Instead of passing the transport to the constructor, you can inject it at run time:
447
-
448
- ```ruby
449
- # Set up the transport
450
- #
451
- faraday_configuration = lambda do |f|
452
- f.instance_variable_set :@ssl, { verify: false }
453
- f.adapter :excon
454
- end
455
-
456
- faraday_client = Elastic::Transport::Transport::HTTP::Faraday.new(
457
- hosts: [
458
- {
459
- host: 'my-protected-host',
460
- port: '443',
461
- user: 'USERNAME',
462
- password: 'PASSWORD',
463
- scheme: 'https'
464
- }
465
- ],
466
- &faraday_configuration
467
- )
468
-
469
- # Create a default client
470
- #
471
- client = Elastic::Transport::Client.new
472
-
473
- # Inject the transport to the client
474
- #
475
- client.transport = faraday_client
476
- ```
477
-
478
- You can also use a bundled [_Curb_](https://rubygems.org/gems/curb) based transport implementation:
479
-
480
- ```ruby
481
- require 'curb'
482
- require 'elastic/transport/transport/http/curb'
483
-
484
- client = Elastic::Transport::Client.new(transport_class: Elastic::Transport::Transport::HTTP::Curb)
485
-
486
- client.transport.connections.first.connection
487
- # => #<Curl::Easy http://localhost:9200/>
488
- ```
489
-
490
- It's possible to customize the _Curb_ instance by passing a block to the constructor as well (in this case, as an inline block):
491
-
492
- ```ruby
493
- transport = Elastic::Transport::Transport::HTTP::Curb.new(
494
- hosts: [ { host: 'localhost', port: '9200' } ],
495
- & lambda { |c| c.verbose = true }
496
- )
497
-
498
- client = Elastic::Transport::Client.new(transport: transport)
499
- ```
500
-
501
- You can write your own transport implementation by including the `Elastic::Transport::Transport::Base` module, implementing the required contract, and passing it to the client as the `transport_class` parameter -- or injecting it directly.
502
-
503
- ### Serializer Implementations
504
-
505
- By default, the [MultiJSON](http://rubygems.org/gems/multi_json) library is used as the serializer implementation, and it will pick up the "right" adapter based on gems available.
506
-
507
- The serialization component is pluggable, though, so you can write your own by including the `Elastic::Transport::Transport::Serializer::Base` module, implementing the required contract, and passing it to the client as the `serializer_class` or `serializer` parameter.
508
-
509
- ### Exception Handling
510
-
511
- The library defines a [number of exception classes](https://github.com/elastic/elastic-transport-ruby/blob/main/lib/elastic/transport/transport/errors.rb) for various client and server errors, as well as unsuccessful HTTP responses,
512
- making it possible to `rescue` specific exceptions with desired granularity.
513
-
514
- The highest-level exception is `Elastic::Transport::Transport::Error` and will be raised for any generic client *or* server errors.
515
-
516
- `Elastic::Transport::Transport::ServerError` will be raised for server errors only.
517
-
518
- As an example for response-specific errors, a `404` response status will raise an `Elastic::Transport::Transport::Errors::NotFound` exception.
20
+ ## Compatibility
519
21
 
520
- Finally, `Elastic::Transport::Transport::SnifferTimeoutError` will be raised when connection reloading ("sniffing") times out.
22
+ This gem is compatible with maintained Ruby versions. See [Ruby Maintenance Branches](https://www.ruby-lang.org/en/downloads/branches/). We don't provide support to versions which have reached their end of life.
521
23
 
522
24
  ## Development and Community
523
25
 
524
- For local development, clone the repository and run `bundle install`. See `rake -T` for a list of available Rake tasks for running tests, generating documentation, starting a testing cluster, etc.
525
-
526
- Bug fixes and features must be covered by unit tests.
527
-
528
- Github's pull requests and issues are used to communicate, send bug reports and code contributions.
529
-
530
- ## The Architecture
531
-
532
- * `Elastic::Transport::Client` is composed of `Elastic::Transport::Transport`.
533
- * `Elastic::Transport::Transport` is composed of `Elastic::Transport::Transport::Connections`, and an instance of logger, tracer, serializer and sniffer.
534
- * Logger and tracer can be any object conforming to the Ruby logging interface, ie. an instance of [`Logger`](http://www.ruby-doc.org/stdlib-1.9.3/libdoc/logger/rdoc/Logger.html), [_log4r_](https://rubygems.org/gems/log4r), [_logging_](https://github.com/TwP/logging/), etc.
535
- * The `Elastic::Transport::Transport::Serializer::Base` implementations handles converting data for Elasticsearch (eg. to JSON). You can implement your own serializer.
536
- * `Elastic::Transport::Transport::Sniffer` allows discovering nodes in the cluster and use them as connections.
537
- * `Elastic::Transport::Transport::Connections::Collection` is composed of `Elastic::Transport::Transport::Connections::Connection` instances and a selector instance.
538
- * `Elastic::Transport::Transport::Connections::Connection` contains the connection attributes such as hostname and port, as well as the concrete persistent "session" connected to a specific node.
539
- * The `Elastic::Transport::Transport::Connections::Selector::Base` implementations allows you to choose connections from the pool, eg. in a round-robin or random fashion. You can implement your own selector strategy.
540
-
541
- ## Development
542
-
543
- A rake task is included to launch an Elasticsearch cluster with Docker. You need to install docker on your system and then run:
544
- ```bash
545
- $ rake docker:start[VERSION]
546
- ```
547
-
548
- E.g.:
549
- ```bash
550
- $ rake docker:start[8.0.0-alpha1]
551
- ```
552
-
553
- You can find the available version in [Docker @ Elastic](https://www.docker.elastic.co/r/elasticsearch).
554
-
555
- To run tests, launch a testing cluster and use the Rake tasks:
556
-
557
- ```bash
558
- time rake test:unit
559
- time rake test:integration
560
- ```
561
-
562
- Use `COVERAGE=true` before running a test task to check coverage with Simplecov.
26
+ See [CONTRIBUTING](./CONTRIBUTING.md).
563
27
 
564
28
  ## License
565
29