Using the gcloud Tool to Test Applications and Manage Indexes

You can use the Google Cloud CLI to test your application locally and to manage indexes for your production Firestore in Datastore mode instance. This page describes the typical workflow for these activities.

The gcloud CLI supports the following workflow:

  1. Create local support for a Datastore instance, including directory, required files, and project ID.
  2. Start up the Datastore emulator, which provides local emulation of the production Datastore environment.
  3. Generate index definitions from your application's queries to the emulator.
  4. Upload manually created or generated index definitions to your production database instance.
  5. Delete unused indexes from your production database instance.

The development workflow using the command-line tool

The following is the typical workflow using the gcloud CLI:

  1. Start the Datastore emulator.

  2. Set environment variables so your application knows it is using the emulator.

  3. Start your application and test it against the emulator. You need to run the queries your application uses against the emulator in order to generate indexes for your production database instance.

  4. Upload the generated indexes with the indexes create command, passing in the path to your local index.yaml file, as in the following example:

    gcloud datastore indexes create ~/.config/gcloud/emulators/datastore/WEB-INF/index.yaml
    

    The example path assumes you have not set a specific directory for the data-dir option. If you have set a specific directory, modify the path to use the path to your index.yaml file.

  5. Remove environment variables so your application knows it is using the production database instance.

  6. Run your application against your production database instance.

  7. Over time, you might no longer use some of the indexes. You can delete unused indexes from your production database instance by removing them from your local index.yaml file and then invoking the indexes cleanup command:

    gcloud datastore indexes cleanup ~/.config/gcloud/emulators/datastore/WEB-INF/index.yaml
    

    If you have set a specific directory for the data-dir option, modify the path in the example to use the path to your index.yaml file.

What's next