Package org.apache.crunch.types

Examples of org.apache.crunch.types.UnionDeepCopier


    String schemaName = "union" + Base64.encodeBase64URLSafeString(md.digest()).replace('-', 'x');
    Schema schema = Schema.createRecord(schemaName, "", "crunch", false);
    schema.setFields(fields);
    return new AvroType<Union>(Union.class, schema, new UnionRecordToTuple(ptypes),
        new TupleToUnionRecord(schema, ptypes), new UnionDeepCopier(ptypes), null, ptypes);
  }
View Full Code Here


    String schemaName = "union" + Base64.encodeBase64URLSafeString(md.digest()).replace('-', 'x');
    Schema schema = Schema.createRecord(schemaName, "", "crunch", false);
    schema.setFields(fields);
    return new AvroType<Union>(Union.class, schema, new UnionRecordToTuple(ptypes),
        new TupleToUnionRecord(schema, ptypes), new UnionDeepCopier(ptypes), null, ptypes);
  }
View Full Code Here

TOP

Related Classes of org.apache.crunch.types.UnionDeepCopier

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.