Example usage for org.apache.hadoop.io Writable interface-usage

List of usage examples for org.apache.hadoop.io Writable interface-usage

Introduction

In this page you can find the example usage for org.apache.hadoop.io Writable interface-usage.

Usage

From source file com.asakusafw.compiler.flow.testing.model.ExJoined.java

/**
 * A data model class that represents ex_joined.
 */
@DataModelKind("DMDL")
@Joined(terms = {
        @Joined.Term(source = Ex1.class, mappings = { @Joined.Mapping(source = "sid", destination = "sid1"),

From source file com.asakusafw.compiler.flow.testing.model.ExJoined2.java

/**
 * A data model class that represents ex_joined2.
 */
@DataModelKind("DMDL")
@Joined(terms = {
        @Joined.Term(source = Ex1.class, mappings = { @Joined.Mapping(source = "sid", destination = "sid1"),

From source file com.asakusafw.compiler.flow.testing.model.ExSummarized.java

/**
 * A data model class that represents ex_summarized.
 */
@DataModelKind("DMDL")
@PropertyOrder({ "string", "value", "count" })
@Summarized(term = @Summarized.Term(source = Ex1.class, foldings = {

From source file com.asakusafw.compiler.flow.testing.model.ExSummarized2.java

/**
 * A data model class that represents ex_summarized2.
 */
@DataModelKind("DMDL")
@PropertyOrder({ "key", "value", "count" })
@Summarized(term = @Summarized.Term(source = Ex1.class, foldings = {

From source file com.asakusafw.compiler.flow.testing.model.KeyConflict.java

/**
 * A data model class that represents key_conflict.
 */
@DataModelKind("DMDL")
@PropertyOrder({ "key", "count" })
@Summarized(term = @Summarized.Term(source = Ex1.class, foldings = {

From source file com.asakusafw.compiler.flow.testing.model.Part1.java

/**
 * A data model class that represents part1.
 */
@DataModelKind("DMDL")
@PropertyOrder({ "sid", "value" })
public class Part1 implements DataModel<Part1>, Writable {

From source file com.asakusafw.compiler.flow.testing.model.Part2.java

/**
 * A data model class that represents part2.
 */
@DataModelKind("DMDL")
@PropertyOrder({ "sid", "string" })
public class Part2 implements DataModel<Part2>, Writable {

From source file com.asakusafw.compiler.operator.model.MockFoo.java

/**
 * A data model class that represents mock_foo.
 */
@DataModelKind("DMDL")
@PropertyOrder({ "value" })
public class MockFoo implements DataModel<MockFoo>, MockProjection, Writable {

From source file com.asakusafw.compiler.operator.model.MockHoge.java

/**
 * A data model class that represents mock_hoge.
 */
@DataModelKind("DMDL")
@PropertyOrder({ "value" })
public class MockHoge implements DataModel<MockHoge>, MockProjection, Writable {

From source file com.asakusafw.compiler.operator.model.MockJoined.java

/**
 * A data model class that represents mock_joined.
 */
@DataModelKind("DMDL")
@Joined(terms = { @Joined.Term(source = MockHoge.class, mappings = {
        @Joined.Mapping(source = "value", destination = "hogeValue") }, shuffle = @Key(group = { "value" })),