I am getting the error when trying to put an item into the large list. I am using the following things in my project:
Following is the code where error throws up
LargeList llist = client.getClient().getLargeList(new WritePolicy(), key, binName);
llist.update(list);
Solved the issue by upserting the value in the large list one by one instead of a value list.
for(Object listItem: java.util.list){
llist.update(Value.get(listItem))
}