Skip to content
This repository was archived by the owner on Jun 20, 2023. It is now read-only.

Commit 65139a5

Browse files
authored
Update README.md
1 parent 1eefdd8 commit 65139a5

File tree

1 file changed

+6
-24
lines changed

1 file changed

+6
-24
lines changed

README.md

Lines changed: 6 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,10 @@ Compatibility
2626
------------
2727
Jest Version | Elasticsearch Version
2828
--- | ---
29-
\>= 2.0.0 | 2.0
30-
0.1.0 - 1.0.0 | 1.0
31-
<= 0.0.6 | < 1.0
29+
\>= 5.0.0 | 5
30+
\>= 2.0.0 | 2
31+
0.1.0 - 1.0.0 | 1
32+
<= 0.0.6 | < 1
3233

3334
Also see [changelog][changelog] for detailed version history.
3435

@@ -38,27 +39,10 @@ Support and Contribution
3839
All questions, bug reports and feature requests are handled via the [GitHub issue tracker][issuetracker] which also acts as the knowledge base. Please see the [Contribution Guidelines][contributing] for more information.
3940

4041

41-
<a id="comparison"></a>Comparison to native API
42-
---------------------
43-
>There are several alternative clients available when working with ElasticSearch from Java, like Jest that provides a POJO marshalling mechanism on indexing and for the search results. In this example we are using the Client that is included in ElasticSearch. By default the client doesn't use the REST API but connects to the cluster as a normal node that just doesn't store any data. It knows about the state of the cluster and can route requests to the correct node but supposedly consumes more memory. For our application this doesn't make a huge difference but for production systems that's something to think about.
44-
><cite>-- [Florian Hopf](http://blog.florian-hopf.de/2013/05/getting-started-with-elasticsearch-part.html)</cite>
45-
46-
<!-- -->
47-
>So if you have several ES clusters running different versions, then using the native (or transport) client will be a problem, and you will need to go HTTP (and Jest is the main option I think). If versioning is not an issue, the native client will be your best option as it is cluster aware (thus knows how to route your queries and does not need another hop), and also moves some computation away from your ES cluster (like merging search results that will be done locally instead of on the data node).
48-
><cite>-- [Rotem Hermon](http://www.quora.com/ElasticSearch/What-is-the-best-client-library-for-elasticsearch)</cite>
49-
50-
<!-- -->
51-
>ElasticSearch does not have Java rest client. It has only native client comes built in. That is the gap. You can add security layer to HTTP but native API. That is why none of SAAS offerings can be used with native api.
52-
><cite>-- [Searchly](https://twitter.com/searchboxio)</cite>
53-
54-
5542
Thanks
5643
---------------------
57-
Thanks to [JetBrains][jetbrains] for providing a license for [IntelliJ IDEA][idea] to develop this project.
58-
59-
<a href="https://www.jetbrains.com/idea/features/"><img src="https://rawgit.com/searchbox-io/Jest/master/logo_IntelliJIDEA.svg" height="50px" /></a>
6044

61-
We also would like to thank the following people for their significant contributions.
45+
We would like to thank the following people for their significant contributions.
6246
* [Andrea Turli](https://github.com/andreaturli)
6347
* [Andrej Kazakov](https://github.com/andrejserafim)
6448
* [asierdelpozo](https://github.com/asierdelpozo)
@@ -87,7 +71,7 @@ We also would like to thank the following people for their significant contribut
8771
Copyright and License
8872
---------------------
8973

90-
Copyright 2013 www.searchly.com
74+
Copyright 2018 www.searchly.com
9175

9276
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in
9377
compliance with the License. You may obtain a copy of the License in the LICENSE file, or at:
@@ -107,5 +91,3 @@ See the License for the specific language governing permissions and limitations
10791
[changelog]: https://github.com/searchbox-io/Jest/wiki/Changelog
10892
[issuetracker]: https://github.com/searchbox-io/Jest/issues
10993
[contributing]: https://github.com/searchbox-io/Jest/blob/master/CONTRIBUTING.md
110-
[jetbrains]: http://www.jetbrains.com/
111-
[idea]: http://www.jetbrains.com/idea/

0 commit comments

Comments
 (0)