Hi there,
I am using a free cluster from mongodb altas. I have been using that for an year. Today I received an error when inserting document in the DB. But, I am able to retrieve the records from the DB. Please find the error message below.
“MongoServerError: you are over your space quota, using 512 MB of 512 MB”,
I deleted some of the collections and still getting the same error. Tried to run db.stats() for all the available DBs and the total size is 56 MB. Attached the response of the db.stats() queries below.
{
db: 'test1',
collections: 19,
views: 1,
objects: Long("195348"),
avgObjSize: 2724.9829739746506,
dataSize: Long("532319974"),
storageSize: Long("55431168"),
totalFreeStorageSize: Long("0"),
numExtents: Long("0"),
indexes: 25,
indexSize: Long("962560"),
indexFreeStorageSize: Long("0"),
fileSize: Long("0"),
nsSizeMB: 0,
ok: 1
}
{
db: 'test2',
collections: 1,
views: 0,
objects: Long("0"),
avgObjSize: 0,
dataSize: Long("0"),
storageSize: Long("4096"),
totalFreeStorageSize: Long("0"),
numExtents: Long("0"),
indexes: 1,
indexSize: Long("4096"),
indexFreeStorageSize: Long("0"),
fileSize: Long("0"),
nsSizeMB: 0,
ok: 1
}
{
db: 'test3',
collections: 11,
views: 0,
objects: Long("4113"),
avgObjSize: 647.5229759299781,
dataSize: Long("2663262"),
storageSize: Long("2387968"),
totalFreeStorageSize: Long("0"),
numExtents: Long("0"),
indexes: 22,
indexSize: Long("1208320"),
indexFreeStorageSize: Long("0"),
fileSize: Long("0"),
nsSizeMB: 0,
ok: 1
}
{
db: 'test4',
collections: 2,
views: 0,
objects: Long("13"),
avgObjSize: 6024.384615384615,
dataSize: Long("78317"),
storageSize: Long("53248"),
totalFreeStorageSize: Long("0"),
numExtents: Long("0"),
indexes: 2,
indexSize: Long("40960"),
indexFreeStorageSize: Long("0"),
fileSize: Long("0"),
nsSizeMB: 0,
ok: 1
}