Description
Current create code
@Override public FSDataOutputStream create(Path f, FsPermission permission, EnumSet<CreateFlag> flags, int bufferSize, short replication, long blockSize, Progressable progress, ChecksumOpt checksumOpt) throws IOException { return fs.create(f, permission, flags, bufferSize, replication, blockSize, progress); }
does not propagate ChecksumOpt. However, it should be up to the wrapped FS implementation (default is to ignore).
Attachments
Attachments
Issue Links
- is broken by
-
HDFS-6928 'hdfs put' command should accept lazyPersist flag for testing
- Closed