I have a question related to the Map/List operation.
My storage in my app is looking like that:
1.Each Record has one Bin which is Ordered KEY_VALUE Map.
2.Each key in the Map is pointing to a List of 3 elements. [Long,Map,Long].
One Bin For example:
{
“someKey” : [121341241, {“luv”: “1”}, 424535353],
“name”: [324242442, {“st”:333, “dt”: “test”}, 45563646]
…
}
My question is: It is possible to add or set new attribute in the internal Map located in the List ? and if not, what is the best approach in this case? udf?