Book Image

Building web applications with Python and Neo4j

By : Sumit Gupta
Book Image

Building web applications with Python and Neo4j

By: Sumit Gupta

Overview of this book

Table of Contents (14 chapters)
Building Web Applications with Python and Neo4j
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Chapter 7. Deploying Neo4j in Production

Eventually every software needs to be deployed in production and that's where the real challenge is!

Deciding upon the deployment strategy for any system requires a careful consideration of various factors, such as scalability (number of users now and in future), Service Level Agreements (SLAs), fault tolerance, monitoring, backup, recovery, and many more. All these factors are also known as Non-Functional Requirements (NFRs).

Though many of these factors can be incorporated in the deployment strategy but the architecture and design of software plays an important role in meeting the NFRs.

For example, you can increase hardware to support the growing number of users but there is a limit to how much computing resources (RAM and CPU) you can add to a single machine, and that's where you think about deploying multiple nodes and forming a cluster (http://en.wikipedia.org/wiki/Computer_cluster). But what if your software architecture does not support distributed...