Is it possible to retrieve data from multiple bins (LDT and regular) in the same call?

Here is the structure of my set:


KEY | NAME | HISTORY (LDT) |

For a given key, I want to retrieve values from NAME and HISTORY bins. All the examples I found shows how to retrieve either simple bins, or LDT bins. But I could not find anything which does both in a single operation.

Is it possible to retrieve both bins (simple and LDT bins) in one operation?

No, it is not possible to retrieve LDT bins and regular bins in the same call.

Amit,

There is no directly client API for doing this as Brian Suggested. But you can try to use UDF to get the values back from normal bins and LDT bins

HTH

– R

Thanks guys, I will explore the UDF option.