要将txt文件导入到Hive中,需要先创建一个外部表,然后将txt文件复制到HDFS中,最后加载数据到Hive表中。
以下是一个示例:
CREATE EXTERNAL TABLE my_table (
column1 INT,
column2 STRING
)
ROW FORMAT DELIMITED
FIELDS TERMINATED BY ','
LOCATION '/path/to/your/txt/file';
hadoop fs -put /path/to/your/local/txt/file /path/to/your/hdfs/directory
LOAD DATA INPATH '/path/to/your/hdfs/directory/your_txt_file.txt' INTO TABLE my_table;
这样就可以将txt文件中的数据导入到Hive表中了。