到目前为止,我已将 ContextBroker 配置为将数据发送到 Cygnus,而 Cygnus 又以默认名称将数据保存在数据库中。
但是,如果我想使用特定表来定位特定数据库怎么办?
我知道我必须设置:
dbName=<fiware-service>
tableName=<fiware-servicePath>_<entityId>_<entityType>
我不知道该文件在哪里,并且我知道它不在 /etc/sysconfig/contextBroker 中,因为该文件夹不存在。
EDIT1:这是我的更新上下文:
(curl localhost:1026/NGSI10/updateContext -s -S --header 'Content-Type: application/json' --header 'Accept: application/json' --header 'Fiware-Service: FiwareDatabase' --header 'Fiware-ServicePath: /AllSensors' -d @- ) <<EOF
{
"contextElements": [
{
"type": "Television",
"isPattern": "false",
"id": "TV2",
"attributes": [
{
"name": "channel",
"type": "integer",
"value": "14"
},
{
"name": "volume",
"type": "float",
"value": "9"
}
]
}
],
"updateAction": "APPEND"
}
EOF
正如我所说,表确实会自动创建,但数据库不会。