Migrating your Neo4j AuraDB Free instance to another AuraDB plan

AuraDB Professional or AuraDB Virtual Dedicated Cloud

Upgrading your plan to AuraDB Professional or AuraDB Virtual Dedicated Cloud gives you access to additional resources and functionalities to support production workloads and applications with demanding storage and processing needs.

Migration options

  • Upgrade to AuraDB Professional

  • Clone to new (Works for AuraDB Professional and AuraDS Professional)

  • Manual process

Upgrade to AuraDB Professional

You can upgrade an instance to the Professional plan directly from the console.

On the instance card, click the button that says Upgrade.

Verify that the cloud provider and region are correct and select the instance size you need, add the extra details and select Create.

Clone (Works for AuraDB Professional and AuraDS)

The other way is to clone your existing instance to the Professional plan.

  • Click the three dots (…​) on an instance card

  • Select either: Clone to new instance or create a new Clone to existing instance (the current content will be overwritten)

Manual process

In your existing instance:

  1. (Optional but recommended) Capture existing index and constraint definitions:

    1. Run the following Cypher statement:

      SHOW CONSTRAINTS YIELD createStatement

      Save result to a file, to use later in the process.

    2. Run the following Cypher statement:

      SHOW INDEXES YIELD createStatement

      Save result to a file, to use later in the process.

  2. (Optional but recommended) Drop the indexes and constraints.

    1. Run the following Cypher statement to generate the commands to drop existing constraints:

      SHOW CONSTRAINTS YIELD name
      RETURN 'DROP CONSTRAINT ' + name + ';'
    2. Execute the generated commands to drop existing constraints.

    3. Run the following Cypher statement to generate the commands to drop existing indexes:

      SHOW INDEX YIELD name
      RETURN 'DROP INDEX ' + name + ';'
    4. Execute the generated commands to drop existing indexes.

      For more information about indexes and constrains, see Cypher Manual → Indexes and Cypher Manual → Constraints.

  3. In the console of your existing instance (AuraDB Free), do the following:

    1. Download snapshot/Dump locally (the daily automatic snapshot)

    2. In the Aura Console select the AuraDB instance

    3. Go to the Snapshots tab

    4. Click the three dots, and select Export

    5. Save the dump file locally (preserve the .backup extension)

  4. Then create a new AuraDB instance in AuraDB Professional or AuraDB Virtual Dedicated Cloud with the right resource sizing. From your new instance, do the following:

    1. Go to the instance card

    2. Select Backup & Restore

    3. Upload your .backup file

  5. In the newly created AuraDB Professional or AuraDB Virtual Dedicated Cloud instance

    (Optional) Once the AuraDB instance is loaded and started, you can recreate the indexes and constraints, using the information captured earlier in the process.