Skip to main content

VOLTTRON historian agent that stores data in a PostgreSQL database. It extends the SQLHistorian class.

Project description

Eclipse VOLTTRON™ Python 3.10 Python 3.11 Run Pytests pypi version

VOLTTRON historian agent that stores data into a PostgreSQL database

Installation notes

  1. The PostgreSQL database driver supports recent PostgreSQL versions. It was tested on 10.x, but should work with 9.x and 11.x.
  2. The user must have SELECT, INSERT, and UPDATE privileges on historian tables.
  3. The tables in the database are created as part of the execution of the SQLHistorianAgent, but this will fail if the database user does not have CREATE privileges.
  4. Care must be exercised when using multiple historians with the same database. This configuration may be used only if there is no overlap in the topics handled by each instance. Otherwise, duplicate topic IDs may be created, producing strange results.

Configuration

PostgreSQL historian supports two configuration parameters

  • connection - This is a mandatory parameter with type indicating the type of sql historian (i.e. postgresql) and params containing the database access details
  • tables_def - Optional parameter to provide custom table names for topics, data, and metadata.

The configuration can be in a json or yaml formatted file. The following examples show minimal connection configurations for a psycopg2-based historian. Other options are available and are documented here Not all parameters have been tested, use at your own risk.

Local PostgreSQL Database

The following snippet demonstrates how to configure the historian to use a PostgreSQL database on the local system that is configured to use Unix domain sockets. The user executing volttron must have appropriate privileges.

Yaml Format:
    connection:
          # type should be postgresql
          type: postgresql
          params:
            # Relative to the agents data directory
            dbname: "volttron"
        
    tables_def:
        # prefix for data, topics, and (in version < 4.0.0 metadata tables)
        # default is ""
        table_prefix: ""
        # table name for time series data. default "data"
        data_table: data
        # table name for list of topics. default "topics"
        topics_table: topics
JSON format:
    {
        "connection": {
            "type": "postgresql", 
            "params": { "dbname": "volttron" }
        }
    }

Remote PostgreSQL Database

The following snippet demonstrates how to configure the historian to use a remote PostgreSQL database.

    {
        "connection": {
            "type": "postgresql", 
            "params": { 
                "dbname": "volttron", 
                "host": "historian.example.com", 
                "port": 5432, 
                "user": "volttron", 
                "password": "secret" }
        }
    }

TimescaleDB Support

Both of the above PostgreSQL connection types can make use of TimescaleDB's high performance Hypertable backend for the primary timeseries table. The agent assumes you have completed the TimescaleDB installation and setup the database by following the instructions here: https://docs.timescale.com/latest/getting-started/setup To use, simply add 'timescale_dialect: true' to the connection params in the agent config as below

    {
        "connection": {
            "type": "postgresql", 
            "params": { 
                "dbname": "volttron", 
                "host": "historian.example.com", 
                "port": 5432, 
                "user": "volttron", 
                "password": "secret" ,
                "timescale_dialect": true }
        }

    }

Requirements

  • Python >= 3.10
  • psycopg2 library

Installation

  1. Create and activate a virtual environment.

     python -m venv env
     source env/bin/activate
    
  2. Installing volttron-postgresql-historian requires a running volttron instance and the psycopg2 library

    pip install volttron
    pip install psycopg2-binary
    
    # Start platform with output going to volttron.log
    volttron -vv -l volttron.log &
    
  3. Setup database

    If this is not a development environment we highly recommend that you create the database and database tables using a user with appropriate permissions. This way the database user used by the historian need not have CREATE privileges Postgres historian expects two tables a. A topics tables that stores the list of unique topics and its metadata. The default name is "topics". If you use a different name please specify it as part of "tables_def" configuration parameter in agent config. See example configuration b. A data table that stores the timeseries data and refers to the topic table using a topic id. The default name is "data". If you use a different name please specify it as part of "tables_def" configuration parameter in agent config. See example configuration

    Below are the sql statements to create database and tables Create Database

       CREATE DATABASE volttron
    

    TOPICS tables:

        CREATE TABLE IF NOT EXISTS topics (
            topic_id SERIAL PRIMARY KEY NOT NULL, 
            topic_name VARCHAR(512) NOT NULL, 
            metadata TEXT, 
            UNIQUE (topic_name)
       )
    

    DATA table:

       CREATE TABLE IF NOT EXISTS data (
           ts TIMESTAMP NOT NULL, 
           topic_id INTEGER NOT NULL, 
           value_string TEXT NOT NULL, 
           UNIQUE (topic_id, ts)
       )
    

    Optional timescale hypertable

       SELECT create_hypertable(data, 'ts', if_not_exists => true)
    

    Create index to speed up data access If using hypertables:

        CREATE INDEX IF NOT EXISTS idx_data ON data (topic_id, ts)
    

    If not using hypertables:

        CREATE INDEX IF NOT EXISTS idx_data ON data (ts ASC)
    

    Provide correct user permissions for database user to be used by historian agent

        CREATE USER <some username> with encrypted password <some password>
        GRANT SELECT, INSERT, UPDATE on database <historian db name> to <username used above>
    

    NOTE For development environments, you can create a test database and test user, grant all privileges on that test database to the test user and let the historian create tables and indexes at startup. We do not recommend this for production environments

  4. Create an agent configuration file

    Create an agent configuration with appropriate connection parameters as described in the Configurations section

  5. Install and start the volttron-postgresql-historian.

    vctl install volttron-postgresql-historian --agent-config <path to configuration> --start
    
  6. View the status of the installed agent

    vctl status
    

Development

Please see the following for contributing guidelines contributing.

Please see the following helpful guide about developing modular VOLTTRON agents

Disclaimer Notice

This material was prepared as an account of work sponsored by an agency of the United States Government. Neither the United States Government nor the United States Department of Energy, nor Battelle, nor any of their employees, nor any jurisdiction or organization that has cooperated in the development of these materials, makes any warranty, express or implied, or assumes any legal liability or responsibility for the accuracy, completeness, or usefulness or any information, apparatus, product, software, or process disclosed, or represents that its use would not infringe privately owned rights.

Reference herein to any specific commercial product, process, or service by trade name, trademark, manufacturer, or otherwise does not necessarily constitute or imply its endorsement, recommendation, or favoring by the United States Government or any agency thereof, or Battelle Memorial Institute. The views and opinions of authors expressed herein do not necessarily state or reflect those of the United States Government or any agency thereof.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

volttron_postgresql_historian-2.0.0rc1.tar.gz (14.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file volttron_postgresql_historian-2.0.0rc1.tar.gz.

File metadata

File hashes

Hashes for volttron_postgresql_historian-2.0.0rc1.tar.gz
Algorithm Hash digest
SHA256 5df468977f3d21e53a7e06b0b3ca0be68d8324f59f0c1c708a99c4a1f8c78c5c
MD5 4e924b4f6f51a451a2f1f63857459828
BLAKE2b-256 8d99e8ea08b9b08ef5a111b3b79ae5a4165d48896a8062b69ea8377fcf3287ed

See more details on using hashes here.

File details

Details for the file volttron_postgresql_historian-2.0.0rc1-py3-none-any.whl.

File metadata

File hashes

Hashes for volttron_postgresql_historian-2.0.0rc1-py3-none-any.whl
Algorithm Hash digest
SHA256 5ebf8dd509b14f380c01abfc4458c4b1ed9b40fc0e18c2216c3db0cafa652d1b
MD5 07900df6364b7010f455835ea3664ddf
BLAKE2b-256 3ed51487f8be722dc008df99e31aaf32b751e20e2432cbb382131c89ddd2f07a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page