Output says Datastore queue is being filled?

Howdy

I keep getting a warning that tells me that my request limit has been filled and it’s filling up a queue. I’m pretty sure it’s dropping requests.

I’ve been keeping track of how many UpdateAsync’s I do:

theres a hard cap of 1 per 6 seconds per key, do you have more than that?

I just checked my code and it waits 6.5 seconds always

What’s your question here? You haven’t posted one other than the title which then yes, your output is saying that your DataStore queue is getting filled.

If you’re trying to figure out why your DataStore requests are being queued, your operations are going over-limitations. You’re thus going over budget or making too many calls. Please post your code so that it can be reviewed and diagnosed. Can’t do much with a lack of information.

I highly advise making your auto save time 10+ This will stop so many saves queuing up and prevents the requests being full. At LEAST make it 10

Like what @colbert2677 said, you queue is being filled and you are calling to much. What data store are you using, maybe Datastore2 will work better, here is an article link in dev forum:

How to use DataStore2 - Data Store caching and data loss prevention

1 Like