DADI has rebranded to Edge. Find out more.

Migrating from DADI API 2.0 to 3.0

API 3.0 comes with various performance and flexibility enhancements, some of which introduce breaking changes.

API 3.0 comes with various performance and flexibility enhancements, some of which introduce breaking changes. This document is an overview of the changes that are required to make your application ready for the upgrade.

đź”—Configuring a database and data connector

Whilst API 2.0 requires a MongoDB database to run, version 3.0 is capable of working with virtually any database engine, as long as there is a data connector module for it.

When migrating from 2.0, we need to explicitly specify MongoDB as our database engine by adding @dadi/api-mongodb as a project dependency:

$ npm install @dadi/api-mongodb --save

API requires each data connector to have its own configuration file located in the same directory as API’s main configuration files. Just like API, you’ll need one for each environment you run the application in.

For example, if you currently have a config.development.json and config.production.json configuration files, you’ll need to place mongodb.development.json and mongodb.production.json in the same directory.

api-app/
  config/              # contains environment-specific configuration files
    config.development.json
    config.production.json
    mongodb.development.json
    mongodb.production.json
  package.json
  workspace/
    collections/       
    endpoints/         

đź”—Automatic migration script

We’ve added a migration script which can backup your existing API 2.0 configuration files and generate new API 3.0-compatible files automatically.

To use it, run the following command from your existing API directory:

$ curl https://raw.githubusercontent.com/dadi/registry/master/api/migration-scripts/v2-v3.js | node

đź”—Manual configuration

If you’re configuring this manually, follow these steps:

  1. Remove the contents of the database property from each of your API configuration files, and paste it into the corresponding MongoDB configuration file, so that it looks similar to the following:

     {
       "hosts": [
         {
           "host": "123.456.78.9",
           "port": 27017
         }
       ],
       "username": "",
       "password": "",
       "testdb": {
         "hosts": [
           {
             "host": "111.222.33.4",
             "port": 27017
           }
         ]
       }
     }
    
  2. Each block of database overrides should now be namespaced under a databases block. Using the above as our example, it should now be similar to the following. Notice how we’ve moved the "testdb" database configuration inside the new "databases" block:

```json
{
  "hosts": [
    {
      "host": "123.456.78.9",
      "port": 27017
    }
  ],
  "username": "",
  "password": "",
  "databases": {
    "testdb": {
      "hosts": [
        {
          "host": "111.222.33.4",
          "port": 27017
        }
      ]
    }
  }
}
```
  1. In the API configuration files, add a new property "datastore" where the "database" property was. It should have the value "@dadi/api-mongodb":
```json
{
  "server": {
    "host": "127.0.0.1",
    "port": 8000
  },
  "datastore": "@dadi/api-mongodb",
  "caching": {

  }
}
```
  1. Your API configuration files should have an "auth" containing a "database" block. Change this to simply the name of the database you want to use for authentication, and add a "datastore" property with the value "@dadi/api-mongodb".

    Before (config.development.json)

     {
       "auth": {
         "tokenUrl": "/token",
         "tokenTtl": 1800,
         "clientCollection": "clientStore",
         "tokenCollection": "tokenStore",
         "database": {
           "hosts": [
             {
               "host": "127.0.0.1",
               "port": 27017
             }
           ],
           "username": "",
           "password": "",
           "database": "dadiapiauth"
         }
       }
     }
    

    After (config.development.json)

     {
       "auth": {
         "tokenUrl": "/token",
         "tokenTtl": 1800,
         "clientCollection": "clientStore",
         "tokenCollection": "tokenStore",
         "datastore": "@dadi/api-mongodb",
         "database": "dadiapiauth"
       },
     }
    
  2. If your chosen authentication database (e.g. "dadiapiauth") has different hosts to the default you must ensure an entry exists for it in the "databases" block in mongodb.development.json:

    mongodb.development.json

     {
       "databases": {
         "dadiapiauth": {
           "hosts": [
             {
               "host": "222.333.44.5",
               "port": 27017
             }
           ]
         }
       }  
     }
    

🔗What’s next?

While the above configuration changes should be enough to get the application started, there are several more changes you should know about. They can be found in detail in the release notes for API Version 3.0.

Related articles

More tutorials articles
Mail icon

Like what you are reading? Want to earn tokens by becoming an Edge Node? Save money on your hosting services? Build amazing digital products on top of Edge services? Join our mailing list.

To hear about our news, events, products and services, subscribe now. You can also indicate which services you are interested in, which we use for research and to inform the content that we send.

* You can unsubscribe at any time by emailing us at data@edge.network or by clicking on the unsubscribe link which can be found in our emails to you. Read our Privacy Policy.
Winner Best Edge Computing Platform Technology & Innovation Awards
Presented by Juniper Research