When I divide huge files such as log or CSV, I want them not to be divided in the middle of the line.
First, look into the number of lines in the file.
$ wc -l access_log 1197356 access_log
Divide the file by 100000 lines.
$ split -l 100000 access_log