Push message crash aPI

Hi All
Has the api ever crashed when you pushing messages > 8000 users

It may happen depending on how you are pushing the messages and scaling Parse Server. You can try to tweak the push queue size with:

new ParseServer({
  // ...,
  push: {
    // ...,
    queueOptions: {
      batchSize: 100 // Default value
    }
  }
})

It can also happen many of these 8000 users sending some requests back to your server at the same time, and the server not being able to handle the spike. For this, I’d try to schedule the pushes in batches.