Jump to content

What Elasticsearch version is supported well?


Recommended Posts

On 6/18/2022 at 1:13 AM, Sonya* said:

Just register and create your sandbox for free https://docs.bonsai.io/article/326-creating-a-new-account Use the data of the sandbox in AdminCP. It is a fully functional but very limited tier. Then upgrade to what tier you need.

So I actually spun this up with using the Elasticsearch vs Opensearch.  Gonna have to say it was dirt easy not to mention I can turn it on immediately.  I did my re-index and immediately needed to bump the plan up to the $20/month plan which seems to be enough for now.

Link to comment
Share on other sites

  • 4 weeks later...
On 6/14/2022 at 9:48 AM, DSystem said:

@HDiddy

Here is the guide I used to install opensearch 2.0 on centos 7

Install OpenSearch 2.0
java
sudo yum install java-11-openjdk-devel
java -version
 

OpenSearch -> https://opensearch.org/docs/2.0/opensearch/install/rpm/
sudo curl -SL https://artifacts.opensearch.org/releases/bundle/opensearch/2.x/opensearch-2.x.repo -o /etc/yum.repos.d/2.x.repo
sudo yum repolist
sudo yum clean all
sudo yum list | grep opensearch
sudo yum install opensearch
sudo systemctl start opensearch.service


First Test
systemctl status opensearch.service
curl -XGET https://localhost:9200 -u 'admin:admin' --insecure

Added when starting linux
sudo systemctl enable --now opensearch

Disabling security -> https://opensearch.org/docs/2.0/security-plugin/configuration/disable/

echo -e "\n# To disable security\nplugins.security.disabled: true" >> /etc/opensearch/opensearch.yml

systemctl restart opensearch.service

Second test
curl -XGET http://localhost:9200
{
  "name" : "srv.xxxxxxxx.com",
  "cluster_name" : "opensearch",
  "cluster_uuid" : "gNoLRKpERSOmQS9raXqUig",
  "version" : {
    "distribution" : "opensearch",
    "number" : "2.0.0",
    "build_type" : "rpm",
    "build_hash" : "bae3b4e4178c20ac24fece8e82099abe3b2630d0",
    "build_date" : "2022-05-19T00:25:28.444553037Z",
    "build_snapshot" : false,
    "lucene_version" : "9.1.0",
    "minimum_wire_compatibility_version" : "7.10.0",
    "minimum_index_compatibility_version" : "7.0.0"
  },
  "tagline" : "The OpenSearch Project: https://opensearch.org/"
}


optimization -> http://wiki.centos-webpanel.com/how-to-install-elasticsearch
sed -i -e 's|-Xms1g|-Xms2g|g' /etc/opensearch/jvm.options
sed -i -e 's|-Xmx1g|-Xmx2g|g' /etc/opensearch/jvm.options

 

Amazing.  Thank you.  So much easier than Elasticsearch.  

One problem though, for me...  OpenSearch has updated since this article.  Everything on the server is happy and working great, but IPS is not happy.

 OpenSearch version 2.1.0 is not supported.

Perhaps if I wait to make the change for awhile, it will be supported....

 

Link to comment
Share on other sites

  • 2 weeks later...
27 minutes ago, Chris027 said:

I'm setting up a new server and about to install either ElasticSearch or OpenSearch.

Is OpenSearch officially supported?

I believe this is what you are looking for here. 

On 5/3/2022 at 10:14 AM, Stuart Silvester said:

Yes, we tested Open Search (this community is using Open Search right now). As @13. notes, it currently uses the same API requests and returns the responses in the same format as Elastic Search.

I think in the future you may see Open Search become the preferred implementation (in general) due to the ES licensing changes.

 

Link to comment
Share on other sites

1 hour ago, Marc Stridgen said:

I believe this is what you are looking for here. 

 

Marc,

Any info regarding OpenSearch 2.1.0 ?  When I installed, it was the version available in the repository, but I get a "not supported" error currently.

Thanks

 

Link to comment
Share on other sites

  • 1 month later...
  • 1 month later...
On 11/13/2022 at 11:56 AM, Clover13 said:

@Sonya* and @HDiddy did you settle in on your OpenSearch installation/provider?  Wondering how the pricing worked out.  I noted Bonsai goes from $20/month then up to $700/month, that's quite a jump. 

I'm still using the $20/month plan on my hosted account.  The community I manage is not the largest thing in the world so it seems to do the trick.

Link to comment
Share on other sites

  • 2 weeks later...
2 hours ago, Afrodude said:

Elasticsearch has released version 8.5.2, and we haven't heard anything from IPS staff about it. 🙂 

I have just spoken internally to see what the plan is for this. Currently we support Elasticsearch and OpenSearch, however they forked somewhat after version 7. At present, the plan is to focus on OpenSearch. Note, this may well change of course, but thats the plan currently.

Link to comment
Share on other sites

11 hours ago, Marc Stridgen said:

I have just spoken internally to see what the plan is for this. Currently we support Elasticsearch and OpenSearch, however they forked somewhat after version 7. At present, the plan is to focus on OpenSearch. Note, this may well change of course, but thats the plan currently.

The recommendations is to use OpenSearch instead of Elasticsearch?

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...