use of org.apache.hadoop.yarn.server.timeline.MemoryTimelineStore in project hadoop by apache.
the class TestApplicationHistoryManagerOnTimelineStore method createStore.
public static TimelineStore createStore(int scale) throws Exception {
TimelineStore store = new MemoryTimelineStore();
prepareTimelineStore(store, scale);
return store;
}
use of org.apache.hadoop.yarn.server.timeline.MemoryTimelineStore in project hadoop by apache.
the class TestMemoryTimelineStore method setup.
@Before
public void setup() throws Exception {
store = new MemoryTimelineStore();
store.init(new YarnConfiguration());
store.start();
loadTestEntityData();
loadVerificationEntityData();
loadTestDomainData();
}
Aggregations