Skip to content

Commit 340069f

Browse files
committed
Remove left-over instances of 'es' or 'elasticsearch' word
Signed-off-by: Rushi Agrawal <[email protected]>
1 parent 497468f commit 340069f

File tree

14 files changed

+117
-105
lines changed

14 files changed

+117
-105
lines changed

AUTHORS

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
For a list of all our amazing authors please see the contributors page:
2-
https://github.com/elastic/elasticsearch-py/graphs/contributors
2+
https://github.com/opensearch-project/opensearch-py/graphs/contributors

opensearch/_async/client/__init__.py

+13-13
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
class AsyncOpenSearch(object):
4949
"""
5050
OpenSearch low-level client. Provides a straightforward mapping from
51-
Python to ES REST endpoints.
51+
Python to OpenSearch REST endpoints.
5252
5353
The instance has attributes ``cat``, ``cluster``, ``indices``, ``ingest``,
5454
``nodes``, ``snapshot`` and ``tasks`` that provide access to instances of
@@ -66,16 +66,16 @@ class AsyncOpenSearch(object):
6666
the ``connection_class`` parameter::
6767
6868
# create connection to localhost using the ThriftConnection
69-
es = OpenSearch(connection_class=ThriftConnection)
69+
client = OpenSearch(connection_class=ThriftConnection)
7070
7171
If you want to turn on :ref:`sniffing` you have several options (described
7272
in :class:`~opensearch.Transport`)::
7373
7474
# 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'],
7979
# sniff before doing anything
8080
sniff_on_start=True,
8181
# refresh nodes after a node fails to respond
@@ -89,16 +89,16 @@ class AsyncOpenSearch(object):
8989
9090
# connect to localhost directly and another node using SSL on port 443
9191
# and an url_prefix. Note that ``port`` needs to be an int.
92-
es = OpenSearch([
92+
client = OpenSearch([
9393
{'host': 'localhost'},
94-
{'host': 'othernode', 'port': 443, 'url_prefix': 'es', 'use_ssl': True},
94+
{'host': 'othernode', 'port': 443, 'url_prefix': 'opensearch', 'use_ssl': True},
9595
])
9696
9797
If using SSL, there are several parameters that control how we deal with
9898
certificates (see :class:`~opensearch.Urllib3HttpConnection` for
9999
detailed description of the options)::
100100
101-
es = OpenSearch(
101+
client = OpenSearch(
102102
['localhost:443', 'other_host:443'],
103103
# turn on SSL
104104
use_ssl=True,
@@ -112,7 +112,7 @@ class AsyncOpenSearch(object):
112112
optionally (see :class:`~opensearch.Urllib3HttpConnection` for
113113
detailed description of the options)::
114114
115-
es = OpenSearch(
115+
client = OpenSearch(
116116
['localhost:443', 'other_host:443'],
117117
# turn on SSL
118118
use_ssl=True,
@@ -126,7 +126,7 @@ class AsyncOpenSearch(object):
126126
(see :class:`~opensearch.Urllib3HttpConnection` for
127127
detailed description of the options)::
128128
129-
es = OpenSearch(
129+
client = OpenSearch(
130130
['localhost:443', 'other_host:443'],
131131
# turn on SSL
132132
use_ssl=True,
@@ -143,7 +143,7 @@ class AsyncOpenSearch(object):
143143
Alternatively you can use RFC-1738 formatted URLs, as long as they are not
144144
in conflict with other options::
145145
146-
es = OpenSearch(
146+
client = OpenSearch(
147147
[
148148
'http://user:secret@localhost:9200/',
149149
'https://user:secret@other_host:443/production'
@@ -166,7 +166,7 @@ def default(self, obj):
166166
return 'CustomSomethingRepresentation'
167167
return JSONSerializer.default(self, obj)
168168
169-
es = OpenSearch(serializer=SetEncoder())
169+
client = OpenSearch(serializer=SetEncoder())
170170
171171
"""
172172

opensearch/_async/helpers.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ async def async_streaming_bulk(
158158
159159
:arg client: instance of :class:`~opensearch.AsyncOpenSearch` to use
160160
:arg actions: iterable or async iterable containing the actions to be executed
161-
:arg chunk_size: number of docs in one chunk sent to es (default: 500)
161+
:arg chunk_size: number of docs in one chunk sent to client (default: 500)
162162
:arg max_chunk_bytes: the maximum size of the request in bytes (default: 100MB)
163163
:arg raise_on_error: raise ``BulkIndexError`` containing errors (as `.errors`)
164164
from the execution of the last chunk when some occur. By default we raise.
@@ -334,7 +334,7 @@ async def async_scan(
334334
Any additional keyword arguments will be passed to the initial
335335
:meth:`~opensearch.AsyncOpenSearch.search` call::
336336
337-
async_scan(es,
337+
async_scan(client,
338338
query={"query": {"match": {"title": "python"}}},
339339
index="orders-*",
340340
doc_type="books"
@@ -444,7 +444,7 @@ async def async_reindex(
444444
:arg query: body for the :meth:`~opensearch.AsyncOpenSearch.search` api
445445
:arg target_client: optional, is specified will be used for writing (thus
446446
enabling reindex between clusters)
447-
:arg chunk_size: number of docs in one chunk sent to es (default: 500)
447+
:arg chunk_size: number of docs in one chunk sent to client (default: 500)
448448
:arg scroll: Specify how long a consistent view of the index should be
449449
maintained for scrolled search
450450
:arg scan_kwargs: additional kwargs to be passed to

opensearch/_async/http_aiohttp.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -371,14 +371,14 @@ async def _create_aiohttp_session(self):
371371
auto_decompress=True,
372372
loop=self.loop,
373373
cookie_jar=aiohttp.DummyCookieJar(),
374-
response_class=ESClientResponse,
374+
response_class=OpenSearchClientResponse,
375375
connector=aiohttp.TCPConnector(
376376
limit=self._limit, use_dns_cache=True, ssl=self._ssl_context
377377
),
378378
)
379379

380380

381-
class ESClientResponse(aiohttp.ClientResponse):
381+
class OpenSearchClientResponse(aiohttp.ClientResponse):
382382
async def text(self, encoding=None, errors="strict"):
383383
if self._body is None:
384384
await self.read()

opensearch/client/__init__.py

+13-13
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
class OpenSearch(object):
4949
"""
5050
OpenSearch low-level client. Provides a straightforward mapping from
51-
Python to ES REST endpoints.
51+
Python to OpenSearch REST endpoints.
5252
5353
The instance has attributes ``cat``, ``cluster``, ``indices``, ``ingest``,
5454
``nodes``, ``snapshot`` and ``tasks`` that provide access to instances of
@@ -66,16 +66,16 @@ class OpenSearch(object):
6666
the ``connection_class`` parameter::
6767
6868
# create connection to localhost using the ThriftConnection
69-
es = OpenSearch(connection_class=ThriftConnection)
69+
client = OpenSearch(connection_class=ThriftConnection)
7070
7171
If you want to turn on :ref:`sniffing` you have several options (described
7272
in :class:`~opensearch.Transport`)::
7373
7474
# 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'],
7979
# sniff before doing anything
8080
sniff_on_start=True,
8181
# refresh nodes after a node fails to respond
@@ -89,16 +89,16 @@ class OpenSearch(object):
8989
9090
# connect to localhost directly and another node using SSL on port 443
9191
# and an url_prefix. Note that ``port`` needs to be an int.
92-
es = OpenSearch([
92+
client = OpenSearch([
9393
{'host': 'localhost'},
94-
{'host': 'othernode', 'port': 443, 'url_prefix': 'es', 'use_ssl': True},
94+
{'host': 'othernode', 'port': 443, 'url_prefix': 'opensearch', 'use_ssl': True},
9595
])
9696
9797
If using SSL, there are several parameters that control how we deal with
9898
certificates (see :class:`~opensearch.Urllib3HttpConnection` for
9999
detailed description of the options)::
100100
101-
es = OpenSearch(
101+
client = OpenSearch(
102102
['localhost:443', 'other_host:443'],
103103
# turn on SSL
104104
use_ssl=True,
@@ -112,7 +112,7 @@ class OpenSearch(object):
112112
optionally (see :class:`~opensearch.Urllib3HttpConnection` for
113113
detailed description of the options)::
114114
115-
es = OpenSearch(
115+
client = OpenSearch(
116116
['localhost:443', 'other_host:443'],
117117
# turn on SSL
118118
use_ssl=True,
@@ -126,7 +126,7 @@ class OpenSearch(object):
126126
(see :class:`~opensearch.Urllib3HttpConnection` for
127127
detailed description of the options)::
128128
129-
es = OpenSearch(
129+
client = OpenSearch(
130130
['localhost:443', 'other_host:443'],
131131
# turn on SSL
132132
use_ssl=True,
@@ -143,7 +143,7 @@ class OpenSearch(object):
143143
Alternatively you can use RFC-1738 formatted URLs, as long as they are not
144144
in conflict with other options::
145145
146-
es = OpenSearch(
146+
client = OpenSearch(
147147
[
148148
'http://user:secret@localhost:9200/',
149149
'https://user:secret@other_host:443/production'
@@ -166,7 +166,7 @@ def default(self, obj):
166166
return 'CustomSomethingRepresentation'
167167
return JSONSerializer.default(self, obj)
168168
169-
es = OpenSearch(serializer=SetEncoder())
169+
client = OpenSearch(serializer=SetEncoder())
170170
171171
"""
172172

opensearch/exceptions.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class SerializationError(OpenSearchException):
6262

6363
class TransportError(OpenSearchException):
6464
"""
65-
Exception raised when ES returns a non-OK (>=400) HTTP status code. Or when
65+
Exception raised when OpenSearch returns a non-OK (>=400) HTTP status code. Or when
6666
an actual connection error happens; in that case the ``status_code`` will
6767
be set to ``'N/A'``.
6868
"""
@@ -83,7 +83,7 @@ def error(self):
8383
@property
8484
def info(self):
8585
"""
86-
Dict of returned error info from ES, where available, underlying
86+
Dict of returned error info from OpenSearch, where available, underlying
8787
exception when not.
8888
"""
8989
return self.args[2]
@@ -115,7 +115,7 @@ def __str__(self):
115115

116116
class ConnectionError(TransportError):
117117
"""
118-
Error raised when there was an exception while talking to ES. Original
118+
Error raised when there was an exception while talking to OpenSearch. Original
119119
exception from the underlying :class:`~opensearch.Connection`
120120
implementation is available as ``.info``.
121121
"""

opensearch/helpers/actions.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ def streaming_bulk(
296296
297297
:arg client: instance of :class:`~opensearch.OpenSearch` to use
298298
:arg actions: iterable containing the actions to be executed
299-
:arg chunk_size: number of docs in one chunk sent to es (default: 500)
299+
:arg chunk_size: number of docs in one chunk sent to client (default: 500)
300300
:arg max_chunk_bytes: the maximum size of the request in bytes (default: 100MB)
301301
:arg raise_on_error: raise ``BulkIndexError`` containing errors (as `.errors`)
302302
from the execution of the last chunk when some occur. By default we raise.
@@ -439,7 +439,7 @@ def parallel_bulk(
439439
:arg client: instance of :class:`~opensearch.OpenSearch` to use
440440
:arg actions: iterator containing the actions
441441
:arg thread_count: size of the threadpool to use for the bulk requests
442-
:arg chunk_size: number of docs in one chunk sent to es (default: 500)
442+
:arg chunk_size: number of docs in one chunk sent to client (default: 500)
443443
:arg max_chunk_bytes: the maximum size of the request in bytes (default: 100MB)
444444
:arg raise_on_error: raise ``BulkIndexError`` containing errors (as `.errors`)
445445
from the execution of the last chunk when some occur. By default we raise.
@@ -536,7 +536,7 @@ def scan(
536536
Any additional keyword arguments will be passed to the initial
537537
:meth:`~opensearch.OpenSearch.search` call::
538538
539-
scan(es,
539+
scan(client,
540540
query={"query": {"match": {"title": "python"}}},
541541
index="orders-*",
542542
doc_type="books"
@@ -644,7 +644,7 @@ def reindex(
644644
:arg query: body for the :meth:`~opensearch.OpenSearch.search` api
645645
:arg target_client: optional, is specified will be used for writing (thus
646646
enabling reindex between clusters)
647-
:arg chunk_size: number of docs in one chunk sent to es (default: 500)
647+
:arg chunk_size: number of docs in one chunk sent to client (default: 500)
648648
:arg scroll: Specify how long a consistent view of the index should be
649649
maintained for scrolled search
650650
:arg scan_kwargs: additional kwargs to be passed to

opensearch/helpers/test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def setup_class(cls):
7878
cls.client = cls._get_client()
7979

8080
def teardown_method(self, _):
81-
# Hidden indices expanded in wildcards in ES 7.7
81+
# Hidden indices expanded in wildcards in OpenSearch 7.7
8282
expand_wildcards = ["open", "closed"]
8383
if self.opensearch_version() >= (7, 7):
8484
expand_wildcards.append("hidden")

test_opensearch/run_tests.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ def fetch_opensearch_repo():
6262
from test_opensearch.test_cases import SkipTest
6363
from test_opensearch.test_server import get_client
6464

65-
# find out the sha of the running es
65+
# find out the sha of the running client
6666
try:
67-
es = get_client()
68-
sha = es.info()["version"]["build_hash"]
67+
client = get_client()
68+
sha = client.info()["version"]["build_hash"]
6969
except (SkipTest, KeyError):
7070
print("No running opensearch >1.X server...")
7171
return

test_opensearch/test_client/__init__.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -121,13 +121,13 @@ class OtherOpenSearch(OpenSearch):
121121
self.assertEqual("<OtherOpenSearch([{}])>", repr(OtherOpenSearch()))
122122

123123
def test_repr_contains_hosts_passed_in(self):
124-
self.assertIn("es.org", repr(OpenSearch(["es.org:123"])))
124+
self.assertIn("opensearch.org", repr(OpenSearch(["opensearch.org:123"])))
125125

126126
def test_repr_truncates_host_to_5(self):
127-
hosts = [{"host": "es" + str(i)} for i in range(10)]
128-
es = OpenSearch(hosts)
129-
self.assertNotIn("es5", repr(es))
130-
self.assertIn("...", repr(es))
127+
hosts = [{"host": "opensearch" + str(i)} for i in range(10)]
128+
client = OpenSearch(hosts)
129+
self.assertNotIn("opensearch5", repr(client))
130+
self.assertIn("...", repr(client))
131131

132132
def test_index_uses_post_if_id_is_empty(self):
133133
self.client.index(index="my-index", id="", body={})

test_opensearch/test_types/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Type Hints
22

33
All of these scripts are used to test the type hinting
4-
distributed with the `elasticsearch` package.
4+
distributed with the `opensearch` package.
55
These scripts simulate normal usage of the client and are run
66
through `mypy --strict` as a part of continuous integration.

0 commit comments

Comments
 (0)