踩坑:fileSystem.copyToLocalFile两个参数 空指针异常

踩坑:fileSystem.copyToLocalFile(Path src, Path dst) 空指针异常

标签(空格分隔): 踩坑


在网上一搜,直接改成fileSystem.copyToLocalFile(false,xx,xx,true)即可。

但是基本上就这一句,也不说为啥,还是自己查API吧:

public void copyToLocalFile(boolean delSrc,
                   Path src,
                   Path dst,
                   boolean useRawLocalFileSystem)
                     throws IOException

The src file is under this filesystem, and the dst is on the local disk. Copy it from the remote filesystem to the local dst name. delSrc indicates if the src will be removed or not. useRawLocalFileSystem indicates whether to use RawLocalFileSystem as the local file system or not. RawLocalFileSystem is non checksumming, So, It will not create any crc files at local.

Parameters:
delSrc - whether to delete the src
src - path
dst - path
useRawLocalFileSystem - whether to use RawLocalFileSystem as local file system or not.

Throws:
IOException - for any IO error

src文件位于此文件系统下,dst位于本地磁盘上。将其从远程文件系统复制到本地dst名称。delSrc指示src是否会被删除。useRawLocalFileSystem指示是否使用RawLocalFileSystem作为本地文件系统。RawLocalFileSystem不是校验和,所以它不会在本地创建任何crc文件。

  • delSrc : 是否删除src
  • useRawLocalFileSystem:是否使用RawLocalFileSystem作为本地文件系统。

你可能感兴趣的:(Hadoop学习以及踩坑记录)