Hi, i am creating orc file based on particular action(kind of action user does from UI) and that action may happen in future as well. so ,one ORC file will be created for particular action and data will keep appending to that file when that action happens again in future.
is there a way i can flush the data to HDFS without closing the Writer object. i will close the Writer object when the file on HDFS reaches particular length. only when i create a new file, writer on old file should be closed. currently i can see only close , flushes the data to HDFS. i don't want to close the file, keep writing to the file, flush it and close write only when file is of particular size. is there a way i can achieve it? Thanks, Praveen
