Skip to content

GreenmaskIO/greenmask

Repository files navigation

Dump anonymization and synthetic data generation tool

Greenmask is a powerful open-source utility that is designed for logical database backup dumping, anonymization, synthetic data generation and restoration. It has ported PostgreSQL libraries, making it reliable. It is stateless and does not require any changes to your database schema. It is designed to be highly customizable and backward-compatible with existing PostgreSQL utilities, fast and reliable.

Discord Telegram X (formerly Twitter) Follow

Build status Documentation License GitHub Release GitHub Downloads (all assets, all releases) Docker pulls Go Report Card

schema.png

Getting started

Greenmask has a Playground - it is a sandbox environment in Docker with sample databases included to help you try Greenmask without any additional actions

  1. Clone the greenmask repository and navigate to its directory by running the following commands:

    git clone [email protected]:GreenmaskIO/greenmask.git && cd greenmask
  2. Once you have cloned the repository, start the environment by running Docker Compose:

    docker-compose run greenmask

Features

  • Deterministic transformers — Uses hash functions to ensure consistent output for the same input. Most transformers support both random and hash engines, offering flexibility for various use cases.
  • Dynamic parameters — most transformers support dynamic parameters, allowing them to adapt based on table column values. This feature helps manage dependencies between columns and meet constraints effectively.
  • Transformation Condition — applies the transformation only when a specified condition is met, making it useful for targeting specific rows.
  • Transformation validation and easy maintenance — Greenmask provides validation warnings, data transformation diffs, and schema diffs during configuration, enabling effective monitoring and maintenance of transformations. The schema diff feature helps prevent data leakage when the schema changes.
  • Transformation inheritance — transformation inheritance for partitioned tables and tables with foreign keys. Define once and apply to all.
  • Stateless — Greenmask operates as a logical dump and does not impact your existing database schema.
  • Cross-platform — Can be easily built and executed on any platform, thanks to its Go-based architecture, which eliminates platform dependencies.
  • Database type safe — Ensures data integrity by validating data and using the database driver for encoding and decoding operations, preserving accurate data formats.
  • Backward compatible — Fully supports the same features and protocols as standard PostgreSQL utilities. Dumps created by Greenmask can be seamlessly restored using the pg_restore utility.
  • Extensible — Users have the flexibility to implement domain-based transformations in any programming language or use predefined templates.
  • Parallel execution — Enables parallel dumping and restoration to significantly speed up results.
  • Variety of storages — Supports both local and remote storage, including directories and S3-compatible solutions.
  • Pgzip support for faster compression — Speeds up dump and restoration processes with parallel compression by setting --pgzip.

Use Cases

Greenmask is ideal for various scenarios, including:

  • Backup and Restoration. Use Greenmask for your daily routines involving logical backup dumping and restoration. It seamlessly handles tasks like table restoration after truncation. Its functionality closely mirrors that of pg_dump and pg_restore, making it a straightforward replacement.
  • Anonymization, Transformation, and Data Masking. Employ Greenmask for anonymizing, transforming, and masking backups, especially when setting up a staging environment or for analytical purposes. It simplifies the deployment of a pre-production environment with consistently anonymized data, facilitating faster time-to-market in the development lifecycle.

General Information

The best approach for logical backup dumping and restoration is to use core PostgreSQL utilities, specifically pg_dump and pg_restore. Greenmask is designed to align with these native tools, ensuring full compatibility. It independently manages data dumping while delegating schema dumping and restoration to pg_dump and pg_restore, ensuring smooth integration with PostgreSQL’s standard workflow.

Greenmask utilizes the directory format of pg_dump and pg_restore, ideal for parallel execution and partial restoration. This format includes metadata files to guide backup and restoration steps.

Storage Options

  • s3 - Supports any S3-compatible storage system, including AWS S3, offering flexibility across different cloud storage solutions.
  • directory - This is the default option, representing a standard filesystem directory for local storage.

Data Anonymization and Validation

Greenmask works with COPY lines, collects schema metadata using the Golang driver, and employs this driver in the encoding and decoding process. The validate command offers a way to assess the impact on both schema (validation warnings) and data (transformation and displaying differences). This command allows you to validate the schema and data transformations, ensuring the desired outcomes during the Anonymization process.

Customization

If your table schema relies on functional dependencies between columns, you can address this challenge using the Dynamic parameters. By setting dynamic parameters, you can resolve such as created_at and updated_at cases, where the updated_at must be greater or equal than the created_at.

If you need to implement custom logic imperatively use Cmd or TemplateRecord or Template transformers.

PostgreSQL Version Compatibility

Greenmask is compatible with PostgreSQL versions 11 and higher.

Links

References

  • Utilized the Demo database, provided by PostgresPro, for integration testing purposes.
  • Employed the adventureworks database created by morenoh149/postgresDBSamples, in the Docker Compose playground.