[APIv2] Rename oozie_job_id
oozie_job_id should be changed to engine_job_id. This patch only changes json responses, the complete change should be done when APIv2 is stable and APIv1 deprecated. Along with this should be a data model change as well. Change-Id: I2ecfbb56d1e53d6b005ae6a52c70576238341da2 Partial-Implements: bp v2-api-experimental-impl
This commit is contained in:
parent
2a3f32be69
commit
21045d3c39
@ -32,6 +32,12 @@ rest = u.RestV2('jobs', __name__)
|
|||||||
v.validate_sorting_job_executions)
|
v.validate_sorting_job_executions)
|
||||||
def jobs_list():
|
def jobs_list():
|
||||||
result = api.job_execution_list(**u.get_request_args().to_dict())
|
result = api.job_execution_list(**u.get_request_args().to_dict())
|
||||||
|
# APIv2: renaming oozie_job_id -> engine_job_id
|
||||||
|
# once APIv1 is deprecated this can be
|
||||||
|
# removed
|
||||||
|
for je in result:
|
||||||
|
je['engine_job_id'] = je['oozie_job_id']
|
||||||
|
del je['oozie_job_id']
|
||||||
return u.render(res=result, name='jobs')
|
return u.render(res=result, name='jobs')
|
||||||
|
|
||||||
|
|
||||||
@ -46,15 +52,20 @@ def jobs_execute(data):
|
|||||||
@acl.enforce("data-processing:job-executions:get")
|
@acl.enforce("data-processing:job-executions:get")
|
||||||
@v.check_exists(api.get_job_execution, id='job_id')
|
@v.check_exists(api.get_job_execution, id='job_id')
|
||||||
def jobs_get(job_id):
|
def jobs_get(job_id):
|
||||||
return u.to_wrapped_dict(api.get_job_execution, job_id)
|
result = u.to_wrapped_dict_no_render(api.get_job_execution, job_id)
|
||||||
|
result['engine_job_id'] = result['oozie_job_id']
|
||||||
|
del result['oozie_job_id']
|
||||||
|
return u.render(result)
|
||||||
|
|
||||||
|
|
||||||
@rest.get('/jobs/<job_id>/refresh-status')
|
@rest.get('/jobs/<job_id>/refresh-status')
|
||||||
@acl.enforce("data-processing:job-executions:refresh_status")
|
@acl.enforce("data-processing:job-executions:refresh_status")
|
||||||
@v.check_exists(api.get_job_execution, id='job_id')
|
@v.check_exists(api.get_job_execution, id='job_id')
|
||||||
def jobs_status(job_id):
|
def jobs_status(job_id):
|
||||||
return u.to_wrapped_dict(
|
result = u.to_wrapped_dict_no_render(api.get_job_execution_status, job_id)
|
||||||
api.get_job_execution_status, job_id)
|
result['engine_job_id'] = result['oozie_job_id']
|
||||||
|
del result['oozie_job_id']
|
||||||
|
return u.render(result)
|
||||||
|
|
||||||
|
|
||||||
@rest.get('/jobs/<job_id>/cancel')
|
@rest.get('/jobs/<job_id>/cancel')
|
||||||
@ -62,7 +73,10 @@ def jobs_status(job_id):
|
|||||||
@v.check_exists(api.get_job_execution, id='job_id')
|
@v.check_exists(api.get_job_execution, id='job_id')
|
||||||
@v.validate(None, v_j_e.check_job_execution_cancel)
|
@v.validate(None, v_j_e.check_job_execution_cancel)
|
||||||
def jobs_cancel(job_id):
|
def jobs_cancel(job_id):
|
||||||
return u.to_wrapped_dict(api.cancel_job_execution, job_id)
|
result = u.to_wrapped_dict_no_render(api.cancel_job_execution, job_id)
|
||||||
|
result['engine_job_id'] = result['oozie_job_id']
|
||||||
|
del result['oozie_job_id']
|
||||||
|
return u.render(result)
|
||||||
|
|
||||||
|
|
||||||
@rest.patch('/jobs/<job_id>')
|
@rest.patch('/jobs/<job_id>')
|
||||||
@ -71,8 +85,11 @@ def jobs_cancel(job_id):
|
|||||||
@v.validate(
|
@v.validate(
|
||||||
v_j_e_schema.JOB_EXEC_UPDATE_SCHEMA, v_j_e.check_job_execution_update)
|
v_j_e_schema.JOB_EXEC_UPDATE_SCHEMA, v_j_e.check_job_execution_update)
|
||||||
def jobs_update(job_id, data):
|
def jobs_update(job_id, data):
|
||||||
return u.to_wrapped_dict(
|
result = u.to_wrapped_dict_no_render(
|
||||||
api.update_job_execution, job_id, data)
|
api.update_job_execution, job_id, data)
|
||||||
|
result['engine_job_id'] = result['oozie_job_id']
|
||||||
|
del result['oozie_job_id']
|
||||||
|
return u.render(result)
|
||||||
|
|
||||||
|
|
||||||
@rest.delete('/jobs/<job_id>')
|
@rest.delete('/jobs/<job_id>')
|
||||||
|
@ -330,10 +330,14 @@ def not_found(error):
|
|||||||
|
|
||||||
|
|
||||||
def to_wrapped_dict(func, id, *args, **kwargs):
|
def to_wrapped_dict(func, id, *args, **kwargs):
|
||||||
|
return render(to_wrapped_dict_no_render(func, id, *args, **kwargs))
|
||||||
|
|
||||||
|
|
||||||
|
def to_wrapped_dict_no_render(func, id, *args, **kwargs):
|
||||||
obj = func(id, *args, **kwargs)
|
obj = func(id, *args, **kwargs)
|
||||||
if obj is None:
|
if obj is None:
|
||||||
e = ex.NotFoundException(
|
e = ex.NotFoundException(
|
||||||
{'id': id}, _('Object with %s not found'))
|
{'id': id}, _('Object with %s not found'))
|
||||||
|
|
||||||
return not_found(e)
|
return not_found(e)
|
||||||
return render(obj.to_wrapped_dict())
|
return obj.to_wrapped_dict()
|
||||||
|
Loading…
Reference in New Issue
Block a user