OrientDB in Lazur

We would like to use OrientDB Graph in an Azure environment. Does anyone have any experience using it? We would also like to know if there is a high need for OrientDB under the Azure cloud? Azure already offers high availability for Azure, Azure Drive, and SQL storage. I understand that they are built into replication and load balancing.

This is very important because we prefer not to engage in the business of replication and infrastructure management.

thanks

+7
orientdb
source share
3 answers

Thus, you can deploy two or more machines and install OrientDB on them, and then configure them together as a distributed cluster. However, I could not find a way that is simpler, easier to do. I am also interested in this topic.

0
source share

Azure has features such as geo-replication that protects your data from a major data center incident, but does not provide any performance benefits or availability.

Although quite reliable, sometimes Microsoft reboots the servers for updates, so you can use affinity groups to protect against downtime so that you are always online on your two or more servers. However, this must be used in conjunction with database replication and ideal load balancing.

It is also worth noting that OrientDB recommends that the clusters have an odd number of servers, as this can prevent conflicts when synchronizing data after a communication problem between the servers.

0
source share

I use it in amazon and I had to create a java project to track attachments and requests for HTTP requests. The queries are very fast, but require a longer data insertion.

I recommend this type of graph database mode to reduce query time. Also, if you have empty fields, OrientDB is well managed compared to other databases.

If you need help with a java project, please reply to this post and I will help you.

Hope this helps. Good luck.

0
source share

All Articles