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