use of org.apache.heron.api.windowing.evictors.WatermarkCountEvictionPolicy in project heron by twitter.
the class WindowManagerTest method testExpireThresholdWithWatermarkCountEvictionPolicy.
@Test
@SuppressWarnings("rawtypes")
public void testExpireThresholdWithWatermarkCountEvictionPolicy() throws Exception {
int windowLength = WindowManager.EXPIRE_EVENTS_THRESHOLD;
EvictionPolicy watermarkCountEvictionPolicy = new WatermarkCountEvictionPolicy(windowLength);
testEvictBeforeWatermarkForWatermarkEvictionPolicy(watermarkCountEvictionPolicy, windowLength);
}
Aggregations