Is there a maximum size of value that can be inserted into an LMDB database? I am trying to insert a 16GB file into an LMDB which is initialized to size 32GB and I obtain this error:
File "build_lmdb.py", line 90, in write_entry
txn.put(key.encode('ascii'), value)
lmdb.BadValsizeError: mdb_put: MDB_BAD_VALSIZE: Unsupported size of key/DB name/data, or wrong DUPFIXED size
Is there any way around this, or any setup parameter that needs to be changed?