From Fedora Project Wiki
Line 61: Line 61:
* Test database conversions from one backend to another (rpmdb --rebuilddb --define "_db_backend <backend>")
* Test database conversions from one backend to another (rpmdb --rebuilddb --define "_db_backend <backend>")
* Install/upgrade scenarios:
* Install/upgrade scenarios:
** A fresh install has sqlite enabled by default, no warnings emitted during normal rpm operation
** A fresh install has sqlite enabled by default, no database warnings/errors emitted during rpm operation
** System upgraded from Fedora < 33 has been convereted to sqlite rpmdb after the post-upgrade reboot
** System upgraded from Fedora < 33 has been converted to sqlite rpmdb after the post-upgrade reboot without specifc user intervention, no database warnings/errors emitted during normal operation


== User Experience ==
== User Experience ==

Revision as of 09:00, 12 May 2020

Sqlite RpmDB

Summary

Change format of the RPM database from Berkeley DB to a new Sqlite format.

Owner

Current status

Detailed Description

The current rpm database implementation is based on Berkeley DB 5.x, a version which is unmaintained upstream for several years now. Berkeley DB 6.x is license incompatible so moving to that is not an option. In addition, the existing rpmdb implementation is notoriously unreliable as it's not transactional and has no other means to detect inconsistencies either.

Changing to a more sustainable database implementation is long overdue. We propose to change the default rpmdb format to the new sqlite based implementation. Support for current BDB format will be retained in Fedora 33, and phased out to read-only support in Fedora 34.

Benefit to Fedora

  • A far more robust rpm database implementation
  • Getting rid of Berkeley DB dependency in one of the core components

Scope

  • Proposal owners:
    • Once RPM 4.16 lands and passes initial shakedown, change the default rpmdb configuration to sqlite
    • Arrange for automatic database conversion with opt-out possibility (one-shot service on next reboot or similar)
    • Address any bugs and issues in the database backend found by wider testing base
    • Help other developers to address Berkeley DB dependencies
  • Other developers:
    • Test for hidden Berkeley DB dependencies in other software, address them as found and needed
  • Release engineering: #9308
  • Policies and guidelines: Policies and guidelines are not affected
  • Trademark approval: N/A (not needed for this Change)

Upgrade/compatibility impact

Upgrading

  • Ability to upgrade is not affected
  • After update, systems will be converted to the sqlite format (on next reboot or similar) unless user overrides configuration to stay on BDB for now

Compatibility

  • Container/chroot use-cases will be affected: older rpm versions will be unable to query/manipulate the rpmdb from outside the chroot
  • Koji/COPR may need to override the database format (back to) BDB for the time being. Better option would be to use mock bootstrap container, which would solve a whole class of issues going forward.

How To Test

  • Rpmdb gets thoroughly exercised as a matter of normal system operation, performing installs, updates, package builds etc
  • Of specific interest here is torture testing: forcibly killing rpm in various stages of execution - database should stay consistent and operational (other system state is out of scope)
  • Test database conversions from one backend to another (rpmdb --rebuilddb --define "_db_backend <backend>")
  • Install/upgrade scenarios:
    • A fresh install has sqlite enabled by default, no database warnings/errors emitted during rpm operation
    • System upgraded from Fedora < 33 has been converted to sqlite rpmdb after the post-upgrade reboot without specifc user intervention, no database warnings/errors emitted during normal operation

User Experience

  • In normal operation, users should see little or no change
  • Behavior in error situations is much more robust: forcibly killed transaction no longer causes database inconsistency or corruption

Dependencies

  • This change depends on RPM 4.16, support for sqlite rpmdb is not present in older versions
  • RPM will grow a new dependency on sqlite-libs
  • Technically the rpmdb format is an internal implementation detail of RPM and the data is only accessible through the librpm API, but some software is making assumptions both about the format and/or in particular, file naming. These are being tracked at https://bugzilla.redhat.com/show_bug.cgi?id=1766120
  • Upgrade tooling could/should perform rpmdb rebuild at end, this would be a good thing to do regardless of this change

Contingency Plan

  • Contingency mechanism:
    • Revert the default database back to Berkeley DB backend in the package. The actual conversion can use the same mechanism as in the other direction.
    • The rpm-team does not expect problems with the database backend itself, but we are aware that postponing may be needed due to infrastructure or other tooling not being ready, primarily due to inability to access the database from older releases.
  • Contingency deadline: Beta freeze
  • Blocks release? Yes

Documentation

Release Notes

  • After upgrading from an older release, rpm operations will issue warnings about database backend configuration not matching what's on disk. Users should run 'rpmdb --rebuilddb' at earliest opportunity, or change configuration to stay on Berkeley DB backend (eg 'echo %_db_backend bdb > /etc/rpm/macros.db')
  • The details are subject to change, the database rebuild may be done by upgrade tooling