Acessing `write-q` using python-client

I am trying to monitor the write-q using python client. For this particular task i am using asinfo which is not giving me the infoemation regarding that. what may be the possible options using python client.

Hi @Karan190 welcome to the community!

You can use the info_all operation with the command namespace/<namespace-name> and then parse for the storage-engine.device[ix].write_q statistic.

the code would look like this for a namespace named test:

import aerospike

config = {'hosts': [('127.0.0.1', 3000)] }
client = aerospike.client(config).connect()

response = client.info_all('namespace/test')
client.close()
1 Like

Thank you. Now I have one more doubt, I have configured my cluster in community addition, now I want the write_q have some value other than 0, so I am inserting records using python client and as it is not sending bulk data, the write_q is not increasing. How I can send the records for the testing ?

Increasing number of records not working for me. I have to test it for going beyond max-write-cache. could you help me how I can input bulk records to test my cluster @aanderson

The asbench benchmarking tool should be able to help you with that.

1 Like

ok. trying to use that. thank you @aanderson

This topic was automatically closed 84 days after the last reply. New replies are no longer allowed.