Anna Claire Fields b2edd33ca5 [PnP Migration] update ESLint cache location to use a unified .cache directory (#34485) пре 2 месеци
..
api d610f404e7 [history-v1] increase timeout for downloading the latest content as zip (#34045) пре 2 месеци
backupVerifier 99ab41fd76 Allow scaling in getEndDateForRPO пре 1 година
benchmarks 7f48c67512 Add `prefer-node-protocol` ESLint rule (#21532) пре 1 година
config a648015db8 Centralize prettier configuration to root level (#30501) пре 6 месеци
migrations 2256697323 Merge pull request #24967 from overleaf/em-chunks-concurrency-pg-migration пре 1 година
storage a2f72adf67 Remove useSecondary from backup worker to fix false positive errors during MongoDB failover (#34186) пре 2 месеци
test 0da93aaab3 add script to finalise broken history-v1 chunks (#34005) пре 2 месеци
.mocharc.cjs 44dee7592a use require.resolve for mocha reporter paths (#34235) пре 2 месеци
.nvmrc 1a7de4ddd8 Upgrades Node.js from 24.13.0 → 24.14.1 (#32498) пре 4 месеци
Dockerfile b62d4814c3 [monorepo] turn throw statements in callback code into callback calls (#33524) пре 3 месеци
Makefile b2edd33ca5 [PnP Migration] update ESLint cache location to use a unified .cache directory (#34485) пре 2 месеци
README.md a648015db8 Centralize prettier configuration to root level (#30501) пре 6 месеци
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 a0ca344065 Merge pull request #34127 from overleaf/gs-j-cd-hooks пре 2 месеци
docker-compose.ci.yml b6451d5bb0 Merge pull request #34179 from overleaf/ar-analytics-upgrade-development-postgres пре 2 месеци
docker-compose.yml b6451d5bb0 Merge pull request #34179 from overleaf/ar-analytics-upgrade-development-postgres пре 2 месеци
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 b2edd33ca5 [PnP Migration] update ESLint cache location to use a unified .cache directory (#34485) пре 2 месеци
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.