thank you Martynas, I wrote a sample, and two unclear points for me on "deleteMessages( toSeqId )". 1) How should application logically/priodically delete messages in a high load environment? Can't we hook into confirmDelivery method so that every confirmed message gets deleted? 2) Can default performance handle around a few million undelivered message in consumer down times?
On Saturday, September 6, 2014 1:50:17 PM UTC+4:30, Martynas Mickevičius wrote: > > Hi Behard, > > for reliability on fail-over you can use PersistentActor > <http://doc.akka.io/docs/akka/2.3.6/scala/persistence.html> with > AtLeastOnceDelivery trait. For priority management you can look at Mailbox > <http://doc.akka.io/docs/akka/2.3.6/scala/mailboxes.html> implementations > that support priority handling. > > > On Mon, Sep 1, 2014 at 8:23 AM, Behrad Zari <[email protected] > <javascript:>> wrote: > >> I'm new to akka, since I have some Erlang experience it was looking >> familiar for me at first step. We are going to rewrite a SMS >> aggregator/gateway whose job is to route messages between different SMSC >> endpoints. I'm trying to it with least complexity (akka + camel) without >> any Message Broker involved. >> I want to here your points How well can akka play a message broker role >> in my case? >> >> We will be charged twice if we send a message twice (don't think we want >> at-least-once reliability) >> We need some reliability and failover not to miss many messages. >> We may need priority Queues as well later. >> >> -- >> >>>>>>>>>> Read the docs: http://akka.io/docs/ >> >>>>>>>>>> Check the FAQ: >> http://doc.akka.io/docs/akka/current/additional/faq.html >> >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user >> --- >> You received this message because you are subscribed to the Google Groups >> "Akka User List" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected] <javascript:>. >> To post to this group, send email to [email protected] >> <javascript:>. >> Visit this group at http://groups.google.com/group/akka-user. >> For more options, visit https://groups.google.com/d/optout. >> > > > > -- > Martynas Mickevičius > Typesafe <http://typesafe.com/> – Reactive > <http://www.reactivemanifesto.org/> Apps on the JVM > -- >>>>>>>>>> Read the docs: http://akka.io/docs/ >>>>>>>>>> Check the FAQ: >>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user --- You received this message because you are subscribed to the Google Groups "Akka User List" 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 http://groups.google.com/group/akka-user. For more options, visit https://groups.google.com/d/optout.
