如何在kettle中解压并导入.tar.gz文件?
我试图弄清楚如何创建作业/转换来解压缩和加载 .tar.gz 文件。有人对让它发挥作用有什么建议吗?
I am trying to figure out how to create a job/transformation to uncompress and load a .tar.gz file. Does anyone have any advice for getting this to work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您想读取压缩的文本文件吗?
只需在转换中的文本文件输入步骤中指定文件 - 并指定压缩方式 (GZip)。 Kettle可以直接读取压缩文件。
如果您确实需要解压缩文件,则使用作业步骤 - 不确定是否有本机解压缩,但如果没有,只需使用 shell 脚本步骤。
you want to read a text file that is compressed?
Just specify the file in the text file input step in the transformation - and specify the compression (GZip). Kettle can read directly from compressed files.
If you do need the file uncompressed then use a job step - not sure if there is a native uncompress, but if not just use a shell script step.
Kettle中没有这样的组件来解压缩我发现的tar.gz文件。
但是,如果我们以 gizip 格式压缩 csv 文件文本,我们可以使用 gzip 输入组件。
There is not such component in kettle to uncompress the tar.gz file i found.
But if we have the csv file text compressed in gizip format we can use gzip input component.