I am using a udf which creates a new record with a bin. This is the function:
function insertSegmentBuilder(rec, uid, segment)
if not aerospike:exists(rec) then
rec['uid'] = uid
local segmentsList = list()
list.append(segmentsList, segment)
rec['segments'] = segmentList
aerospike:create(rec)
end
end
I am seeing some warnings in the log which says:
May 19 2015 20:08:51 GMT: WARNING (udf): (udf_aerospike.c::117) udf_aerospike_delbin: Invalid Operation [Bin name(segments) not found of delete]... Fail
I am not sure how adding a bin for a user would call the udf_aerospike_delbin? Do you guys know what could cause this issue?
Thanks, Phu