本文整理汇总了Java中org.apache.drill.exec.store.schedule.EndpointByteMap类的典型用法代码示例。如果您正苦于以下问题:Java EndpointByteMap类的具体用法?Java EndpointByteMap怎么用?Java EndpointByteMap使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
EndpointByteMap类属于org.apache.drill.exec.store.schedule包,在下文中一共展示了EndpointByteMap类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createByteMap
import org.apache.drill.exec.store.schedule.EndpointByteMap; //导入依赖的package包/类
private EndpointByteMap createByteMap() {
EndpointByteMap endpointByteMap = new EndpointByteMapImpl();
Set<DrillbitEndpoint> usedEndpoints = Sets.newHashSet();
while (usedEndpoints.size() < 3) {
usedEndpoints.add(getRandom(endpoints));
}
for (DrillbitEndpoint ep : usedEndpoints) {
endpointByteMap.add(ep, FILE_SIZE);
}
return endpointByteMap;
}
示例2: getByteMap
import org.apache.drill.exec.store.schedule.EndpointByteMap; //导入依赖的package包/类
@Override
public EndpointByteMap getByteMap() {
return byteMap;
}
示例3: setEndpointByteMap
import org.apache.drill.exec.store.schedule.EndpointByteMap; //导入依赖的package包/类
public void setEndpointByteMap(EndpointByteMap byteMap) {
this.byteMap = byteMap;
}
示例4: runInner
import org.apache.drill.exec.store.schedule.EndpointByteMap; //导入依赖的package包/类
@Override
protected Void runInner() throws Exception {
EndpointByteMap ebm = bmb.getEndpointByteMap(rgi);
rgi.setEndpointByteMap(ebm);
return null;
}