Package com.ebay.erl.mobius.core.datajoin

Examples of com.ebay.erl.mobius.core.datajoin.DataJoinKeyPartitioner


*/
public class DataJoinKeyPartitionerTest {

  @Test
  public void testPartition() {
    DataJoinKeyPartitioner partitioner = new DataJoinKeyPartitioner();
   
    DataJoinKey djKey1 = new DataJoinKey(Byte.valueOf("1"), new Text("test value"));
    DataJoinKey djKey2 = new DataJoinKey(Byte.valueOf("1"), new Text("test value"));
    DataJoinKey djKey3 = new DataJoinKey(Byte.valueOf("1"), new Text("other test value"));
   
    System.out.println(partitioner.getPartition(djKey1, null, 999));
    System.out.println(partitioner.getPartition(djKey2, null, 999));
    System.out.println(partitioner.getPartition(djKey3, null, 999));
   
    Assert.assertEquals(partitioner.getPartition(djKey1, null, 999),
        partitioner.getPartition(djKey2, null, 999));
   
    Assert.assertNotSame(partitioner.getPartition(djKey1, null, 999),
        partitioner.getPartition(djKey3, null, 999));
  }
View Full Code Here

TOP

Related Classes of com.ebay.erl.mobius.core.datajoin.DataJoinKeyPartitioner

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.