You can use Cloud Pub/Sub does work as a distributed queue. So does TaskQueues.
Re-reading your requirements, I think it's the "10ms" message delivery latency. You can get there at the median, but not in the tail, with these services where you would expect >10ms end-to-end latency. If you need 10ms latency in the tail (or 10ms for 99.99% of your requests), you may have to implement your own service, likely sacrificing some availability or durability relative to both of the managed offerings. A popular piece of software there is RabbitMQ. You can also tune Apache Kafka to go that low, particularly, if you are willing to sacrifice replication and are willing to run it in the same zone as you application. I hear good things about Redis, as well. Might I suggest you start with TaskQueues and see if they get you close enough? On Sun, Nov 19, 2017 at 8:55 AM, Piyush Katariya <[email protected] > wrote: > Thanks for the reply. > > No I dont need Pub/sub capabilities, as I mentioned explicitly I need > distributed queue > > I will be hosting subscribers code in GAE. > > > -- > You received this message because you are subscribed to a topic in the > Google Groups "Google App Engine" group. > To unsubscribe from this topic, visit https://groups.google.com/d/ > topic/google-appengine/D13aR1woYXA/unsubscribe. > To unsubscribe from this group and all its topics, send an email to > [email protected]. > To post to this group, send email to [email protected]. > Visit this group at https://groups.google.com/group/google-appengine. > To view this discussion on the web visit https://groups.google.com/d/ > msgid/google-appengine/856c41a0-6ef0-48c7-9272- > e223e623ac04%40googlegroups.com > <https://groups.google.com/d/msgid/google-appengine/856c41a0-6ef0-48c7-9272-e223e623ac04%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- Kir Titievsky | Product Manager | Google Cloud Pub/Sub <https://cloud.google.com/pubsub/overview> -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/CAKdozMdDgG%2Bp0bUA0fwNmk%2BfncbywMTLZPS3aHeMRLwUMTX8QQ%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
