MDB_MAP_FULL top-level constant

int const MDB_MAP_FULL

MDB_MAP_FULL: Environment mapsize limit reached. Occurs when:

  • Writing would exceed the current mapsize
  • Database has grown too large for the specified mapsize Solution:
  • Increase mapsize when opening the database
  • Typical in write operations with insufficient initial mapsize

Implementation

const MDB_MAP_FULL = bindings.MDB_MAP_FULL;