• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Neo4j Performance, Scalability, Availability

 
Ranch Hand
Posts: 814
Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What are the advantages of Neo4j interms of Performance, Scalability and Availabilty.?
 
Author
Posts: 10
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hey Ninad,

This is one important and big question - and the one we have tried to answer in Neo4j in Action book.

However, in few pointers, the key things are:

- Neo4j allows for fast and efficient querying of highly connected data - it can traverse millions hops per second (hop is a jump from one node to another via relationship that connects them)
- In Neo4j, all data must live on a single machine/disk. This means that if you have cluster of Neo4j nodes, each will have full copy of the data. Neo4j core data structures (nodes and relationships) are very small though - (9 bytes for a node and 33 bytes for a relationship) - making it easy to fit hundreds of millions of nodes/relationships on a single node
- As for availability, Neo4j has a HA setup, with consist of master-slave Neo4j server cluster - this is commercial feature though and only available with licensed product.

Hope this helps, for more details, please read the book!

Aleksa
 
Whip out those weird instruments of science and probe away! I think it's a tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic