Eric Mc Sween 0e9c310d1d Merge pull request #24390 from overleaf/em-enforce-content-hash-validation 1 年之前
..
api 0e9c310d1d Merge pull request #24390 from overleaf/em-enforce-content-hash-validation 1 年之前
backupVerifier 800b151024 Ensure metrics exist before collecting them 1 年之前
benchmarks 7f48c67512 Add `prefer-node-protocol` ESLint rule (#21532) 1 年之前
config afedce1b0e Add script for verifying sampled sets of projects 1 年之前
migrations ee85d948e2 Avoid duplicating a math-closing dollar sign (#11227) 3 年之前
storage 0e9c310d1d Merge pull request #24390 from overleaf/em-enforce-content-hash-validation 1 年之前
test 0e9c310d1d Merge pull request #24390 from overleaf/em-enforce-content-hash-validation 1 年之前
.gitignore ee85d948e2 Avoid duplicating a math-closing dollar sign (#11227) 3 年之前
.mocharc.json ee85d948e2 Avoid duplicating a math-closing dollar sign (#11227) 3 年之前
.nvmrc 272108a213 Run `bin/update_node 20.18.0 20.18.2` (#23074) 1 年之前
Dockerfile 272108a213 Run `bin/update_node 20.18.0 20.18.2` (#23074) 1 年之前
Makefile f6bd485863 [misc] align initializing of mongodb replica set (#24287) 1 年之前
README.md ee85d948e2 Avoid duplicating a math-closing dollar sign (#11227) 3 年之前
app.js 81aab1e159 [misc] fix logger.error(err) and logger.warn(err) calls (#23369) 1 年之前
backup-deletion-app.mjs 9cc6f2a9d5 Merge pull request #21829 from overleaf/jpa-backup-deletion 1 年之前
backup-verifier-app.mjs 47d8e59938 Add code to shutdown message for debugging 1 年之前
backup-worker-app.mjs efd53e567c Merge pull request #24237 from overleaf/bg-fix-backup-worker 1 年之前
buildscript.txt f6bd485863 [misc] align initializing of mongodb replica set (#24287) 1 年之前
docker-compose.ci.yml f6bd485863 [misc] align initializing of mongodb replica set (#24287) 1 年之前
docker-compose.yml f6bd485863 [misc] align initializing of mongodb replica set (#24287) 1 年之前
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 767591973c Merge pull request #23905 from overleaf/ar-mocha-11 1 年之前
tsconfig.json f6bd485863 [misc] align initializing of mongodb replica set (#24287) 1 年之前

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.