oozie http rest api를 사용하여 python으로 job 정보 접근
#!/usr/bin/python
import json
import urllib2
s_url = "http://localhost:11000/oozie/v2/job/000001-1434234923943294-oozie-test-W?show=info"
request = urllib2.Request(s_url)
print urllib2.urlopen(request).read()
'NoSQL > oozie' 카테고리의 다른 글
oozie server tuning (0) | 2017.03.06 |
---|---|
oozie http api로 job 실행 (0) | 2017.03.06 |
oozie jar (0) | 2017.03.03 |
oozie bundle (0) | 2017.03.03 |
oozie current() versus latest() comparison (0) | 2017.03.03 |