Package com.netflix.suro.sink.remotefile.formatter

Examples of com.netflix.suro.sink.remotefile.formatter.DynamicRemotePrefixFormatter


            LocalFileSink localFileSink,
            RemotePrefixFormatter prefixFormatter,
            int concurrentUpload,
            boolean batchUpload) {
        this.localFileSink = localFileSink;
        this.prefixFormatter = prefixFormatter == null ? new DynamicRemotePrefixFormatter("date(yyyyMMdd)") : prefixFormatter;
        this.batchUpload = batchUpload;

        Preconditions.checkNotNull(localFileSink, "localFileSink is needed");

        uploader = Executors.newFixedThreadPool(concurrentUpload == 0 ? 5 : concurrentUpload);
View Full Code Here

TOP

Related Classes of com.netflix.suro.sink.remotefile.formatter.DynamicRemotePrefixFormatter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.