Package com.urbanairship.datacube.backfill

Examples of com.urbanairship.datacube.backfill.HBaseBackfill


                    throw new IOException(e);
                }
            }
        };
       
        HBaseBackfill backfill = new HBaseBackfill(getTestUtil().getConfiguration(),
                backfillCallback, LIVE_CUBE_TABLE, SNAPSHOT_TABLE, BACKFILL_TABLE, CF,
                LongOp.LongOpDeserializer.class);
        boolean success = backfill.runWithCheckedExceptions();
        Assert.assertTrue(success);
       
        Assert.assertEquals(0L, cubeWrapper.getHourCount(midnight.plusHours(0)));
        Assert.assertEquals(1L, cubeWrapper.getHourCount(midnight.plusHours(1)));
        Assert.assertEquals(2L, cubeWrapper.getHourCount(midnight.plusHours(2)));
View Full Code Here

TOP

Related Classes of com.urbanairship.datacube.backfill.HBaseBackfill

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.