I am facing the same issue while performing write operation to aerspike. com.aerospike.client.AerospikeException: Error 22,1,30000,0,0,BB98EADF34CDF02 10.30.3.82 3000: Operation not allowed at this time at com.aerospike.client.command.WriteCommand.parseResult(WriteCommand.java:75) at com.aerospike.client.command.SyncCommand.execute(SyncCommand.java:103)
public <T> boolean writeToAerospike(String key, List<T> data) {
int expiration = 2;
try {
Key aerospikeKey = new Key(namespace, setName, key);
WritePolicy writePolicy = new WritePolicy();
writePolicy.expiration = expiration;
Bin bin = new Bin(bins, l2rData);
aerospikeClient.put(writePolicy, aerospikeKey, bin);
} catch (Exception e) {
LOGGER.error("Error while writing data to aerospike", e);
return false;
}
return true;
}
Can anyone pls help in resolving this ?