}
@Override
public FSDataOutputStream create(Path f, FsPermission permission, boolean overwrite, int bufferSize, short replication, long blockSize, Progressable progress)
throws IOException {
Span span = Trace.start("create");
try {
return impl.create(f, overwrite, bufferSize, replication, blockSize, progress);
} finally {
span.stop();
}
}