Is there a way to add custom stats to a requestQueue? I know there is a key/value store for each run, but I don't see a solution for being able to add something like a counter to it as there is no locking or atomic access.
Hi @Ryan A There is no such a feature on RequestQueue. You may want to try propose it in #💫feature-request channel.
To work with statistics as you mentioned on the Platform we usually see scheduled (ex. once in an hour) Runs of custom made Actors that are capable to browse the other Runs' storage and data, do some evaluation on it and then save it to a named KV-store as you mentioned. As in this case as the scheduled Runs is only one, there is a lower chance for running into a race conditions.