Skip to content

Scripts that periodically aggregate data related to KEGG search

Notifications You must be signed in to change notification settings

microbiomedata/nmdc-aggregator

Repository files navigation

Aggregation Scripts

These scripts generate the KEGG/COG/Pfam aggregations that are used for search.

A container hosted on Spin runs the agg.sh script, which performs the aggregations periodically (once every 4 hours, by default).

Note

The container image is hosted here.

Development

Here's how you can set up a local development environment:

Unless otherwise specified, all commands below are designed to be run from the root directory of the repository.

Note

These instructions do not cover the process of setting up a local MongoDB server or getting access to the NERSC filesystem.

  1. Create and activate a Python virtual environment
    python -m venv ./.venv
    source ./.venv/bin/activate
  2. Install Python dependencies
    pip install -r requirements.txt
  3. Done

Testing

We use pytest as our test framework.

Here's how you can run the tests:

Unless otherwise specified, all commands below are designed to be run from the root directory of the repository.

  1. Run the tests
    pytest
  2. See the test results in the console

Deployment

Here's how you can build a new version of the container image and push it to the GitHub Container Registry:

  1. On GitHub, create a new Release.
    1. Create a tag.
    2. Click the "Generate release notes" button.
    3. Leave the Release title empty (so GitHub reuses the tag name as the Release title).
    4. Click the "Publish release" button.
  2. Wait 3-4 minutes for the container image to appear on the GitHub Container Registry.

    Taking a long time? Check the "Actions" tab on GitHub to see the status of the GitHub Actions workflow that builds the image.

Now that the container image is hosted there, you can configure a Spin workload to run it.

Configuration

Environment variables

  • MONGO_URL: Full Mongo URI for connecting to the Mongo database (no default)
  • LOG_FILE: Path to file to which logs will be appended (Default: /tmp/agg.log)
  • POLL_TIME: Number of seconds to sleep between each run (Default: 14400, which is 4 hours)
  • NMDC_BASE_URL: Base URL to access the data (Default: https://data.microbiomedata.org/data)
  • NMDC_BASE_PATH: Base path to the data on disk (Default: /global/cfs/cdirs/m3408/results)

Release Notes

https://github.com/microbiomedata/nmdc-aggregator/releases