我正在使用 LDT 地图,起初出现此错误。
com.aerospike.client.AerospikeException: Error Code 1424: LDT-Sub Record Create Error
我能够在 in 的帮助下将其删除,ldt-enabled true
但aerospike.conf
现在我遇到了
com.aerospike.client.AerospikeException: Error Code 1422: LDT-Sub Record Open Error
代码片段:
for (Entry<String, Map<String, Object>> myLdtBin: myLdtMap.entrySet()) {
LargeMap lmap = client.getLargeMap(myWritePolicy, myKey, myLdtBin.getKey() , null);
lmap.put(myLdtBin.getValue()); //<-- Error here
}
任何指针?