Jakob Ackermann 63520c7076 Merge pull request #16859 from overleaf/jpa-sharelatex-cleanup 2 ani în urmă
..
api c03f2807bf Merge pull request #15410 from overleaf/jpa-history-v1-verbose-logging 2 ani în urmă
benchmarks ee85d948e2 Avoid duplicating a math-closing dollar sign (#11227) 3 ani în urmă
config 63520c7076 Merge pull request #16859 from overleaf/jpa-sharelatex-cleanup 2 ani în urmă
migrations ee85d948e2 Avoid duplicating a math-closing dollar sign (#11227) 3 ani în urmă
storage 1dc2bd3a24 Merge pull request #15445 from overleaf/jpa-history-v1-gzip-in-place 2 ani în urmă
test 43b2fe4a3a [overleaf-editor-core] Restructure TextOperation hierachy (#16582) 2 ani în urmă
.gitignore ee85d948e2 Avoid duplicating a math-closing dollar sign (#11227) 3 ani în urmă
.mocharc.json ee85d948e2 Avoid duplicating a math-closing dollar sign (#11227) 3 ani în urmă
.nvmrc f061a4add4 Merge pull request #15506 from overleaf/jpa-node-18-18-2 2 ani în urmă
Dockerfile f061a4add4 Merge pull request #15506 from overleaf/jpa-node-18-18-2 2 ani în urmă
Makefile af32433bfa Merge pull request #16845 from overleaf/csh-docker-compose 2 ani în urmă
README.md ee85d948e2 Avoid duplicating a math-closing dollar sign (#11227) 3 ani în urmă
app.js 47820c61a0 Merge pull request #15409 from overleaf/jpa-history-v1-http-timeout 2 ani în urmă
buildscript.txt 4763cfd59e Merge pull request #16058 from overleaf/jpa-faster-restart 2 ani în urmă
docker-compose.ci.yml 63520c7076 Merge pull request #16859 from overleaf/jpa-sharelatex-cleanup 2 ani în urmă
docker-compose.yml 63520c7076 Merge pull request #16859 from overleaf/jpa-sharelatex-cleanup 2 ani în urmă
knexfile.js ee85d948e2 Avoid duplicating a math-closing dollar sign (#11227) 3 ani în urmă
package.json b92d1a0251 Merge pull request #16524 from overleaf/em-fix-typescript-backend 2 ani în urmă
tsconfig.json f1b460ecea Merge pull request #16385 from overleaf/em-typescript-other-services 2 ani în urmă

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.