Operating system
Linux
Joplin version
3.4.2
Desktop version info
Joplin 3.4.6 (prod, win32)
Gerät: win32, 12th Gen Intel(R) Core(TM) i5-12400
Client-ID: f6d51f4d45ca4a698463e1b635f7d3d0
Sync-Version: 3
Profil-Version: 48
Unterstützter Schlüsselbund: Nein
Alternative Instanz ID: -
Revision: 4128061
Convert Text To New Note: 1.5.1
Email Note: 1.2.2
Email Plugin: 1.0.0
Favorites: 1.3.2
Hotfolder: 1.2.2
Insert Date: 1.0.1
Joplin Calendar: 1.2.0
macOS theme: 1.5.20
MailPlugin: 1.0.0
Note overview: 1.7.1
Sync target
Joplin Server
What issue do you have?
Formerly synced to my Nextcloud's webdav.
Have set up Joplin Server on Docker on Ubuntu 24.0.4. Changed sync target to joplin server, checked "upload everything from scratch".
Sync started fast, but after ~ 5000 synced item it got slower and slower. Setting is 20 simultaneous connections.
Any ideas? Have to synch 30k+ items.
BTW: What ist the difference between sync target Joplin Server & Joplin Server (SAML)?
If possible I would like to place Joplin behind Authelia, does this work? Currently I found no way for this.
BTW: Im running Joplin Server with NPM, thats my stack. Would a change to store data to the filesystem insted of the database speed this up? How do i have to implement this and do I need the database after that ( I assume yes, for storing users etc, right).
services:
db:
image: postgres:16
container_name: joplindb
volumes:
- /docker/Joplin:/var/lib/postgresql/data
#ports:
#- "5432:5432"
restart: unless-stopped
environment:
- POSTGRES_PASSWORD=test
- POSTGRES_USER=test
- POSTGRES_DB=test
networks:
NPM:
ipv4_address: 10.100.0.7
app:
image: joplin/server:latest
container_name: joplinapp
depends_on:
- db
#ports:
#- "22300:22300"
restart: unless-stopped
environment:
- APP_PORT=22300
- APP_BASE_URL=https://wiki.test.com
- DB_CLIENT=pg
- POSTGRES_PASSWORD=test
- POSTGRES_DATABASE=test
- POSTGRES_USER=test
- POSTGRES_PORT=5432
- POSTGRES_HOST=10.100.0.7
networks:
NPM:
ipv4_address: 10.100.0.6
networks:
NPM:
external: true
name: NPM
ipam:
config:
- subnet: 10.100.0.0/24
gateway: 10.100.0.1