You are viewing a plain text version of this content. The canonical link for it is here.
Posted to hdfs-dev@hadoop.apache.org by "Ming Ma (JIRA)" <ji...@apache.org> on 2017/09/15 21:06:00 UTC

[jira] [Created] (HDFS-12473) Change host JSON file format

Ming Ma created HDFS-12473:
------------------------------

             Summary: Change host JSON file format
                 Key: HDFS-12473
                 URL: https://issues.apache.org/jira/browse/HDFS-12473
             Project: Hadoop HDFS
          Issue Type: Bug
            Reporter: Ming Ma


The existing host JSON file format doesn't have a top-level token.

{noformat}
  {"hostName": "host1"}
  {"hostName": "host2", "upgradeDomain": "ud0"}
  {"hostName": "host3", "adminState": "DECOMMISSIONED"}
  {"hostName": "host4", "upgradeDomain": "ud2", "adminState": "DECOMMISSIONED"}
  {"hostName": "host5", "port": 8090}
  {"hostName": "host6", "adminState": "IN_MAINTENANCE"}
  {"hostName": "host7", "adminState": "IN_MAINTENANCE", "maintenanceExpireTimeInMS": "112233"}
{noformat}


Instead, to conform with the JSON standard it should be like

{noformat}
[
  {"hostName": "host1"},
  {"hostName": "host2", "upgradeDomain": "ud0"},
  {"hostName": "host3", "adminState": "DECOMMISSIONED"},
  {"hostName": "host4", "upgradeDomain": "ud2", "adminState": "DECOMMISSIONED"},
  {"hostName": "host5", "port": 8090},
  {"hostName": "host6", "adminState": "IN_MAINTENANCE"},
  {"hostName": "host7", "adminState": "IN_MAINTENANCE", "maintenanceExpireTimeInMS": "112233"}
]
{noformat}




--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

---------------------------------------------------------------------
To unsubscribe, e-mail: hdfs-dev-unsubscribe@hadoop.apache.org
For additional commands, e-mail: hdfs-dev-help@hadoop.apache.org