8687888990919293
try { return FormatFactory.get().getOutputFormat( FlumeConfiguration.get().getDefaultOutputFormat()); } catch (FlumeSpecException e) { LOG.warn("format from conf file not found, using default", e); return new RawOutputFormat(); } }
54555657585960
this(fname, null); } public TextFileSink(String fname, OutputFormat fmt) { this.fname = fname; this.fmt = (fmt == null) ? new RawOutputFormat() : fmt; }
129130131132133134135136
56575859606162
8889909192939495
149150151152153154155156
130131132133134135136137