private OrderedPair<SHostVO, String> allocBucketStorageHost(String bucketName, String overrideName) {
//SHostDao shostDao = new SHostDao();
MHostVO mhost = mhostDao.findById(ServiceProvider.getInstance().getManagementHostId());
if (mhost == null)
throw new OutOfServiceException("Temporarily out of service");
if (mhost.getMounts().size() > 0) {
Random random = new Random();
MHostMountVO[] mounts = (MHostMountVO[])mhost.getMounts().toArray();
MHostMountVO mount = mounts[random.nextInt(mounts.length)];