Hi everybody! I get the following error when running a batched django data migration:
File "/home/michaelgolth/.virtualenvs/venv/lib/python3.10/site-packages/django/db/backends/utils.py", line 84, in _execute
return self.cursor.execute(sql, params)
psycopg2.errors.DiskFull: could not resize shared memory segment "/PostgreSQL.230765310" to 8388608 bytes: No space left on device
I'm migrating one field of a table whose total size is 1.4 GB, so it's unlikely that it's a memory issue (the migration is batched and only the one field is pulled from the db). I also have 17 GB of disk space and 40 GB or so db space left.
Please let me know what's wrong.