Hi, I want to be able to extract data from Mysql to Hadoop without writing the data to disk. I was thinking in the line of piping the extract and loading it to Hadoop.
Something like this: mysql <extract_query> | hive -e 'load data <via_pipe> into table ... Has anyone done this before?