Automate hived switching from one monolithic block_log to block_log parts
Currently hived fails if all required files for a particular block-log-split setting are not found. I'd like it to use logic like this instead:
if block-log-split = -1
use unsplit block_log, fail if not there
else if block-log-split >= 0
if all required split files found
use split files
else if unsplit file found
create required split files from unsplit block_log
use split files
else
fail
Edited by Dan Notestein