aerospike-client-python
aerospike-client-python copied to clipboard
Getting UnsupportedFeature exception, CDT list feature is not supported
I am using Aerospike 3.7.3 and python client 2.0.1
Tested under single as-well-as 2 node cluster.
Appending items to CDT (List) where each item it 1KB. Appending items till the record size reaches 1M. Then incrementing the key.
Throwing below exception after writing few lakh of items.
exception.UnsupportedFeature: (16L, 'CDT list feature is not supported', 'src/main/client/operate.c', 1290)
Also very few times I am getting exception.DeviceOverload: (18L, 'AEROSPIKE_ERR_DEVICE_OVERLOAD', 'src/main/aerospike/as_command.c', 1082)
Every time I clear the keys and re-run, I am getting either of these two exceptions, exception.UnsupportedFeature being the majority.
Hey, please attach reproducible code extracted from your program. Device overload will come up if you're writing faster than the drive can handle. That's a real error being communicated from the server to the client. Are you ingesting a big file?