Files
openmct/src/plugins/persistence/couch/README.md
Scott Bell 482f1f68dd Have annotations work with domain objects that have dots (#7065)
* migrating to new structure - wip

* notebooks work, now to plots and images

* resolve conflicts

* fix search

* add to readme

* spelling

* fix unit test

* add search by view for big search speedup

* spelling

* fix out of order search

* improve reliability of plot tagging tests
2023-09-21 13:50:08 -07:00

7.4 KiB

Installing CouchDB

Introduction

These instructions are for setting up CouchDB for a development environment. For a production environment, we recommend running Open MCT behind a proxy server (e.g., Nginx or Apache), and securing the CouchDB server properly: https://docs.couchdb.org/en/main/intro/security.html

Docker Quickstart

The following process is the preferred way of using CouchDB as it is automatic and closely resembles a production environment.

Requirement: Get docker compose (or recent version of docker) installed on your machine. We recommend Docker Desktop

  1. Open a terminal to this current working directory (cd openmct/src/plugins/persistence/couch)
  2. Create and start the couchdb container:
docker compose -f ./couchdb-compose.yaml up --detach
  1. Copy .env.ci file to file named .env.local
  2. (Optional) Change the values of .env.local if desired
  3. Set the environment variables in bash by sourcing the env file
export $(cat .env.local | xargs)
  1. Execute the configuration script:
sh ./setup-couchdb.sh
  1. cd to the workspace root directory (the same directory as index.html)
  2. Update index.html to use the CouchDB plugin as persistence store:
sh ./src/plugins/persistence/couch/replace-localstorage-with-couchdb-indexhtml.sh
  1. Done!

Open MCT will now use your local CouchDB container as its persistence store. Access the CouchDB instance manager by visiting http://localhost:5984/_utils.

Removing CouchDB Container completely

To completely remove the CouchDB container and volumes:

docker stop couch-couchdb-1;docker rm couch-couchdb-1;docker volume rm couch_couchdb

macOS

While we highly recommend using the CouchDB docker-compose installation, it is still possible to install CouchDB through other means.

Installing CouchDB

  1. Install CouchDB using: brew install couchdb.
  2. Edit /usr/local/etc/local.ini and add the following settings:
[admins]
admin = youradminpassword

And set the server up for single node:

[couchdb]
single_node=true

Enable CORS

[chttpd]
enable_cors = true
[cors]
origins = http://localhost:8080

Installing CouchDB without admin privileges to your computer

If brew is not available on your mac machine, you'll need to get the CouchDB installed using the official sourcefiles.

  1. Install CouchDB following these instructions: https://docs.brew.sh/Installation#untar-anywhere.
  2. Edit local.ini in Homebrew's /etc/ directory as directed above in the 'Installing with admin privileges to your computer' section.

Other Operating Systems

Follow the installation instructions from the CouchDB installation guide: https://docs.couchdb.org/en/stable/install/index.html

Configuring CouchDB

Configuration script

The simplest way to config a CouchDB instance is to use our provided tooling:

  1. Copy .env.ci file to file named .env.local
  2. Set the environment variables in bash by sourcing the env file
export $(cat .env.local | xargs)
  1. Execute the configuration script:
sh ./setup-couchdb.sh

Manual Configuration

  1. Start CouchDB by running: couchdb.
  2. Add the _global_changes database using curl (note the youradminpassword should be changed to what you set above 👆): curl -X PUT http://admin:youradminpassword@127.0.0.1:5984/_global_changes
  3. Navigate to http://localhost:5984/_utils
  4. Create a database called openmct
  5. Navigate to http://127.0.0.1:5984/_utils/#/database/openmct/permissions
  6. Remove permission restrictions in CouchDB from Open MCT by deleting _admin roles for both Admin and Member.

Configuring Open MCT to use CouchDB

Configuration script

The simplest way to config a CouchDB instance is to use our provided tooling:

  1. cd to the workspace root directory (the same directory as index.html)
  2. Update index.html to use the CouchDB plugin as persistence store:
sh ./src/plugins/persistence/couch/replace-localstorage-with-couchdb-indexhtml.sh

Manual Configuration

  1. Edit openmct/index.html comment out the following line:
openmct.install(openmct.plugins.LocalStorage());

Add a line to install the CouchDB plugin for Open MCT:

openmct.install(openmct.plugins.CouchDB({url: "http://localhost:5984/openmct", useDesignDocuments: false}));

Validating a successful Installation

  1. Start Open MCT by running npm start in the openmct path.
  2. Navigate to http://localhost:8080/ and create a random object in Open MCT (e.g., a 'Clock') and save. You may get an error saying that the object failed to persist - this is a known error that you can ignore, and will only happen the first time you save - just try again.
  3. Navigate to: http://127.0.0.1:5984/_utils/#database/openmct/_all_docs
  4. Look at the 'JSON' tab and ensure you can see the specific object you created above.
  5. All done! 🏆

Search Performance

For large Open MCT installations, it may be helpful to add additional CouchDB capabilities to bear to improve performance.

Indexing

Indexing the model.type field in CouchDB can benefit the performance of queries significantly, particularly if there are a large number of documents in the database. An index can accelerate annotation searches by reducing the number of documents that the database needs to examine.

To create an index for model.type, you can use the following payload:

{
  "index": {
    "fields": ["model.type", "model.tags"]
  },
  "name": "type_tags_index",
  "type": "json"
}

This instructs CouchDB to create an index on the model.type field and the model.tags field. Once this index is created, queries that include a selector on model.type and model.tags (like when searching for tags) can use this index to retrieve results faster.

You can find more detailed information about indexing in CouchDB in the official documentation.

Design Documents

We can also add a design document for retrieving domain objects for specific tags:

{
  "_id": "_design/annotation_tags_index",
  "views": {
    "by_tags": {
      "map": "function (doc) { if (doc.model && doc.model.type === 'annotation' && doc.model.tags) { doc.model.tags.forEach(function (tag) { emit(tag, doc._id); }); } }"
    }
  }
}

and can be retrieved by issuing a GET to http://localhost:5984/openmct/_design/annotation_tags_index/_view/by_tags?keys=["TAG_ID_TO_SEARCH_FOR"]&include_docs=true where TAG_ID_TO_SEARCH_FOR is the tag UUID we're looking for.

and for targets:

{
  "_id": "_design/annotation_keystring_index",
  "views": {
    "by_keystring": {
      "map": "function (doc) { if (doc.model && doc.model.type === 'annotation' && doc.model.targets) { doc.model.targets.forEach(function(target) { if(target.keyString) { emit(target.keyString, doc._id); } }); } }"
    }
  }
}

and can be retrieved by issuing a GET to http://localhost:5984/openmct/_design/annotation_keystring_index/_view/by_keystring?keys=["KEY_STRING_TO_SEARCH_FOR"]&include_docs=true where KEY_STRING_TO_SEARCH_FOR is the UUID we're looking for.

To enable them in Open MCT, we need to configure the plugin useDesignDocuments like so:

openmct.install(openmct.plugins.CouchDB({url: "http://localhost:5984/openmct", useDesignDocuments: true}));