How do I migrate Hive/HDFS data to ClickHouse?
You can export data from Hive as CSV files and import the CSV files to ClickHouse.
hive -e "select * from db_hive.student limit 1000"| tr "\t" "," > /data/bigdata/hive/student.csv;
clickhouse --client --port 9002 --password password -m --query='INSERT INTO default.student_hive FORMAT CSV' < /data/bigdata/hive/student.csv