We need to test our infrastructure for resilience ( up to hundreds of thousands of requests per second) and one of the elements in the architecture is google cloud datastore. One of the tests I need to perform is how many entities can be written in a second.
There is a code example here by Google to insert and list elements, but I find that this is slow to write one entity (one or two seconds per insert), even paralelising them in a bash script, it takes quite a bit of time, both from outside of the infrastructure and inside.
Is there any way to test the datastore directly where thousands of requests can be sent per second? Preferably in javascript.
I am not a javascript programmer myself, so apologies if this questions comes across as a little obvious - I hope not.