Posts

Showing posts with the label azure-table-storage

TableStorage queryEntities sometimes returning 0 entries but no error

TableStorage queryEntities sometimes returning 0 entries but no error TableStorage & Nodejs Using the function "queryEntities" sometimes result.entries.length is 0, even when I am pretty sure there are a lot of entries in the database. The "where" parameters are ok, but sometimes (maybe one every 100) it returns 0 entries. Not error returned. Just 0 entries. And in my function that's causing troubles. My theory is that the database sometimes is saturated because this function executes every 10 seconds and maybe sometimes before one finish another one starts and both operate over the same table, and instead of error it returns a length 0 , what is something awful. There is any way to resolve this? Shouldn't it return error? You could measure if your network has any package lost when doing the queries against the storage – Marcus Höglund Jun 30 at 10:41 ...