Use batching to encrypt/decrypt fields

Created on 21 January 2016, about 9 years ago
Updated 12 March 2025, 24 days ago

As noted in the code comments it would be good to use Batch API to encrypt/decrypt fields - particular with largish data sets (and to give the user progression feedback). Attached is a patch which changes the process as follows:-
1. Create a duplicate table (temp_fieldtablename) with the same schema definition as the table
2. Copy the current data from the field table into this temporary table
3. Encrypt/decrypt data from the temporary table and copy in batches back to the original table
4. Drop the temporary table.

This is not perfect if there is an error in the process of copying and no database transactions or anything good like that, but we did find it worked well for us on a Postgres install. Sorry no tests on MySQL as of yet.

The current module performs the process in one large database query which tended to out of memory on us.

Feature request
Status

Closed: outdated

Version

1.0

Component

Code

Created by

🇬🇧United Kingdom christoph

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • 🇯🇵Japan ptmkenny

    Drupal 7 is EOL (end of life) so 7.x issues are now being closed. D8+ version does support batching of encrypt/decrypt.

Production build 0.71.5 2024