Antoine Clausse 6c2cf20125 Merge pull request #20552 from overleaf/ac-update-node-fetch-2 пре 1 година
..
api 9648c6711c Merge pull request #20592 from overleaf/em-mj-load-history-version пре 1 година
benchmarks ee85d948e2 Avoid duplicating a math-closing dollar sign (#11227) пре 3 година
config 63520c7076 Merge pull request #16859 from overleaf/jpa-sharelatex-cleanup пре 2 година
migrations ee85d948e2 Avoid duplicating a math-closing dollar sign (#11227) пре 3 година
storage 37806a9505 Merge pull request #20695 from overleaf/bg-issue15972 пре 1 година
test 9babc70df7 Merge pull request #17362 from overleaf/bg-chai-object-id-tests пре 2 година
.gitignore ee85d948e2 Avoid duplicating a math-closing dollar sign (#11227) пре 3 година
.mocharc.json ee85d948e2 Avoid duplicating a math-closing dollar sign (#11227) пре 3 година
.nvmrc 2469c93da4 Merge pull request #17870 from overleaf/bg-node-upgrade-18-20-2 пре 2 година
Dockerfile 2976fd0b44 Fix Dockerfile FromAsCasing warnings (#20388) пре 1 година
Makefile e3feafb7b0 Merge pull request #20332 from overleaf/jpa-small-runner пре 1 година
README.md ee85d948e2 Avoid duplicating a math-closing dollar sign (#11227) пре 3 година
app.js 9e5223ac6b Merge pull request #19191 from overleaf/em-history-body-limit пре 2 година
buildscript.txt e3feafb7b0 Merge pull request #20332 from overleaf/jpa-small-runner пре 1 година
docker-compose.ci.yml cbe7a2f5a9 Merge pull request #19282 from overleaf/jpa-filestore-sharding пре 2 година
docker-compose.yml 2469c93da4 Merge pull request #17870 from overleaf/bg-node-upgrade-18-20-2 пре 2 година
knexfile.js ee85d948e2 Avoid duplicating a math-closing dollar sign (#11227) пре 3 година
package.json 6c2cf20125 Merge pull request #20552 from overleaf/ac-update-node-fetch-2 пре 1 година
tsconfig.json 84be385550 Merge pull request #20331 from overleaf/jpa-build-scripts-sync пре 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.