Awesome
3Factor Canonical App
This is a canonical app for 3factor which showcases the three factors in detail with a reference implementation. The reference implementation is a food ordering app which has a user facing component (order-app) and an admin dashboard (analytics-app).
You can follow along this step-by-step guide to deploy and evaluate this application design pattern yourself.
What is a 3Factor App?
From 3factor.app :
Today, it is possible to build backends for apps that allow for fast iteration, while being resilient and highly scalable from the get go.
We propose an architecture pattern which is composed of 3 factors:
Realtime GraphQL
Reliable eventing
Async serverless
Here is the high-level diagram comparing a traditional architecture vs a 3factor architecture:
Step-by-Step Guide
Stack
NodeJS 8.1
Postgres 9.5+
Hasura GraphQL Engine
AWS Lambda
Step 1: Model application
The core modeling of a 3factor app is very similar to traditional application modeling: we start by defining the schema and then define different functional components. The main difference is that 3factor emphasizes that each function be atomic (i.e. either happens completely or doesn't happen at all) and invoked via (persisted) events.
Schema
The schema of our application is defined in schema.sql which you can apply on your postgres database.
$ export POSTGRES_CONNECTION_STRING='postgres://postgres:password@localhost:5432/postgres'
$ psql $POSTGRES_CONNECTION_STRING < schema.sql
In the above snippet, we are running a postgres database on localhost.
Functions
Next, let's design the order workflow and describe its functional components. The order workflow consists of all the steps from a user placing an order to delivery agent assignment for the order.
Order workflow: Login -> Place order -> Validate order -> Payment -> Restaurant approval -> Agent assignment
Let's describe these steps in detail:
-
Login: A user enters the app using a username. For this demo, there is no authentication.
-
Place order: The user selects food items and places an order.
-
Validate order: As soon as an order is placed, it is validated in the backend.
-
Payment: After the order is validated, user is requested for payment.
-
Restaurant approval: After successful payment for the order, restaurant receives and approves the order.
-
Agent assignment: After restaurant approves, an agent is assigned for delivery of the order.
Next, let's get into development.
Step 2: Setup a realtime GraphQL interface
3factor requires the frontend use GraphQL for querying and performing actions. The reason for this is two-fold: fast iteration and realtime feedback.
We will use Hasura to get GraphQL APIs over our existing postgres database. We will use Docker to run Hasura. If you do not have Docker, you can install it from here.
If you have a remote postgres database, run the following command:
$ docker run -d -p 8080:8080 \
-e HASURA_GRAPHQL_DATABASE_URL=$POSTGRES_CONNECTION_STRING \
-e HASURA_GRAPHQL_ENABLE_CONSOLE=true \
hasura/graphql-engine:latest
If your postgres database is running on localhost, run the following command instead:
$ docker run -d --net=host \
-e HASURA_GRAPHQL_DATABASE_URL=$POSTGRES_CONNECTION_STRING \
-e HASURA_GRAPHQL_ENABLE_CONSOLE=true \
hasura/graphql-engine:latest
Open the Hasura console by visiting http://localhost:8080/console. In the Data
tab, you will see all the tables in our postgres database. Just track them all to get GraphQL APIs over them instantly:
Hasura will also detect relationships (via foreign-keys) automatically and you can track them as well to get GraphQL APIs over relationships:
Step 3: Local development
Now, we can write our frontend using GraphQL APIs. We can perform the following actions directly via the frontend using authenticated GraphQL APIs:
- Login
- Place order
Refer to src/order-app-frontend for the frontend source code. Run the frontend app as follows:
$ cd src/order-app-frontend
$ npm install
$ npm start
We need to setup a development environment for our backend. We need to write backend logic for the following steps:
-
Validate order: Source code: validate-order
-
Payment: Source code: payment
-
Restaurant approval: Source code: restaurant-approval
-
Agent assignment: Source code: agent-assignment
For this purpose, we will run a node server with each of the above functions exposed as HTTP APIs as defined in src/backend/localDevelopment.js. Run the server and try these functions out:
$ cd src/backend
$ npm install
$ node localDevelopment.js
Output: server running on port 8081
In a different terminal:
$ curl -d '{"order_id": "abc-ad21-adf"}' -H 'Content-Type: application/json' localhost:8081/validate-order
Step 4: Setup event system
Now that we have our frontend components and backend components ready, it is time to glue everything together via events. The event system is at the center of 3factor architecture. The event system is what drives the entire workflow: from the frontend initiating the events to the backend triggering functions on emitted events.
The order workflow is initiated by the user creating an event (via an insert to the order table) and ends with the backend creating an event for agent assignment (via an update to the order table).
In the frontend, we will subscribe to the events on order
table via realtime GraphQL and update the UI.
In the backend, we will use Hasura Event Triggers to invoke webhooks when events are emitted. The backend requires the following Event Triggers:
- validate-order: On
insert
of an order. - restaurant-approval: On
update
of an order after successful payment. - agent-assignment: On
update
of an order after restaurant approval.
Let's setup these triggers with our locally deployed functions: localDevelopment.js. We can do this either interactively via the Hasura console or through Hasura API. Run the following command to setup these event triggers via Hasura API:
$ curl -d @event-triggers.json -H 'Content-Type: application/json' localhost:8080/v1/query
Go back to the Hasura console at http://localhost:8080/console and in the Events
tab you will see the newly created Event Triggers:
This finishes the entire development cycle on our local machine. You can start testing the app now.
Step 5: Use serverless functions
Now, that you have locally developed and tested your app. Let's deploy all these functions to AWS Lambda and update the Event Triggers from localhost HTTP APIs to Lambda APIs.
Serverless functions are a crucial component of 3factor as it provides infinite scale, no-ops and optimal cost.
To prepare our HTTP APIs for Lambda, we need to wrap the business logic in a Lambda "context". The Lambda context for validate-order
is given in validate-order/lambdaCtx.js. Let's package this as a zip file and deploy to Lambda:
$ zip -r validate-order.zip validate-order/*
Do the same for the other Event Triggers.
There are many tutorials to deploy a NodeJS package on AWS Lambda with API Gateway for e.g. this. We will keep Lambda deployment out of the scope of this tutorial.
Assuming you have deployed your Lambda succesfully, you would have received an HTTP endpoint for it. Update your Event Triggers with the new endpoints through the Hasura console or Hasura API and that's it.
(Optional) Connection Pooling
The Lambda functions need database connections to execute their logic which cannot scale at the same rate as serverless invocations (as database connections are slow and costly). Hence, we need an external connection pooler to "loadbalance" the database connections.
With Postgres, we can add a standalone connection pooler like pgBouncer to accomplish this.
Follow the guide here to deploy pgBouncer in few clicks on a free EC2 instance using AWS Cloudformation. The output of the cloudformation template should give a new POSTGRES_CONNECTION_STRING
which you can update in your Lambda to start using pgBouncer.