I am facing the following problem regarding FIWARE Orion Context Broker, I hope someone has an idea about it.
I store records in FIWARE Orion CB, version 1.2.0, running in a Docker instance and in one type I receive the following response after posting a GET call to http://mywebsite.eu:1016/v2/types/MyTYPE
{
"attrs": {
"cid": {
"types": [
"String"
]
},
"datetime": {
"types": [
"String"
]
},
"humidity": {
"types": [
"Float"
]
},
"luminosity": {
"types": [
"Integer"
]
},
"temperature": {
"types": [
"Float"
]
}
},
"count": 55811
}
As you can see the “count” is 55811. But, when I send another GET call to http://mywebsite.eu:1026/v2/entities?type=MyTYPE&offset=54908&limit=1, I receive the following:
[
{
"id": ".*",
"type": "MyTYPE"
}
]
From that number of offset (54908) and up, the response is the same. I’ve checked space in my server and there is plenty of it, so it is not a matter of disk space. I’ve checked that data is going to Orion CB the same way as before from my Raspberries. So, my question is if there is an upper limit for records per type that Orion can store and when this limit is reached I should change type. Maybe there is something that I am missing and any advice you can give me will help me a lot.
mongodump
provides) to debug on this. Would it be feasible? – fgalan