Hello.
I am trying to use BatchGet operation with filter expression. And if at least one bin of the set does not match the conditions, I get error ““ResultCode: FILTERED_OUT, Iteration: 0, InDoubt: false, Node: : Transaction filtered out””
The same conditions of filter work fine when used in a Query.
If a key in the list you provide does not match the criteria, that key will be filtered out and the returned value will be nil. The error lets you know what happened.
That’s what is supposed to happen. You get some keys back where the expression applied, and you get an error that tells you the reason some others were not was that the condition didn’t match. What did you expect to get?
I expect to return rows for the specified ids that match the condition.
In the previous example, this is a line with id = 2
But instead I get FILTERED_OUT error
Sorry for my late response, the forum didn’t send me notifications. As noted above, you get your results, in addition to an error that tells you some keys where found but filtered.
Is it your expectation that the error about filtered records should not be returned?