From 074efbcd6de99374615593546581d9fa65264e9f Mon Sep 17 00:00:00 2001 From: Vadim Voitenko Date: Sun, 13 Oct 2024 21:42:27 +0300 Subject: [PATCH] Doc: fixed links --- docs/about.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/about.md b/docs/about.md index 6e219f51..89817aa9 100644 --- a/docs/about.md +++ b/docs/about.md @@ -15,20 +15,20 @@ backward-compatible with existing PostgreSQL utilities, fast and reliable. ## Key features -* **[Deterministic transformers](https://docs.greenmask.io/latest/built_in_transformers/transformation_engines/#hash-engine)** +* **[Deterministic transformers](built_in_transformers/transformation_engines.md/#hash-engine)** — deterministic approach to data transformation based on the hash functions. This ensures that the same input data will always produce the same output data. Almost each transformer supports either `random` or `hash` engine making it universal for any use case. -* **[Dynamic parameters](https://docs.greenmask.io/latest/built_in_transformers/dynamic_parameters/)** — almost each +* **[Dynamic parameters](built_in_transformers/dynamic_parameters.md)** — almost each transformer supports dynamic parameters, allowing to parametrize the transformer dynamically from the table column value. This is helpful for resolving the functional dependencies between columns and satisfying the constraints. -* **[Transformation validation and easy maintainable](https://docs.greenmask.io/latest/commands/validate/)** - During +* **[Transformation validation and easy maintainable](commands/validate.md)** - During configuration process, Greenmask provides validation warnings, data transformation diff and schema diff features, allowing you to monitor and maintain transformations effectively throughout the software lifecycle. Schema diff helps to avoid data leakage when schema changed. -* **[Partitioned tables transformation inheritance](https://docs.greenmask.io/latest/configuration/?h=partition#dump-section)** +* **[Partitioned tables transformation inheritance](configuration.md/?h=partition#dump-section)** — Define transformation configurations once and apply them to all partitions within partitioned tables (using `apply_for_inherited` parameter), simplifying the anonymization process. * **Stateless** - Greenmask operates as a logical dump and does not impact your existing database schema. @@ -39,16 +39,16 @@ backward-compatible with existing PostgreSQL utilities, fast and reliable. * **Backward compatible** - It fully supports the same features and protocols as existing vanilla PostgreSQL utilities. Dumps created by Greenmask can be successfully restored using the pg_restore utility. * **Extensible** - Users have the flexibility - to [implement domain-based transformations](https://docs.greenmask.io/latest/built_in_transformers/standard_transformers/cmd/) + to [implement domain-based transformations](built_in_transformers/standard_transformers/cmd.md/) in any programming language or - use [predefined templates](https://docs.greenmask.io/latest/built_in_transformers/advanced_transformers/). + use [predefined templates](built_in_transformers/advanced_transformers/index.md). * **Integrable** - Integrate seamlessly into your CI/CD system for automated database anonymization and restoration. * **Parallel execution** - Take advantage of parallel dumping and restoration, significantly reducing the time required to deliver results. * **Provide variety of storages** - offers a variety of storage options for local and remote data storage, including directories and S3-like storage solutions. -* **[Pgzip support for faster compression](https://docs.greenmask.io/latest/commands/dump/?h=pgzip#pgzip-compression)** — by +* **[Pgzip support for faster compression](commands/dump.md/?h=pgzip#pgzip-compression)** — by setting `--pgzip`, it can speeds up the dump and restoration processes through parallel compression.