Anna Claire Fields 65c164c73d Merge pull request #30053 from overleaf/acf-migration4-controllers-and-params 8 ماه پیش
..
api 65c164c73d Merge pull request #30053 from overleaf/acf-migration4-controllers-and-params 8 ماه پیش
backupVerifier 99ab41fd76 Allow scaling in getEndDateForRPO 1 سال پیش
benchmarks 7f48c67512 Add `prefer-node-protocol` ESLint rule (#21532) 1 سال پیش
config f68bf5a69f Merge pull request #26477 from overleaf/em-redis-buffer-resync 1 سال پیش
migrations 2256697323 Merge pull request #24967 from overleaf/em-chunks-concurrency-pg-migration 1 سال پیش
storage 42d09010aa Merge pull request #30174 from overleaf/bg-history-backup-allow-stalled-jobs-to-be-retried 8 ماه پیش
test 65c164c73d Merge pull request #30053 from overleaf/acf-migration4-controllers-and-params 8 ماه پیش
.mocharc.cjs fd0d21fbbd [monorepo] migrate build scripts to Jenkins (#29019) 10 ماه پیش
.nvmrc 6190005f9b [monorepo] Upgrade to node 22.18.0 (#27977) 11 ماه پیش
Dockerfile c25e49782f Merge pull request #29965 from overleaf/acf-migration1-validation 8 ماه پیش
Makefile c25e49782f Merge pull request #29965 from overleaf/acf-migration1-validation 8 ماه پیش
README.md ee85d948e2 Avoid duplicating a math-closing dollar sign (#11227) 3 سال پیش
app.js 65c164c73d Merge pull request #30053 from overleaf/acf-migration4-controllers-and-params 8 ماه پیش
backup-deletion-app.mjs 65c164c73d Merge pull request #30053 from overleaf/acf-migration4-controllers-and-params 8 ماه پیش
backup-verifier-app.mjs cde7ff5d2f Don't run the verifier loop when app created from test 1 سال پیش
backup-worker-app.mjs 1f356754de Merge pull request #29801 from overleaf/bg-history-refactor-backup-worker-shutdown 8 ماه پیش
buildscript.txt 74efa0e345 Merge pull request #29898 from overleaf/gs-jenkins-issues-all-pipelines 8 ماه پیش
docker-compose.ci.yml 0d71c825a9 Bump fake-gcs version and fix resumable uploads 8 ماه پیش
docker-compose.yml 0d71c825a9 Bump fake-gcs version and fix resumable uploads 8 ماه پیش
install_deps.sh 9357f51fcf Merge pull request #22092 from overleaf/jpa-jq 1 سال پیش
knexfile.js ee85d948e2 Avoid duplicating a math-closing dollar sign (#11227) 3 سال پیش
package.json f3c9b2f2f0 Merge pull request #30182 from overleaf/ar/update-jws-to-3.2.3_or_4.0.1 8 ماه پیش
tsconfig.json 7aa66b260c Merge pull request #28541 from overleaf/td-notifications-app-ts 10 ماه پیش

README.md

Database migrations

The history service uses knex to manage PostgreSQL migrations.

To create a new migrations, run:

npx knex migrate:make migration_name

To apply migrations, run:

npx knex migrate:latest

For more information, consult the knex migrations guide.

Global blobs

Global blobs are blobs that are shared between projects. The list of global blobs is stored in the projectHistoryGlobalBlobs Mongo collection and is read when the service starts. Changing the list of global blobs needs to be done carefully.

Adding a blob to the global blobs list

If we identify a blob that appears in many projects, we might want to move that blob to the global blobs list.

  1. Add a record for the blob to the projectHistoryGlobalBlobs collection.
  2. Restart the history service.
  3. Delete any corresponding project blobs.

Removing a blob from the global blobs list

Removing a blob from the global blobs list is trickier. As soon as the global blob is made unavailable, every project that needs the blob will have to get its own copy. To avoid disruptions, follow these steps:

  1. In the projectHistoryGlobalBlobs collection, set the demoted property to false on the global blob to remove. This will make the history system write new instances of this blob to project blobs, but still read from the global blob.

  2. Restart the history service.

  3. Copy the blob to all projects that need it.

  4. Remove the blob from the projectHistoryGlobalBlobs collection.

  5. Restart the history service.