DLE v3.0.0 Release Candidate 1
Pre-releaseDLE v3.0.0-rc.1 includes several major changes and many improvements. Most notable changes are:
- persistent clones: clones now survive DLE (or VM) restart,
- GUI included to the core, it allows working with a single DLE instance,
- PostgreSQL 14 support.
Please note that upgrading from an older version requires some actions from the DLE administrator (see "Migration notes" below).
The list below has "WIP" status. The final list for the 3.0 major version release may include some changes.
The development team asks everyone to participate in testing and report any bugs or improvement ideas in the DLE repository: https://gitlab.com/postgres-ai/database-lab.
Changelog
New features
- Do not lose clones when DLE is restarted - https://gitlab.com/postgres-ai/database-lab/-/issues/188
- Run a new satellite-container serving the Local UI app - https://gitlab.com/postgres-ai/database-lab/-/issues/302
- Provide information in API about available pools - https://gitlab.com/postgres-ai/database-lab/-/issues/275
- Support PostgreSQL 14 - https://gitlab.com/postgres-ai/database-lab/-/issues/290
- Enable DLE Telemetry (optional) - https://gitlab.com/postgres-ai/database-lab/-/issues/299, https://gitlab.com/postgres-ai/database-lab/-/merge_requests/373
- Provide the DLE container name to control container labels - https://gitlab.com/postgres-ai/database-lab/-/merge_requests/365
- Add the ability to select a working pool explicitly - https://gitlab.com/postgres-ai/database-lab/-/issues/306
- Configure IP address to listen HTTP connections for Local UI - https://gitlab.com/postgres-ai/database-lab/-/merge_requests/378
Improvements and fixes
- Allow an empty body in the
reset
command - https://gitlab.com/postgres-ai/database-lab/-/issues/291 - Do not mark the first pool active by default - https://gitlab.com/postgres-ai/database-lab/-/merge_requests/346
- Revise port range availability after deleting invalid clone containers - https://gitlab.com/postgres-ai/database-lab/-/issues/296
- Allow resetting clone to a snapshot from a different pool - https://gitlab.com/postgres-ai/database-lab/-/merge_requests/345
- Clean up the
dumpLocation
directory before taking a dump - https://gitlab.com/postgres-ai/database-lab/-/issues/294 - Select the latest snapshot according to the data timestamp - https://gitlab.com/postgres-ai/database-lab/-/issues/304
- Disable full refresh by default in "physical" mode - https://gitlab.com/postgres-ai/database-lab/-/issues/303
- Consider the preliminary snapshot when calculating the size of the snapshot - https://gitlab.com/postgres-ai/database-lab/-/issues/305
- Adjust the payload parameter in telemetry requests - https://gitlab.com/postgres-ai/database-lab/-/merge_requests/379
Internal
- Use semantic Git tags to specify code revision and build Docker images - https://gitlab.com/postgres-ai/database-lab/-/merge_requests/341
- Install a specific version of Envoy as a workaround of using a Postgres Proxy filter - https://gitlab.com/postgres-ai/database-lab/-/merge_requests/349
- Refactor Instance status DLE API - https://gitlab.com/postgres-ai/database-lab/-/issues/297
- Update the Swagger API schema - https://gitlab.com/postgres-ai/database-lab/-/issues/297, https://gitlab.com/postgres-ai/database-lab/-/merge_requests/364
- Extend testing the DLE feature-revision for all supported PostgreSQL versions - https://gitlab.com/postgres-ai/database-lab/-/merge_requests/350, https://gitlab.com/postgres-ai/database-lab/-/merge_requests/375
- Make configuration management more reliable in the TF-template - https://gitlab.com/postgres-ai/database-lab/-/merge_requests/366
- Refactor the project packages structure - https://gitlab.com/postgres-ai/database-lab/-/merge_requests/367
- Upgrade the project dependencies - https://gitlab.com/postgres-ai/database-lab/-/merge_requests/369
- Upgrade the Swagger UI version to 4.1.0 - https://gitlab.com/postgres-ai/database-lab/-/merge_requests/370
- Upgrade Go version to 1.17 - https://gitlab.com/postgres-ai/database-lab/-/merge_requests/371
- Update golangci-lint to version 1.42 - https://gitlab.com/postgres-ai/database-lab/-/merge_requests/374
- Check suppressed linter warnings - https://gitlab.com/postgres-ai/database-lab/-/issues/38
- Make synthetic tests configuration more reliable - https://gitlab.com/postgres-ai/database-lab/-/merge_requests/372
- Exclude side effects while running integration tests in dev and staging environments - https://gitlab.com/postgres-ai/database-lab/-/merge_requests/375
- Upgrade the DLE module version to v3 - https://gitlab.com/postgres-ai/database-lab/-/merge_requests/377
Migration notes
The Database Lab configuration contains a new section localUI
to run UI application that allows observing the current state of the instance and performing basic clone operations:
localUI:
enabled: true
dockerImage: "postgresai/basic-ui:latest"
host: ""
port: 2346
Note, this application is delivered as a separate Docker container (Local UI) and running by the Database Lab Engine.
Since v3.0.0-rc.1, DLE collects non-personally identifiable telemetry data.
The Engine uses anonymous usage data to assist users and improve product quality.
it is possible to manage the configuration in the section global
:
global:
telemetry:
enabled: true
url: "https://postgres.ai/api/general"
...
Please leave it enabled if possible – this will contribute to Database Lab development.
See more details on the Telemetry page in the docs
Now it is available to select a specific pool to work with, use a new option selectedPool
in the poolManager
section
poolManager:
selectedPool: "dblab_pool"
...
Since version v3.0.0-rc.1, Database Lab Engine can be running with an empty verification token, which is not recommended by default.
In such a case DLE warns about empty token in instance logs and API will not require any credentials. Be sure that this option is configured correctly
In order to make the management of service containers easier, special labels have been added to them:
- `dblab_instance_id`: <dle_instance_id>
- `dblab_engine_name`: <dle_container_name>
For example, there is a snippet of the docker inspection response of a sync instance:
"Labels": {
"dblab_control": "dblab_sync",
"dblab_instance_id": "c64mvrvku3086hlp2e6g",
"dblab_engine_name": "dblab_server",
"maintainer": "postgres.ai"
}
See more examples of configuration files in the Database Lab repository
The Docker image of DLE 3.0.0-rc.1: registry.gitlab.com/postgres-ai/database-lab/dblab-server:test-3-0-0-rc-1
Launch command example:
sudo docker run \
--name dblab_server \
--label dblab_control \
--privileged \
--publish 127.0.0.1:2345:2345 \
--volume /var/run/docker.sock:/var/run/docker.sock \
--volume /var/lib/dblab:/var/lib/dblab/:rshared \
--volume ~/.dblab/engine/configs:/home/dblab/configs:ro \
--volume ~/.dblab/engine/meta:/home/dblab/meta \
--env DOCKER_API_VERSION=1.39 \
--detach \
--restart on-failure \
registry.gitlab.com/postgres-ai/database-lab/dblab-server:test-3-0-0-rc-1
If you have problems or questions, please contact our communities for help: https://postgres.ai/docs/questions-and-answers#where-to-get-help
Request for feedback
Any feedback would be greatly appreciated:
- Database Lab Community Slack: https://slack.postgres.ai/
- DLE issue tracker: https://gitlab.com/postgres-ai/database-lab/-/issues
Compare versions
Diff between versions 2.5.0 and v3.0.0-rc.1: https://gitlab.com/postgres-ai/database-lab/-/compare/2.5.0...v3.0.0-rc.1