Postgres connector for Erlang
Go to file
2024-09-18 09:08:10 +03:00
config TD-927: fix canal init 2024-08-17 12:52:37 +03:00
src TD-927: add connections log 2024-09-18 09:08:10 +03:00
.gitignore TD-929: add implementation 2024-07-02 17:10:02 +03:00
docker-compose.yml TD-927: fix canal init 2024-08-17 12:52:37 +03:00
LICENSE Initial commit 2024-07-02 16:20:10 +03:00
README.md Rewrite README (#1) 2024-08-07 17:00:53 +05:00
rebar.config TD-927: fix canal init 2024-08-17 12:52:37 +03:00
rebar.lock TD-929: add deps lock 2024-07-02 17:12:22 +03:00

epg_connector

Erlang/OTP Version License: MIT

epg_connector is a robust Erlang application that provides a connection pool for PostgreSQL databases with seamless Vault integration for secret management. It simplifies database connection handling and credential management in Erlang applications, making it easier to build scalable and secure database-driven systems.

Table of Contents

Features

  • 🚀 Efficient PostgreSQL connection pooling
  • 🔒 Seamless Vault integration for secure secret management
  • ⚙️ Highly configurable database and pool settings
  • 🔑 Automatic credential retrieval from Vault
  • 📊 Built-in error logging and handling
  • 🔌 Easy integration with existing Erlang/OTP applications

Prerequisites

Before you begin, ensure you have the following installed:

  • Erlang/OTP 21 or later
  • Rebar3 (build tool for Erlang)
  • PostgreSQL database
  • (Optional) HashiCorp Vault for secret management

Installation

Add epg_connector to your rebar.config dependencies:

{deps, [
    {epg_connector, {git, "https://github.com/your-repo/epg_connector.git", {tag, "1.0.0"}}}
]}.

Then run:

$ rebar3 get-deps
$ rebar3 compile

Configuration

Database Configuration

Configure your databases in your sys.config file:

{databases, #{
    default_db => #{
        host => "127.0.0.1",
        port => 5432,
        database => "db_name",
        username => "postgres",
        password => "postgres"
    },
    another_db => #{
        host => "db.example.com",
        port => 5432,
        database => "another_db",
        username => "user",
        password => "pass"
    }
}}

Pool Configuration

Set up your connection pools:

{pools, #{
    default_pool => #{
        database => default_db,
        size => 10
    },
    read_only_pool => #{
        database => another_db,
        size => 5
    }
}}

Vault Configuration

If using Vault for secret management, configure the following:

{vault_token_path, "/var/run/secrets/kubernetes.io/serviceaccount/token"},
{vault_role, "epg_connector"},
{vault_key_pg_creds, "epg_connector/pg_creds"}

Usage

  1. Ensure epg_connector is started with your application:

    {applications, [kernel, stdlib, epg_connector]}.
    
  2. Use the connection pool in your code:

    -module(my_db_module).
    -export([get_user/1]).
    
    get_user(UserId) ->
        epgsql_pool:with(default_pool, fun(C) ->
            {ok, _, [{Name, Email}]} = epgsql:equery(C, "SELECT name, email FROM users WHERE id = $1", [UserId]),
            {Name, Email}
        end).
    

Vault Integration

When Vault is configured, epg_connector automatically attempts to retrieve database credentials on startup. This process involves:

  1. Reading the Vault token from the specified path
  2. Authenticating with Vault using the configured role
  3. Fetching the database credentials from the specified Vault key
  4. Updating the database configuration with the retrieved credentials

Ensure your Vault is properly set up and the application has the necessary permissions to access the secrets.

Error Handling and Logging

epg_connector includes comprehensive error handling and logging:

  • Vault authentication failures are logged with detailed error messages
  • Credential retrieval issues are captured and reported
  • Database connection errors are logged for easy troubleshooting

Monitor your application logs for any configuration or connection issues. Example log message:

2024-07-24 19:15:30.123 [error] <0.123.0> can't auth vault client with error: {error, permission_denied}

Contributing

We welcome contributions to epg_connector! Here's how you can help:

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/AmazingFeature)
  3. Commit your changes (git commit -m 'Add some AmazingFeature')
  4. Push to the branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

Please read CONTRIBUTING.md for details on our code of conduct and the process for submitting pull requests.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgements


For more information or support, please open an issue or contact the maintainers.