Wednesday, 7 February, 2018 UTC


Summary

Whether you're migrating from the deprecated Parse.com (api.parse.com) or building a new application, the Parse Server community is alive and strong, and since Parse Server version 2.1.11, there is support for MongoDB 3.2 which makes MongoDB Atlas an ideal back-end for Parse Server based applications.
Existing hosted Parse / api.parse.com users can migrate their back-end using Parse's Database Migration tool directly to MongoDB Atlas using a connection string like the following (with bold items replaced with your details):
mongodb://username:[email protected]:27017,node2.mongodb.net:27017,node3.mongodb.net:27017/applicationDbName?replicaSet=clusterName-shard-0&ssl=true&authSource=admin
We will learn in this blog post:
  • How to deploy a MongoDB Atlas cluster
  • How to deploy the Parse Server (in our case we will show how to do so using AWS Elastic Beanstalk quick start, but updated to use the newest version of Parse Server)
  • How to configure Parse Server to connect to MongoDB Atlas
  • How to confirm connectivity
How to set up a new sample Parse Server application with a MongoDB Atlas back end:
  1. Deploy MongoDB Atlas cluster
  2. Consider sizing options but start small for a hello world style application. You can always scale later (MongoDB Atlas allows you to migrate to larger instances with no downtime to your database).
  3. Register for MongoDB Atlas at mongodb.com/atlas
  4. Build and deploy your first cluster (we’ll use a small M10 instance-sized replica set for our example, and deploy it into the US East region)
  1. We’ll Create a user with at least readWrite on the applicationDbName database (or the user with readWriteAnyDatabase@admin which gets created automatically will do)
  1. For testing purposes, we will open IP address to all IP addresses initially (0.0.0.0/0): Later we should leave only open to our application servers’ public IP addresses.
  1. Choose where and how you want to deploy the Parse Server:
  2. Many options are described here, some of which provide easier set-ups than others. AWS Elastic Beanstalk and Heroku are easy options.
Setting Up AWS Beanstalk
For purposes of this blog post, we will go with AWS Elastic Beanstalk for the Parse Server quick start, by following the URL below (requires AWS account):
  1. Click for AWS Elastic Beanstalk for the Parse Server quick start deployment example.
  2. But we will make sure we install Parse Server 2.1.12 or higher, e.g. in parse-server-example, ensure that the package.json file includes "parse-server": "~2.2.16" (where 2.2.16 is the current latest at time of this writing).
  3. The Parse Server Example can be downloaded from github:
  1. If we extract the Zip file, we can edit the version in package.json
  1. We’ll set the Parse Server version to 2.2.16 (latest at time of writing)
  1. We’ll select the files in the directory and re-compress them into a new Zip file
  1. We’ll upload our new zip file so that it can be deployed
  1. Configure Parse Server to connect to MongoDB Atlas
  2. Inside the AWS Elastic Beanstalk UI
  1. We’ll navigate to the “Configuration” section on the left-hand menu
  2. Then we’ll navigate to the “Software Configuration” section by clicking the gear icon, and scroll down to the “Environment Properties” section
  1. In the environment properties, we’ll use any myAppId, myFileKey, mySecretMasterKey we want (since this is a new application, we set these).
  2. We’ll set the SERVER_URL to that which shows near the top of our AWS Elastic Beanstalk application UI to the right of “URL: ...“
  3. We’ll set the DATABASE_URI as follows (replacing the bold text with our specific cluster’s details)
  4. mongodb://username:[email protected]:27017,node2.mongodb.net:27017,node3.mongodb.net:27017/applicationDbName?replicaSet=clusterName-shard-0&ssl=true&authSource=admin
  5. We can see what the appropriate MongoDB URI should be inside of MongoDB Atlas’s “Connect” UI for the cluster, under the Driver connections section
  6. Test to confirm connectivity of our example application to Parse Server and the MongoDB Atlas backend:
$ curl -X POST \
> -H "X-Parse-Application-Id: newParseTest" \
> -H "Content-Type: application/json" \
> -d '{"score":1337,"playerName":"John Doe","cheatMode":false}' \
> http://parseserver-365pk-env.us-east-1.elasticbeanstalk.com/parse/classes/GameScore
Returns:
{
  "objectId": "YMgGV6kVTP",
  "createdAt": "2016-08-26T14:54:26.580Z"
}
$ curl -X GET \
> -H "X-Parse-Application-Id: newParseTest" \
> -H "X-Parse-Master-Key: MASTER_KEY" \
> http://parseserver-365pk-env.us-east-1.elasticbeanstalk.com/parse/classes/GameScore
Returns:
{
  "results": [
    {
      "objectId": "YMgGV6kVTP",
      "score": 1337,
      "playerName": "John Doe",
      "cheatMode": false,
      "createdAt": "2016-08-26T14:54:26.580Z",
      "updatedAt": "2016-08-26T14:54:26.580Z"
    }
  ]
}
Now you can use the SDK to build a new application pointing to your instance of Parse Server + MongoDB Atlas!
[Sign up for MongoDB Atlas and get started today!] (http://synd.co/2BQaRmZ)