我正在将Cygnus与Mongo一起使用,并使用它来检索历史数据。
在当前实施的cygnus mongo sink中,属性元数据不存储在数据库中。所以我更新了cygnus以便能够存储属性元数据。 但是当我使用STH-comet来检索历史时,API显然不支持检索属性元数据。
我错过了某种配置,或者API不支持属性元数据,因为我从STH-comet获得的响应是:
{
"contextResponses": [
{
"contextElement": {
"attributes": [
{
"name": "humidity",
"values": [
{
"recvTime": "2017-03-08T08:06:11.463Z",
"attrType": "Number",
"attrValue": "999"
},
{
"recvTime": "2017-03-08T08:10:54.199Z",
"attrType": "Number",
"attrValue": "3.06"
}
]
}
],
"id": "Room1",
"isPattern": false,
"type": "Room"
},
"statusCode": {
"code": "200",
"reasonPhrase": "OK"
}
}
]
}
在mongoDB数据库中我有这个内容:
{ "_id" : ObjectId("58bfbb7c973c5c22d258cffc"), "recvTime" : ISODate("2017-03-08T08:06:11.463Z"), "attrName" : "humidity", "attrType" : "Number", "attrValue" : "999", "attrMetadata" : [ ] }
{ "_id" : ObjectId("58bfbc93973c5c22d258cffd"), "recvTime" : ISODate("2017-03-08T08:10:54.199Z"), "attrName" : "humidity", "attrType" : "Number", "attrValue" : "3.06", "attrMetadata" : [ { "name" : "unit", "type" : "Text", "value" : "voltage" } ] }
如果API不支持检索属性元数据,是否可以添加此功能?
谢谢&最好的问候。
答案 0 :(得分:1)
STH和Cygnus在MongoDB中存储的信息是一致的,包括原始信息和聚合信息。从这个意义上讲,由于Cygnus最初不支持NGSIMongoSink
中的属性元数据(负责以原始格式存储信息),STH也不支持其原始API中的属性元数据。
只要您为此目的扩展了Cygnus功能,您就必须扩展STH API。