use of com.twitter.heron.dlog.DLOutputStream in project incubator-heron by apache.
the class DlogStorage method openOutputStream.
protected OutputStream openOutputStream(String path) throws IOException {
DistributedLogManager dlm = namespace.openLog(path);
AppendOnlyStreamWriter writer = dlm.getAppendOnlyStreamWriter();
return new DLOutputStream(dlm, writer);
}
use of com.twitter.heron.dlog.DLOutputStream in project incubator-heron by apache.
the class DLUploader method openOutputStream.
protected OutputStream openOutputStream(String pkgName) throws IOException {
DistributedLogManager dlm = namespace.openLog(pkgName);
AppendOnlyStreamWriter writer = dlm.getAppendOnlyStreamWriter();
return new DLOutputStream(dlm, writer);
}
Aggregations