Package com.cloudera.cdk.morphline.stdlib

Examples of com.cloudera.cdk.morphline.stdlib.DropRecordBuilder


   * Compiles the given morphline config using the given morphline context. The returned command
   * will feed records into finalChild or into /dev/null if finalChild is null.
   */
  public Command compile(Config morphlineConfig, MorphlineContext morphlineContext, Command finalChild) {
    if (finalChild == null) {
      finalChild = new DropRecordBuilder().build(null, null, null, morphlineContext);
    }
    return new PipeBuilder().build(morphlineConfig, null, finalChild, morphlineContext);
  }
View Full Code Here

TOP

Related Classes of com.cloudera.cdk.morphline.stdlib.DropRecordBuilder

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.