Sanbox Mode 'store is read-only'

I am currently using sandbox mode and after uploading about 503,095 objects the batching command started reporting:
{‘error’: [{‘message’: ‘store is read-only’}]}
I’m guessing I’ve hit some sort of storage limit but am not sure whether I can increase it or what options I have.

Hi @Landon_Edwards ! Welcome to our community :hugs:

Weaviate will usually enter the read-only state when there is a disk or memmory pressure, according to this setting here.

You are right, those 503,095 objects probably reached the disk limit :hushed: and because of that Weaviate enters in readonly mode to prevent file corruption or data loss.

If you want to store more objects, you will need to sign up for a paid plan or run weaviate yourself using docker, for example.

Let me know if this helps!

Thanks!