我正在尝试将我的 hdfs 导出到 Crate.io DB,并且我正在使用 Sqoop 来执行此操作。我已经导入了所需的 .jar 文件,我的 sqoop 文件如下所示:
export
--connect
jdbc:crate://<SERVER-IP>:4200/
--driver
io.crate.client.jdbc.CrateDriver
--table
test
--export-dir
/to/file/in/hdfs
--input-fields-terminated-by
','
--columns
name, age
我的 sqoop 操作运行没有任何错误,但是我的 hdfs 没有任何内容插入到 crate db 中。我试过在 IP 中提到“doc”,但仍然没有成功。
--connect
jdbc:crate://<SERVER-IP>:4200/doc
并交替使用
--table
doc.test
我已经能够通过 Python 库将内容插入到 crate 中,但不能通过 Sqoop。有什么想法我可能在这里做错了吗?