github datalens-tech/datalens v2.2.0
v2.2.0 (2025-05-19)

latest releases: v2.5.0, v2.4.2, v2.4.1...
3 months ago

Image versions

🆕 Workbook Import/Export

DataLens introduces a new workbook import/export functionality that enables users to seamlessly transfer workbooks between different DataLens instances. This feature is built on:

  • Meta-Manager: A dedicated service that handles long-running tasks within DataLens, currently focused on workbook imports and exports.
  • Temporal: A reliable workflow orchestration platform that ensures operations complete successfully even in the event of system failures.

This functionality can be disabled using the following args:

  • --disable-temporal - disables the Temporal service
  • --disable-workbook-export - disables the workbook export functionality

⚠️ Upgrade Guide

If you're using an external PostgreSQL cluster and upgrading to a version with meta-manager and temporal service, you'll need to create additional databases:

  • If you have root access to the PostgreSQL cluster

You can automatically create additional databases by running these commands:

docker compose run --rm --entrypoint init-db-temporal.sh postgres
docker compose run --rm --entrypoint init-db-meta-manager.sh postgres
  • If you don't have root access

You'll need to manually create the following databases:

POSTGRES_DB_META_MANAGER='pg-meta-manager-db'
POSTGRES_DB_TEMPORAL='pg-temporal-db'
POSTGRES_DB_TEMPORAL_VISIBILITY='pg-temporal-visibility-db'
  • If you're using the built-in PostgreSQL in the Docker Compose setup, no additional action is required.

New features

Bug fixes

Security

Dependencies

Chores

Build

Don't miss a new datalens release

NewReleases is sending notifications on new releases.