-
-
Save xman1980/edb98f29cbb9c1e50ea03e42f9eb53f6 to your computer and use it in GitHub Desktop.
A quick and dirty script to dump the cluster/service/role configuration via the Cloudera Manager API http://cloudera.github.io/cm_api/.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
from cm_api.api_client import ApiResource | |
def main(args): | |
cm_host = get(args, 1, "localhost") | |
cm_user = get(args, 2, "admin") | |
cm_pass = get(args, 3, "admin") | |
api = ApiResource(cm_host, username=cm_user, password=cm_pass) | |
dump(api) | |
def dump(api): | |
clusters = api.get_all_clusters() | |
for c in clusters: | |
print "CLUSTER", c.name | |
for s in c.get_all_services(): | |
print " SERVICE", s | |
for rg in s.get_all_role_config_groups(): | |
print " RG", rg, rg.get_config() | |
for r in s.get_all_roles(view="full"): | |
print " RO", r | |
print " ", r.roleConfigGroupRef | |
print " ", r.hostRef | |
def get(l, i, default): | |
try: | |
return l[i] | |
except IndexError: | |
return default | |
if __name__ == '__main__': | |
import sys | |
main(sys.argv) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment