Berkeley DB File Splitting
Our application uses berkeley db for temporary storage and persistance.A new issue has risen where tremendous data comes in from various input sources.Now the underlying file system does not support such large file sizes.Is there anyway to split the berkeley DB files into logical segments or partitions without losing data inside it.I also need it to set using berkeley DB properties and not cumbersome programming for this simple task. To my knowledge, BDB does not support this for you. You can however implement it yourself by creating multiple databases. I did this before with BDB,