Brian Gough 729e0f5ac9 move migrations to shared location (#28306) před 10 měsíci
..
api 98069966ba Merge pull request #28672 from overleaf/em-reapply-restore-optimization před 10 měsíci
backupVerifier 99ab41fd76 Allow scaling in getEndDateForRPO před 1 rokem
benchmarks 7f48c67512 Add `prefer-node-protocol` ESLint rule (#21532) před 1 rokem
config f68bf5a69f Merge pull request #26477 from overleaf/em-redis-buffer-resync před 1 rokem
migrations 2256697323 Merge pull request #24967 from overleaf/em-chunks-concurrency-pg-migration před 1 rokem
storage 2cae9c4635 Merge pull request #29097 from overleaf/bg-reduce-retry-backup-script-concurrency před 10 měsíci
test 729e0f5ac9 move migrations to shared location (#28306) před 10 měsíci
.jenkinsIncludeFile 729e0f5ac9 move migrations to shared location (#28306) před 10 měsíci
.mocharc.cjs fd0d21fbbd [monorepo] migrate build scripts to Jenkins (#29019) před 10 měsíci
.nvmrc 6190005f9b [monorepo] Upgrade to node 22.18.0 (#27977) před 11 měsíci
Dockerfile 729e0f5ac9 move migrations to shared location (#28306) před 10 měsíci
Jenkinsfile fd0d21fbbd [monorepo] migrate build scripts to Jenkins (#29019) před 10 měsíci
Makefile 729e0f5ac9 move migrations to shared location (#28306) před 10 měsíci
README.md ee85d948e2 Avoid duplicating a math-closing dollar sign (#11227) před 3 roky
app.js eb2320a8af Merge pull request #27823 from overleaf/em-increase-max-request-size před 11 měsíci
backup-deletion-app.mjs 9cc6f2a9d5 Merge pull request #21829 from overleaf/jpa-backup-deletion před 1 rokem
backup-verifier-app.mjs cde7ff5d2f Don't run the verifier loop when app created from test před 1 rokem
backup-worker-app.mjs efd53e567c Merge pull request #24237 from overleaf/bg-fix-backup-worker před 1 rokem
buildscript.txt 15a6e8ba04 [monorepo] use content hash as docker image cache key (#29046) před 10 měsíci
docker-compose.ci.yml fd0d21fbbd [monorepo] migrate build scripts to Jenkins (#29019) před 10 měsíci
docker-compose.yml 729e0f5ac9 move migrations to shared location (#28306) před 10 měsíci
install_deps.sh 9357f51fcf Merge pull request #22092 from overleaf/jpa-jq před 1 rokem
knexfile.js ee85d948e2 Avoid duplicating a math-closing dollar sign (#11227) před 3 roky
package.json 729e0f5ac9 move migrations to shared location (#28306) před 10 měsíci
tsconfig.json 7aa66b260c Merge pull request #28541 from overleaf/td-notifications-app-ts před 10 měsíci

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.