django and neo4j
play

Django and Neo4j Domain modeling that kicks ass! twitter: @thobe / - PowerPoint PPT Presentation

Django and Neo4j Domain modeling that kicks ass! twitter: @thobe / #neo4j Tobias Ivarsson email: tobias@neotechnology.com web: http://www.neo4j.org/ Hacker @ Neo Technology web: http://www.thobe.org/ It all started with this guy. Emil


  1. Django and Neo4j Domain modeling that kicks ass! twitter: @thobe / #neo4j Tobias Ivarsson email: tobias@neotechnology.com web: http://www.neo4j.org/ Hacker @ Neo Technology web: http://www.thobe.org/

  2. It all started with this guy. Emil Eifrem, CEO of Neo Technology. We picked him apart, and inside his brain we found the base for a database that models the connections in between entities. 2

  3. It all started with this guy. Emil Eifrem, CEO of Neo Technology. We picked him apart, and inside his brain we found the base for a database that models the connections in between entities. Image credits: US Army 2

  4. It all started with this guy. Emil Eifrem, CEO of Neo Technology. We picked him apart, and inside his brain we found the base for a database that models the connections in between entities. 2

  5. Neo4j It all started with this guy. Emil Eifrem, CEO of Neo Technology. We picked him apart, and inside his brain we found the base for a database that models the connections in between entities. 2

  6. NOSQL is a wide area 3

  7. The problems NOSQL focuses on Relational database Requirement of application Focus area of many ๏ Huge amounts of data NOSQL Databases Performance ๏ (mostly) Disjoint data Salary List ๏ Heavy load most focus on... ๏ Many concurrent writers Majority of Webapps Social network Semantic Trading } All NOSQL databases focus While this handles the custom on solving problems where load, it lacks in “ social” RDBMSes fail. Data complexity 4

  8. The evolution of data Giant Global Graph (GGG) Ontologies RDF Folksonomies Information connectivity Tagging User-generated Wikis content Blogs ... but it turns out that RSS data evolves to become MORE interconnected (as well as greater sizes) Hypertext Text documents web 1.0 web 2.0 “web 3.0” 1990 2000 2010 2020 5

  9. Neo4j is a Graph Database Graph databases FOCUS on the interconnection between entities. 6

  10. IS_A Neo4j Graph Database Graph databases FOCUS on the interconnection between entities. 6

  11. Scaling to size vs. Scaling to complexity Size Key/Value stores Bigtable clones Document databases Graph databases Complexity 7

  12. Scaling to size vs. Scaling to complexity Size Key/Value stores Bigtable clones Document databases Graph databases Billions of nodes and relationships > 90% of use cases Complexity 7

  13. What is Neo4j? ๏ Neo4j is a Graph Database • Non-relational (“#nosql”), transactional (ACID), embedded • Data is stored as a Graph / Network ‣ Nodes and relationships with properties ‣ “Property Graph” or “edge-labeled multidigraph” • Schema free, bottom-up data model design ๏ Neo4j is Open Source / Free (as in speech) Software Prices are available at http:/ /neotechnology.com/ • AGPLv3 Contact us if you have questions and/or special license needs (e.g. if you • Commercial (“dual license”) license available want an evaluation license) ‣ First server is free (as in beer), next is inexpensive 8

  14. More about Neo4j ๏ Neo4j is stable • In 24/7 operation since 2003 ๏ Neo4j is in active development • Neo Technology received VC funding October 2009 ๏ Neo4j delivers high performance graph operations • traverses 1’000’000+ relationships / second on commodity hardware (1000~2500 traversals/ms) 9

  15. Building business applications with Neo4j ๏ Try it out! It’s all open source! • Build a prototype, find out your needs and how Neo4j matches • AGPL says all your users should have access to your code - at this stage this is your employees / co-workers 10

  16. Building business applications with Neo4j ๏ Try it out! It’s all open source! • Build a prototype, find out your needs and how Neo4j matches • AGPL says all your users should have access to your code - at this stage this is your employees / co-workers ๏ Put it in front of users! The license is free for the first server! • Contact Neo Technology sales to get a free single server license • You’ll (probably) not have massive load the first days 10

  17. Building business applications with Neo4j ๏ Try it out! It’s all open source! • Build a prototype, find out your needs and how Neo4j matches • AGPL says all your users should have access to your code - at this stage this is your employees / co-workers ๏ Put it in front of users! The license is free for the first server! • Contact Neo Technology sales to get a free single server license • You’ll (probably) not have massive load the first days ๏ As you grow, Neo4j grows with you! • As your needs and revenue increase you can by an advanced license (prices are resonable) 10

  18. Graphs are all around us A B C D ... 1 17 3.14 3 17.79333333333 2 42 10.11 14 30.33 3 316 6.66 1 2104.56 4 32 9.11 592 0.492432432432 5 2153.175765766 Even if this spreadsheet looks like it could be a fit for a RDBMS it isn’t: • RDBMSes have problems with ... extending indefinitely on both rows and columns • Formulas and data dependencies would quickly lead to heavy join operations 11

  19. Graphs are all around us A B C D ... 1 17 3.14 3 = A1 * B1 / C1 2 42 10.11 14 = A2 * B2 / C2 3 316 6.66 1 = A3 * B3 / C3 4 32 9.11 592 = A4 * B4 / C4 5 = SUM(D2:D5) With data dependencies ... the spread sheet turns out to be a graph. 12

  20. Graphs are all around us A B C D ... 1 17 3.14 3 = A1 * B1 / C1 2 42 10.11 14 = A2 * B2 / C2 3 316 6.66 1 = A3 * B3 / C3 4 32 9.11 592 = A4 * B4 / C4 5 = SUM(D2:D5) With data dependencies ... the spread sheet turns out to be a graph. 12

  21. Graphs are all around us If we add external data sources the problem becomes even more interesting... 17 3.14 3 = A1 * B1 / C1 42 10.11 14 = A2 * B2 / C2 316 6.66 1 = A3 * B3 / C3 32 9.11 592 = A4 * B4 / C4 = SUM(D2:D5) 13

  22. Graphs are all around us If we add external data sources the problem becomes even more interesting... 17 3.14 3 = A1 * B1 / C1 42 10.11 14 = A2 * B2 / C2 316 6.66 1 = A3 * B3 / C3 32 9.11 592 = A4 * B4 / C4 = SUM(D2:D5) 13

  23. The Neo4j Graph data model • Nodes • Relationships between Nodes • Relationships have Labels • Relationships are directed, but traversed at equal speed in both directions • The semantics of the direction is up to the application (LIVES WITH is reflexive, LOVES is not) • Nodes have key-value properties • Relationships have key-value properties 14

  24. The Neo4j Graph data model • Nodes • Relationships between Nodes • Relationships have Labels • Relationships are directed, but traversed at equal speed in both directions • The semantics of the direction is up to the application (LIVES WITH is reflexive, LOVES is not) • Nodes have key-value properties • Relationships have key-value properties 14

  25. The Neo4j Graph data model LIVES WITH LOVES OWNS DRIVES • Nodes • Relationships between Nodes • Relationships have Labels • Relationships are directed, but traversed at equal speed in both directions • The semantics of the direction is up to the application (LIVES WITH is reflexive, LOVES is not) • Nodes have key-value properties • Relationships have key-value properties 14

  26. The Neo4j Graph data model LOVES LIVES WITH LOVES OWNS DRIVES • Nodes • Relationships between Nodes • Relationships have Labels • Relationships are directed, but traversed at equal speed in both directions • The semantics of the direction is up to the application (LIVES WITH is reflexive, LOVES is not) • Nodes have key-value properties • Relationships have key-value properties 14

  27. The Neo4j Graph data model name: “Mary” LOVES age: 35 name: “James” age: 32 LIVES WITH twitter: “@spam” LOVES OWNS DRIVES • Nodes • Relationships between Nodes brand: “Volvo” • Relationships have Labels • Relationships are directed, but traversed at model: “V70” equal speed in both directions • The semantics of the direction is up to the application (LIVES WITH is reflexive, LOVES is not) • Nodes have key-value properties • Relationships have key-value properties 14

  28. The Neo4j Graph data model name: “Mary” LOVES age: 35 name: “James” age: 32 LIVES WITH twitter: “@spam” LOVES OWNS DRIVES item type: “car” • Nodes • Relationships between Nodes brand: “Volvo” • Relationships have Labels • Relationships are directed, but traversed at model: “V70” equal speed in both directions • The semantics of the direction is up to the application (LIVES WITH is reflexive, LOVES is not) • Nodes have key-value properties • Relationships have key-value properties 14

  29. Graphs are Whiteboard Friendly The domain I specify is the domain I implement. No mismatch, no ER -modeling. 15

  30. Graphs are Whiteboard Friendly The domain I specify is the domain I implement. odin No mismatch, no ER -modeling. thobe dude #17 #6 #14 Wardrobe Strength Joe project #32 Call site caching Hello world OSCON Best panncakes Optimizing Jython 15

  31. Graphs are Whiteboard Friendly odin dude #17 #6 username: “thobe” #14 Wardrobe Strength Joe project name: “Tobias Ivarsson” #32 twitter: “@thobe” password: “**********” Call site caching Hello world OSCON Best panncakes Optimizing Jython 16

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend