本文整理汇总了Python中userinterface.Client.retryTask方法的典型用法代码示例。如果您正苦于以下问题:Python Client.retryTask方法的具体用法?Python Client.retryTask怎么用?Python Client.retryTask使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类userinterface.Client
的用法示例。
在下文中一共展示了Client.retryTask方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: IN
# 需要导入模块: from userinterface import Client [as 别名]
# 或者: from userinterface.Client import retryTask [as 别名]
files.append(tmpLFN)
print
print 'found {0} lost files -> {1}'.format(len(files), ','.join(files))
s,jediTaskID = taskBuffer.resetFileStatusInJEDI('',True,options.ds,files,[],options.dryRun)
if options.dryRun:
sys.exit(0)
if s:
if options.resurrectDS:
sd,so = taskBuffer.querySQLS('SELECT datasetName FROM ATLAS_PANDA.JEDI_Datasets WHERE jediTaskID=:id AND type IN (:t1,:t2)',
{':id': jediTaskID, ':t1': 'output', ':t2': 'log'})
rc = RucioClient()
for datasetName, in so:
for i in range(3):
try:
scope, name = rucioAPI.extract_scope(datasetName)
rc.get_did(scope, name)
break
except DataIdentifierNotFound:
print 'resurrect {0}'.format(datasetName)
rc.resurrect([{'scope': scope, 'name': name}])
try:
rc.set_metadata(scope, name, 'lifetime', None)
except:
pass
print Client.retryTask(jediTaskID, noChildRetry=options.noChildRetry)[-1][-1]
print 'done for jediTaskID={0}'.format(jediTaskID)
else:
print 'failed'