我在Cloudera Manager Navigator REST API中工作,其中提取结果正常,但无法获得任何嵌套值。
数据类型如下所示。
{
"parentPath": "String",
"customProperties": "Map[string,string]",
"sourceType": "String",
"entityType": "String"
}
数据应该像
{
"parentPath": "abcd",
"customProperties": {
"nameservice" : "xyz"
},
"sourceType": "rcs",
"entityType": "ufo"
}
但我得到的键值结果如下。
parentPath :abcd
customProperties : null
sourceType : rcs
entityType : ufo
在上面的响应数据中," customProperties"将带有一个空值,它应该返回一个包含["nameservice" : "xyz"]
的地图对象。这是以下代码段的问题。
MetadataResultSet metadataResultSet = extractor.extractMetadata(null, null,"sourceType:HDFS", "identity:*");
Iterator<Map<String, Object>> entitiesIt = metadataResultSet.getEntities().iterator();
while(entitiesIt.hasNext()){
Map<String, Object> result = entitiesIt.next();
for(String data : result.keySet()){
System.out.println(" key:"+data+" value:"+result.get(data));
}
}
您能否建议我如何获取数据类型复杂的嵌套值。
答案 0 :(得分:0)
你检查了数据在导航器ui上的样子吗?您可以先验证一次,并在浏览器中尝试使用cloudera / entities / entity-id rest API来检查json响应的来源