Remix-auth session storage doesn't persist on deployments

Hey there,

We are deploying a remix app using remix-auth and SessionStorage from remix-run/node.

Unfortunately, it seems that the session storage is being cleared after each deploy. As we deploy a few times per day, this has caused users to be logged out while using the app.

I just wanted to get some advice on where to look on this, the render docs doesn’t seem to state we shouldn’t be able to have persistent sessions.

Based off this description, it is most likely that you’re saving session data to disk. If not directly to disk, then perhaps in an SQLite database, which is still just a flat file on disk.
That said, if you’re using SQLite, you would have bigger problems than just sessions.

In any case, regarding anything to do with saving to disk, see Persistent Disks – Render Docs