public static RemoteServiceSet getLocalServiceSet(){
return new RemoteServiceSet(new LocalCache(), new LocalClusterCoordinator());
}
public static RemoteServiceSet getServiceSetWithFullCache(DrillConfig config, BufferAllocator allocator) throws Exception{
ICache c = new ICache(config, allocator, true);
return new RemoteServiceSet(c, new LocalClusterCoordinator());
}