Hi everyone, Hi Kevin,
I was one of the users affected by the issue where the ost_session table exceeded 18GB of total size.
Figured out this issue when my server told me, oh, no space left for anything.
Couldnt even manage to DELETE certain rows from the table, hence I had to drop the entire table.
Now I've re created the table using
CREATE TABLE support_session (
id INT AUTO_INCREMENT PRIMARY KEY,
user_id INT NOT NULL,
session_data TEXT,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
But I believe that's not all I had to create, since I'm failing to login. Can you give me the correct command to regain the db? OR anyone can basically help me by doing and posting the result of the info about the table, for most cases "ost_sessions"
Thanks in advance!