use of alluxio.worker.block.meta.StorageTierAllocatorView in project alluxio by Alluxio.
the class BlockMetadataAllocatorView method initializeView.
@Override
public void initializeView() {
// iteratively create all StorageTierViews and StorageDirViews
for (StorageTier tier : mMetadataManager.getTiers()) {
StorageTierAllocatorView tierView = new StorageTierAllocatorView(tier, mUseReservedSpace);
mTierViews.add(tierView);
mAliasToTierViews.put(tier.getTierAlias(), tierView);
}
}
Aggregations