Consider using external values collection for chunked / segmented large values, or externalize data to hdf5 or some type of file. Research shows that MongoDB's GridFS mechanism might be the way to go, the whole point is storage of large data values. See comment below with additional details. High-level design would be to modify backend handling for SerializedDataColumn to store values larger than the 16MB threshold in a GridFS collection, with a GridFS location identifier in the corresponding DataBucket pointing to the externalized value.