|
|
@ -250,30 +250,30 @@ public class UsersService extends BaseService { |
|
|
|
String oldResourcePath = HadoopUtils.getHdfsDataBasePath() + "/" + oldTenant.getTenantCode() + "/resources"; |
|
|
|
String oldResourcePath = HadoopUtils.getHdfsDataBasePath() + "/" + oldTenant.getTenantCode() + "/resources"; |
|
|
|
String oldUdfsPath = HadoopUtils.getHdfsUdfDir(oldTenant.getTenantCode()); |
|
|
|
String oldUdfsPath = HadoopUtils.getHdfsUdfDir(oldTenant.getTenantCode()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (HadoopUtils.getInstance().exists(oldResourcePath)){ |
|
|
|
String newResourcePath = HadoopUtils.getHdfsDataBasePath() + "/" + newTenantCode + "/resources"; |
|
|
|
String newResourcePath = HadoopUtils.getHdfsDataBasePath() + "/" + newTenantCode + "/resources"; |
|
|
|
String newUdfsPath = HadoopUtils.getHdfsUdfDir(newTenantCode); |
|
|
|
String newUdfsPath = HadoopUtils.getHdfsUdfDir(newTenantCode); |
|
|
|
|
|
|
|
|
|
|
|
//file resources list
|
|
|
|
//file resources list
|
|
|
|
List<Resource> fileResourcesList = resourceMapper.queryResourceCreatedByUser(userId, 0); |
|
|
|
List<Resource> fileResourcesList = resourceMapper.queryResourceCreatedByUser(userId, 0); |
|
|
|
if (CollectionUtils.isNotEmpty(fileResourcesList)) { |
|
|
|
if (CollectionUtils.isNotEmpty(fileResourcesList)) { |
|
|
|
for (Resource resource : fileResourcesList) { |
|
|
|
for (Resource resource : fileResourcesList) { |
|
|
|
HadoopUtils.getInstance().copy(oldResourcePath + "/" + resource.getAlias(), newResourcePath, false, true); |
|
|
|
HadoopUtils.getInstance().copy(oldResourcePath + "/" + resource.getAlias(), newResourcePath, false, true); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//udf resources
|
|
|
|
//udf resources
|
|
|
|
List<Resource> udfResourceList = resourceMapper.queryResourceCreatedByUser(userId, 1); |
|
|
|
List<Resource> udfResourceList = resourceMapper.queryResourceCreatedByUser(userId, 1); |
|
|
|
if (CollectionUtils.isNotEmpty(udfResourceList)) { |
|
|
|
if (CollectionUtils.isNotEmpty(udfResourceList)) { |
|
|
|
for (Resource resource : udfResourceList) { |
|
|
|
for (Resource resource : udfResourceList) { |
|
|
|
HadoopUtils.getInstance().copy(oldUdfsPath + "/" + resource.getAlias(), newUdfsPath, false, true); |
|
|
|
HadoopUtils.getInstance().copy(oldUdfsPath + "/" + resource.getAlias(), newUdfsPath, false, true); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//Delete the user from the old tenant directory
|
|
|
|
|
|
|
|
String oldUserPath = HadoopUtils.getHdfsDataBasePath() + "/" + oldTenant.getTenantCode() + "/home/" + userId; |
|
|
|
|
|
|
|
HadoopUtils.getInstance().delete(oldUserPath, true); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//Delete the user from the old tenant directory
|
|
|
|
|
|
|
|
String oldUserPath = HadoopUtils.getHdfsDataBasePath() + "/" + oldTenant.getTenantCode() + "/home/" + userId; |
|
|
|
|
|
|
|
HadoopUtils.getInstance().delete(oldUserPath, true); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//create user in the new tenant directory
|
|
|
|
//create user in the new tenant directory
|
|
|
|
String newUserPath = HadoopUtils.getHdfsDataBasePath() + "/" + newTenant.getTenantCode() + "/home/" + user.getId(); |
|
|
|
String newUserPath = HadoopUtils.getHdfsDataBasePath() + "/" + newTenant.getTenantCode() + "/home/" + user.getId(); |
|
|
|