elastic-transport 8.0.0.pre1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. checksums.yaml +7 -0
  2. data/.github/check_license_headers.rb +33 -0
  3. data/.github/license-header.txt +16 -0
  4. data/.github/workflows/license.yml +13 -0
  5. data/.github/workflows/tests.yml +45 -0
  6. data/.gitignore +19 -0
  7. data/CHANGELOG.md +224 -0
  8. data/Gemfile +38 -0
  9. data/LICENSE +202 -0
  10. data/README.md +552 -0
  11. data/Rakefile +87 -0
  12. data/elastic-transport.gemspec +74 -0
  13. data/lib/elastic/transport/client.rb +276 -0
  14. data/lib/elastic/transport/meta_header.rb +135 -0
  15. data/lib/elastic/transport/redacted.rb +73 -0
  16. data/lib/elastic/transport/transport/base.rb +450 -0
  17. data/lib/elastic/transport/transport/connections/collection.rb +126 -0
  18. data/lib/elastic/transport/transport/connections/connection.rb +160 -0
  19. data/lib/elastic/transport/transport/connections/selector.rb +91 -0
  20. data/lib/elastic/transport/transport/errors.rb +91 -0
  21. data/lib/elastic/transport/transport/http/curb.rb +120 -0
  22. data/lib/elastic/transport/transport/http/faraday.rb +95 -0
  23. data/lib/elastic/transport/transport/http/manticore.rb +179 -0
  24. data/lib/elastic/transport/transport/loggable.rb +83 -0
  25. data/lib/elastic/transport/transport/response.rb +36 -0
  26. data/lib/elastic/transport/transport/serializer/multi_json.rb +52 -0
  27. data/lib/elastic/transport/transport/sniffer.rb +101 -0
  28. data/lib/elastic/transport/version.rb +22 -0
  29. data/lib/elastic/transport.rb +37 -0
  30. data/lib/elastic-transport.rb +18 -0
  31. data/spec/elasticsearch/connections/collection_spec.rb +266 -0
  32. data/spec/elasticsearch/connections/selector_spec.rb +166 -0
  33. data/spec/elasticsearch/transport/base_spec.rb +264 -0
  34. data/spec/elasticsearch/transport/client_spec.rb +1651 -0
  35. data/spec/elasticsearch/transport/meta_header_spec.rb +274 -0
  36. data/spec/elasticsearch/transport/sniffer_spec.rb +275 -0
  37. data/spec/spec_helper.rb +90 -0
  38. data/test/integration/transport_test.rb +98 -0
  39. data/test/profile/client_benchmark_test.rb +132 -0
  40. data/test/test_helper.rb +83 -0
  41. data/test/unit/connection_test.rb +135 -0
  42. data/test/unit/response_test.rb +30 -0
  43. data/test/unit/serializer_test.rb +33 -0
  44. data/test/unit/transport_base_test.rb +664 -0
  45. data/test/unit/transport_curb_test.rb +135 -0
  46. data/test/unit/transport_faraday_test.rb +228 -0
  47. data/test/unit/transport_manticore_test.rb +251 -0
  48. metadata +412 -0
data/README.md ADDED
@@ -0,0 +1,552 @@
1
+ # Elastic Transport
2
+ [![Run tests](https://github.com/elastic/elastic-transport-ruby/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/elastic/elastic-transport-ruby/actions/workflows/tests.yml)
3
+
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
+
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
+ 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).
46
+ Just require the library (`require 'patron'`) in your code, and it will be automatically used.
47
+
48
+ Currently these libraries will be automatically detected and used:
49
+ - [Patron](https://github.com/toland/patron)
50
+ - [Typhoeus](https://github.com/typhoeus/typhoeus)
51
+ - [HTTPClient](https://rubygems.org/gems/httpclient)
52
+ - [Net::HTTP::Persistent](https://rubygems.org/gems/net-http-persistent)
53
+
54
+ **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.
55
+
56
+ For detailed information, see example configurations [below](#transport-implementations).
57
+
58
+ ## Example Usage
59
+
60
+ In the simplest form, connect to Elasticsearch running on <http://localhost:9200>
61
+ without any configuration:
62
+
63
+ ```ruby
64
+ require 'elastic/transport'
65
+
66
+ client = Elastic::Transport::Client.new
67
+ response = client.perform_request('GET', '_cluster/health')
68
+ # => #<Elastic::Transport::Transport::Response:0x007fc5d506ce38 @status=200, @body={ ... } >
69
+ ```
70
+
71
+ Full documentation is available at <http://rubydoc.info/gems/elastic-transport>.
72
+
73
+ ## Configuration
74
+
75
+ * [Setting Hosts](#setting-hosts)
76
+ * [Default port](#default-port)
77
+ * [Authentication](#authentication)
78
+ * [Logging](#logging)
79
+ * [Custom HTTP Headers](#custom-http-headers)
80
+ * [Setting Timeouts](#setting-timeouts)
81
+ * [Randomizing Hosts](#randomizing-hosts)
82
+ * [Retrying on Failures](#retrying-on-failures)
83
+ * [Reloading Hosts](#reloading-hosts)
84
+ * [Connection Selector](#connection-selector)
85
+ * [Transport Implementations](#transport-implementations)
86
+ * [Serializer implementations](#serializer-implementations)
87
+ * [Exception Handling](#exception-handling)
88
+ * [Development and Community](#development-and-community)
89
+
90
+ The client supports many configurations options for setting up and managing connections,
91
+ configuring logging, customizing the transport library, etc.
92
+
93
+ ### Setting Hosts
94
+
95
+ 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:
96
+
97
+ ```ruby
98
+ Elastic::Transport::Client.new(host: 'search.myserver.com')
99
+ ```
100
+
101
+ To connect to a host with specific port:
102
+
103
+ ```ruby
104
+ Elastic::Transport::Client.new(host: 'myhost:8080')
105
+ ```
106
+
107
+ To connect to multiple hosts:
108
+
109
+ ```ruby
110
+ Elastic::Transport::Client.new(hosts: ['myhost1', 'myhost2'])
111
+ ```
112
+
113
+ Instead of Strings, you can pass host information as an array of Hashes:
114
+
115
+ ```ruby
116
+ Elastic::Transport::Client.new(hosts: [{ host: 'myhost1', port: 8080 }, { host: 'myhost2', port: 8080 }])
117
+ ```
118
+
119
+ **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).
120
+
121
+ Common URL parts -- scheme, HTTP authentication credentials, URL prefixes, etc -- are handled automatically:
122
+ ```ruby
123
+ Elastic::Transport::Client.new(url: 'https://username:password@api.server.org:4430/search')
124
+ ```
125
+
126
+ You can pass multiple URLs separated by a comma:
127
+ ```ruby
128
+ Elastic::Transport::Client.new(urls: 'http://localhost:9200,http://localhost:9201')
129
+ ```
130
+
131
+ Another way to configure the URL(s) is to export the `ELASTICSEARCH_URL` variable.
132
+
133
+ The client will automatically round-robin across the hosts (unless you select or implement a different [connection selector](#connection-selector)).
134
+
135
+ ### Default port
136
+
137
+ 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.
138
+
139
+ ### Authentication
140
+
141
+ You can pass the authentication credentials, scheme and port in the host configuration hash:
142
+
143
+ ```ruby
144
+ Elastic::Transport::Client.new(
145
+ hosts: [
146
+ {
147
+ host: 'my-protected-host',
148
+ port: '443',
149
+ user: 'USERNAME',
150
+ password: 'PASSWORD',
151
+ scheme: 'https'
152
+ }
153
+ ]
154
+ )
155
+ ```
156
+ Or use the common URL format:
157
+
158
+ ```ruby
159
+ Elastic::Transport::Client.new(url: 'https://username:password@example.com:9200')
160
+ ```
161
+
162
+ To pass a custom certificate for SSL peer verification to Faraday-based clients, use the `transport_options` option:
163
+
164
+ ```ruby
165
+ Elastic::Transport::Client.new(
166
+ url: 'https://username:password@example.com:9200',
167
+ transport_options: { ssl: { ca_file: '/path/to/cacert.pem' } }
168
+ )
169
+ ```
170
+
171
+ ### Logging
172
+
173
+ 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:
174
+
175
+ ```ruby
176
+ Elastic::Transport::Client.new(log: true)
177
+ ```
178
+
179
+ 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):
180
+
181
+ ```ruby
182
+ logger = EcsLogging::Logger.new($stdout)
183
+ Elastic::Transport::Client.new(logger: logger)
184
+ ```
185
+
186
+ To trace requests and responses in the _Curl_ format, set the `trace` argument:
187
+
188
+ ```ruby
189
+ Elastic::Transport::Client.new(trace: true)
190
+ ```
191
+
192
+ You can customize the default logger or tracer:
193
+
194
+ ```ruby
195
+ client.transport.logger.formatter = proc { |s, d, p, m| "#{s}: #{m}\n" }
196
+ client.transport.logger.level = Logger::INFO
197
+ ```
198
+
199
+ Or, you can use a custom `::Logger` instance:
200
+
201
+ ```ruby
202
+ Elastic::Transport::Client.new(logger: Logger.new(STDERR))
203
+ ```
204
+
205
+ You can pass the client any conforming logger implementation:
206
+
207
+ ```ruby
208
+ require 'logging' # https://github.com/TwP/logging/
209
+
210
+ log = Logging.logger['elasticsearch']
211
+ log.add_appenders Logging.appenders.stdout
212
+ log.level = :info
213
+
214
+ client = Elastic::Transport::Client.new(logger: log)
215
+ ```
216
+
217
+ ### Custom HTTP Headers
218
+
219
+ You can set a custom HTTP header on the client's initializer:
220
+
221
+ ```ruby
222
+ client = Elastic::Transport::Client.new(
223
+ transport_options: {
224
+ headers:
225
+ {user_agent: "My App"}
226
+ }
227
+ )
228
+ ```
229
+
230
+ You can also pass in `headers` as a parameter to any of the API Endpoints to set custom headers for the request:
231
+
232
+ ```ruby
233
+ client.search(index: 'myindex', q: 'title:test', headers: { user_agent: "My App" })
234
+ ```
235
+
236
+ ### Setting Timeouts
237
+
238
+ For many operations in Elasticsearch, the default timeouts of HTTP libraries are too low.
239
+ To increase the timeout, you can use the `request_timeout` parameter:
240
+
241
+ ```ruby
242
+ Elastic::Transport::Client.new(request_timeout: 5 * 60)
243
+ ```
244
+
245
+ You can also use the `transport_options` argument documented below.
246
+
247
+ ### Randomizing Hosts
248
+
249
+ If you pass multiple hosts to the client, it rotates across them in a round-robin fashion, by default.
250
+ When the same client would be running in multiple processes (eg. in a Ruby web server such as Thin),
251
+ it might keep connecting to the same nodes "at once". To prevent this, you can randomize the hosts
252
+ collection on initialization and reloading:
253
+
254
+ ```ruby
255
+ Elastic::Transport::Client.new(hosts: ['localhost:9200', 'localhost:9201'], randomize_hosts: true)
256
+ ```
257
+
258
+ ### Retrying on Failures
259
+
260
+ When the client is initialized with multiple hosts, it makes sense to retry a failed request
261
+ on a different host:
262
+
263
+ ```ruby
264
+ Elastic::Transport::Client.new(hosts: ['localhost:9200', 'localhost:9201'], retry_on_failure: true)
265
+ ```
266
+
267
+ 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`:
268
+
269
+ ```ruby
270
+ Elastic::Transport::Client.new(hosts: ['localhost:9200', 'localhost:9201'], retry_on_failure: 5)
271
+ ```
272
+
273
+ You can also use `retry_on_status` to retry when specific status codes are returned:
274
+
275
+ ```ruby
276
+ Elastic::Transport::Client.new(hosts: ['localhost:9200', 'localhost:9201'], retry_on_status: [502, 503])
277
+ ```
278
+
279
+ These two parameters can also be used together:
280
+
281
+ ```ruby
282
+ Elastic::Transport::Client.new(hosts: ['localhost:9200', 'localhost:9201'], retry_on_status: [502, 503], retry_on_failure: 10)
283
+ ```
284
+
285
+ ### Reloading Hosts
286
+
287
+ 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.
288
+
289
+ 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:
290
+
291
+ ```ruby
292
+ Elastic::Transport::Client.new(hosts: ['localhost:9200', 'localhost:9201'], reload_connections: true)
293
+ ```
294
+
295
+ You can pass a specific number of requests after which the reloading should be performed:
296
+
297
+ ```ruby
298
+ Elastic::Transport::Client.new(hosts: ['localhost:9200', 'localhost:9201'], reload_connections: 1_000)
299
+ ```
300
+
301
+ To reload connections on failures, use:
302
+
303
+ ```ruby
304
+ Elastic::Transport::Client.new(hosts: ['localhost:9200', 'localhost:9201'], reload_on_failure: true)
305
+ ```
306
+
307
+ The reloading will timeout if not finished under 1 second by default. To change the setting:
308
+
309
+ ```ruby
310
+ Elastic::Transport::Client.new(hosts: ['localhost:9200', 'localhost:9201'], sniffer_timeout: 3)
311
+ ```
312
+
313
+ **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:
314
+
315
+ ```ruby
316
+ Elastic::Transport::Client.new(
317
+ host: 'localhost:9200',
318
+ http: { scheme: 'https', user: 'U', password: 'P' },
319
+ reload_connections: true,
320
+ reload_on_failure: true
321
+ )
322
+ ```
323
+
324
+ ### Connection Selector
325
+
326
+ By default, the client will rotate the connections in a round-robin fashion, using the {Elastic::Transport::Transport::Connections::Selector::RoundRobin} strategy.
327
+
328
+ 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:
329
+
330
+ ```ruby
331
+ class RackIdSelector
332
+ include Elastic::Transport::Transport::Connections::Selector::Base
333
+
334
+ def select(options={})
335
+ connections.select do |c|
336
+ # Try selecting the nodes with a `rack_id:x1` attribute first
337
+ c.host[:attributes] && c.host[:attributes][:rack_id] == 'x1'
338
+ end.sample || connections.to_a.sample
339
+ end
340
+ end
341
+
342
+ Elastic::Transport::Client.new hosts: ['x1.search.org', 'x2.search.org'], selector_class: RackIdSelector
343
+ ```
344
+
345
+ ### Transport Implementations
346
+
347
+ By default, the client will use the [_Faraday_](https://rubygems.org/gems/faraday) HTTP library as a transport implementation.
348
+
349
+ 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.
350
+
351
+ To use the [_Patron_](https://github.com/toland/patron) HTTP, for example, just require it:
352
+
353
+ ```ruby
354
+ require 'patron'
355
+ ```
356
+
357
+ Then, create a new client, and the _Patron_ gem will be used as the "driver":
358
+
359
+ ```ruby
360
+ client = Elastic::Transport::Client.new
361
+
362
+ client.transport.connections.first.connection.builder.adapter
363
+ # => Faraday::Adapter::Patron
364
+
365
+ 10.times do
366
+ client.nodes.stats(metric: 'http')['nodes'].values.each do |n|
367
+ puts "#{n['name']} : #{n['http']['total_opened']}"
368
+ end
369
+ end
370
+
371
+ # => Stiletoo : 24
372
+ # => Stiletoo : 24
373
+ # => Stiletoo : 24
374
+ # => ...
375
+ ```
376
+
377
+ To use a specific adapter for _Faraday_, pass it as the `adapter` argument:
378
+
379
+ ```ruby
380
+ client = Elastic::Transport::Client.new(adapter: :net_http_persistent)
381
+
382
+ client.transport.connections.first.connection.builder.handlers
383
+ # => [Faraday::Adapter::NetHttpPersistent]
384
+ ```
385
+
386
+ To pass options to the
387
+ [`Faraday::Connection`](https://github.com/lostisland/faraday/blob/master/lib/faraday/connection.rb)
388
+ constructor, use the `transport_options` key:
389
+
390
+ ```ruby
391
+ client = Elastic::Transport::Client.new(
392
+ transport_options: {
393
+ request: { open_timeout: 1 },
394
+ headers: { user_agent: 'MyApp' },
395
+ params: { :format => 'yaml' },
396
+ ssl: { verify: false }
397
+ }
398
+ )
399
+ ```
400
+
401
+ To configure the _Faraday_ instance directly, use a block:
402
+
403
+ ```ruby
404
+ require 'patron'
405
+
406
+ client = Elastic::Transport::Client.new(host: 'localhost', port: '9200') do |f|
407
+ f.response :logger
408
+ f.adapter :patron
409
+ end
410
+ ```
411
+
412
+ 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:
413
+
414
+ ```ruby
415
+ require 'patron'
416
+
417
+ transport_configuration = lambda do |f|
418
+ f.response :logger
419
+ f.adapter :patron
420
+ end
421
+
422
+ transport = Elastic::Transport::Transport::HTTP::Faraday.new(
423
+ hosts: [ { host: 'localhost', port: '9200' } ],
424
+ &transport_configuration
425
+ )
426
+
427
+ # Pass the transport to the client
428
+ #
429
+ client = Elastic::Transport::Client.new(transport: transport)
430
+ ```
431
+
432
+ Instead of passing the transport to the constructor, you can inject it at run time:
433
+
434
+ ```ruby
435
+ # Set up the transport
436
+ #
437
+ faraday_configuration = lambda do |f|
438
+ f.instance_variable_set :@ssl, { verify: false }
439
+ f.adapter :excon
440
+ end
441
+
442
+ faraday_client = Elastic::Transport::Transport::HTTP::Faraday.new(
443
+ hosts: [
444
+ {
445
+ host: 'my-protected-host',
446
+ port: '443',
447
+ user: 'USERNAME',
448
+ password: 'PASSWORD',
449
+ scheme: 'https'
450
+ }
451
+ ],
452
+ &faraday_configuration
453
+ )
454
+
455
+ # Create a default client
456
+ #
457
+ client = Elastic::Transport::Client.new
458
+
459
+ # Inject the transport to the client
460
+ #
461
+ client.transport = faraday_client
462
+ ```
463
+
464
+ You can also use a bundled [_Curb_](https://rubygems.org/gems/curb) based transport implementation:
465
+
466
+ ```ruby
467
+ require 'curb'
468
+ require 'elastic/transport/transport/http/curb'
469
+
470
+ client = Elastic::Transport::Client.new(transport_class: Elastic::Transport::Transport::HTTP::Curb)
471
+
472
+ client.transport.connections.first.connection
473
+ # => #<Curl::Easy http://localhost:9200/>
474
+ ```
475
+
476
+ It's possible to customize the _Curb_ instance by passing a block to the constructor as well (in this case, as an inline block):
477
+
478
+ ```ruby
479
+ transport = Elastic::Transport::Transport::HTTP::Curb.new(
480
+ hosts: [ { host: 'localhost', port: '9200' } ],
481
+ & lambda { |c| c.verbose = true }
482
+ )
483
+
484
+ client = Elastic::Transport::Client.new(transport: transport)
485
+ ```
486
+
487
+ 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.
488
+
489
+ ### Serializer Implementations
490
+
491
+ 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.
492
+
493
+ 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.
494
+
495
+ ### Exception Handling
496
+
497
+ 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,
498
+ making it possible to `rescue` specific exceptions with desired granularity.
499
+
500
+ The highest-level exception is `Elastic::Transport::Transport::Error` and will be raised for any generic client *or* server errors.
501
+
502
+ `Elastic::Transport::Transport::ServerError` will be raised for server errors only.
503
+
504
+ As an example for response-specific errors, a `404` response status will raise an `Elastic::Transport::Transport::Errors::NotFound` exception.
505
+
506
+ Finally, `Elastic::Transport::Transport::SnifferTimeoutError` will be raised when connection reloading ("sniffing") times out.
507
+
508
+ ## Development and Community
509
+
510
+ 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.
511
+
512
+ Bug fixes and features must be covered by unit tests.
513
+
514
+ Github's pull requests and issues are used to communicate, send bug reports and code contributions.
515
+
516
+ ## The Architecture
517
+
518
+ * `Elastic::Transport::Client` is composed of `Elastic::Transport::Transport`.
519
+ * `Elastic::Transport::Transport` is composed of `Elastic::Transport::Transport::Connections`, and an instance of logger, tracer, serializer and sniffer.
520
+ * 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.
521
+ * The `Elastic::Transport::Transport::Serializer::Base` implementations handles converting data for Elasticsearch (eg. to JSON). You can implement your own serializer.
522
+ * `Elastic::Transport::Transport::Sniffer` allows discovering nodes in the cluster and use them as connections.
523
+ * `Elastic::Transport::Transport::Connections::Collection` is composed of `Elastic::Transport::Transport::Connections::Connection` instances and a selector instance.
524
+ * `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.
525
+ * 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.
526
+
527
+ ## Development
528
+
529
+ A rake task is included to launch an Elasticsearch cluster with Docker. You need to install docker on your system and then run:
530
+ ```bash
531
+ $ rake docker:start[VERSION]
532
+ ```
533
+
534
+ E.g.:
535
+ ```bash
536
+ $ rake docker:start[8.0.0-alpha1]
537
+ ```
538
+
539
+ You can find the available version in [Docker @ Elastic](https://www.docker.elastic.co/r/elasticsearch).
540
+
541
+ To run tests, launch a testing cluster and use the Rake tasks:
542
+
543
+ ```bash
544
+ time rake test:unit
545
+ time rake test:integration
546
+ ```
547
+
548
+ Use `COVERAGE=true` before running a test task to check coverage with Simplecov.
549
+
550
+ ## License
551
+
552
+ This software is licensed under the [Apache 2 license](./LICENSE).