Failed to update data table (some times), getting - Data store unknown error
Hi
We are trying to update data table during run time and we are encountering the following exception some times. We observed like after 3 or 4 continuous operations we are getting this error.
java.util.concurrent.ExecutionException: java.lang.RuntimeException: com.thingworx.common.exceptions.DataAccessException: [1,018] Data store unknown error: [Error occurred while accessing the data provider.]
The following is the data table structure snippet, we have 2 string columns as primary key and the max number of records are less than 50 in this data table.

The following is the service we are using to update the data table.
var params = {
tags : tags,
source : me.name,
values : values,
location : location
};
// AddOrUpdateDataTableEntry(tags:TAGS, source:STRING("me.name"), values:INFOTABLE(IIOT_EN_DT_ResponsiblePerson), location:LOCATION):STRING
var id = Things["IIOT_EN_DT_ResponsiblePerson"].AddOrUpdateDataTableEntry(params);
It is a show stopper for us now. Highly appreciate if you have any recommendations .

