Docker image and number documents limit?

Hello
Is there still a limitation on the number of documents opened or users connected with the code docker image?
thanks

There is no limit, however you should be aware this is a development edition with the latest greatest features, and sometimes the latest bugs too :slight_smile: It is strongly recommended that if you deploy CODE at any scale that you contribute back to the project by getting support.

1 Like

Great, thank you very much for your prompt answer.

a teacher informed me of a document problem with several students on Moodle. Students see the connected user pictograms on the document, but not all of them see the same ones or the same versions even though they are connected at the same time.

i’m using version 23.05.4.1.1, If you ever have an idea… ?

according to my supervision it sometimes happens that the memory is completely used (2Gb) is there a system recommendation ?

thank you

You can get splits if you use multiple CODE instances and send users to different instances rather than routing them all nicely based on WOPSRC through whatever proxy you have to the same host. Of course - having enough memory is a good idea too :slight_smile: what does the Admin console say ?

sometimes i have some peaks to 1.9GB
i’m using code with kubernetes, i tried to add a wopisrc rule to nginx but it does not work, but i will retry.
thank you

I opened a document currently being used by students and this is the message I got
the file was modified on storage, what do you want to do with the unsaved changes?

Is this normal behavior? thank you

Hello, I am also using Kubernetes and after having several problems opening documents simultaneously, I ended up finding it by creating an ingress.yaml with this:

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
   notes:
     kubernetes.io/ingress.class: nginx
     nginx.ingress.kubernetes.io/proxy-ssl-protocols: TLSv1.2 TLSv1.3
     nginx.ingress.kubernetes.io/upstream-hash-by: "$arg_WOPISrc"
# nginx.ingress.kubernetes.io/affinity:cookie
# nginx.ingress.kubernetes.io/affinity-mode: persistent
# nginx.ingress.kubernetes.io/session-cookie-conditional-samesite-none: "true"
# nginx.ingress.kubernetes.io/session-cookie-expires: "3600"
# nginx.ingress.kubernetes.io/session-cookie-max-age: "3600"
   name: ingress
   namespace: libreoffice
spec:
   rules:
   - host: "libreoffice.mydomain.com"
     http:
       paths:
       - backend:
           service:
             name: libreoffice
             port:
               number: 9980
         path:/
         pathType: Prefix
   tls:
     - hosts:
       - libreoffice.mydomain.com
       secretName: cert-ed

If that helps you.