Hi to all, this is my first post in this forum and the topic is that i found a cache/data directory of my docker onlyoffice installation with over 7k files and only 20 files in forgotten folder. Why so many files in cache ? my installation is at the last (8.3.3 onlyoffice latest image) and owncloud as storage system (at 10.5.x version). In the psql database version Debian 12.22-1.pgdg120+1 i see that there are alot fo tasks with status 8 during the day and i cant see a corrsponding status in the callback status explained here Callback handler | ONLYOFFICE thanks in advance on helping us to understand better mecanisms of onlyoffice integration
Hello @malviven7
Statuses in the database do not relate with the callback ones. task_result
contains data about the file status in cache only, you can find statuses that are used there here.
Firstly, you can check out amount of rows in task_result
table to see how many files table contains with command SELECT COUNT(*) FROM task_result;
. Then, you can also check oldest files in the /data directory with records in database with command SELECT * FROM doc_changes WHERE id = 'ID';
, where ID
corresponds to the name of oldest directory.