48
48
class AsyncOpenSearch (object ):
49
49
"""
50
50
OpenSearch low-level client. Provides a straightforward mapping from
51
- Python to ES REST endpoints.
51
+ Python to OpenSearch REST endpoints.
52
52
53
53
The instance has attributes ``cat``, ``cluster``, ``indices``, ``ingest``,
54
54
``nodes``, ``snapshot`` and ``tasks`` that provide access to instances of
@@ -66,16 +66,16 @@ class AsyncOpenSearch(object):
66
66
the ``connection_class`` parameter::
67
67
68
68
# create connection to localhost using the ThriftConnection
69
- es = OpenSearch(connection_class=ThriftConnection)
69
+ client = OpenSearch(connection_class=ThriftConnection)
70
70
71
71
If you want to turn on :ref:`sniffing` you have several options (described
72
72
in :class:`~opensearch.Transport`)::
73
73
74
74
# create connection that will automatically inspect the cluster to get
75
- # the list of active nodes. Start with nodes running on 'esnode1' and
76
- # 'esnode2 '
77
- es = OpenSearch(
78
- ['esnode1 ', 'esnode2 '],
75
+ # the list of active nodes. Start with nodes running on
76
+ # 'opensearchnode1' and 'opensearchnode2 '
77
+ client = OpenSearch(
78
+ ['opensearchnode1 ', 'opensearchnode2 '],
79
79
# sniff before doing anything
80
80
sniff_on_start=True,
81
81
# refresh nodes after a node fails to respond
@@ -89,16 +89,16 @@ class AsyncOpenSearch(object):
89
89
90
90
# connect to localhost directly and another node using SSL on port 443
91
91
# and an url_prefix. Note that ``port`` needs to be an int.
92
- es = OpenSearch([
92
+ client = OpenSearch([
93
93
{'host': 'localhost'},
94
- {'host': 'othernode', 'port': 443, 'url_prefix': 'es ', 'use_ssl': True},
94
+ {'host': 'othernode', 'port': 443, 'url_prefix': 'opensearch ', 'use_ssl': True},
95
95
])
96
96
97
97
If using SSL, there are several parameters that control how we deal with
98
98
certificates (see :class:`~opensearch.Urllib3HttpConnection` for
99
99
detailed description of the options)::
100
100
101
- es = OpenSearch(
101
+ client = OpenSearch(
102
102
['localhost:443', 'other_host:443'],
103
103
# turn on SSL
104
104
use_ssl=True,
@@ -112,7 +112,7 @@ class AsyncOpenSearch(object):
112
112
optionally (see :class:`~opensearch.Urllib3HttpConnection` for
113
113
detailed description of the options)::
114
114
115
- es = OpenSearch(
115
+ client = OpenSearch(
116
116
['localhost:443', 'other_host:443'],
117
117
# turn on SSL
118
118
use_ssl=True,
@@ -126,7 +126,7 @@ class AsyncOpenSearch(object):
126
126
(see :class:`~opensearch.Urllib3HttpConnection` for
127
127
detailed description of the options)::
128
128
129
- es = OpenSearch(
129
+ client = OpenSearch(
130
130
['localhost:443', 'other_host:443'],
131
131
# turn on SSL
132
132
use_ssl=True,
@@ -143,7 +143,7 @@ class AsyncOpenSearch(object):
143
143
Alternatively you can use RFC-1738 formatted URLs, as long as they are not
144
144
in conflict with other options::
145
145
146
- es = OpenSearch(
146
+ client = OpenSearch(
147
147
[
148
148
'http://user:secret@localhost:9200/',
149
149
'https://user:secret@other_host:443/production'
@@ -166,7 +166,7 @@ def default(self, obj):
166
166
return 'CustomSomethingRepresentation'
167
167
return JSONSerializer.default(self, obj)
168
168
169
- es = OpenSearch(serializer=SetEncoder())
169
+ client = OpenSearch(serializer=SetEncoder())
170
170
171
171
"""
172
172
0 commit comments