[akka-user] Using the Actor uid

2014-11-12 Thread nilsga
It's not quite clear to me at which point an ActorRef changes it's uid. The doc says: An actor incarnation is identified by the path and a UID. A restart only swaps the Actor instance defined by the Props but the incarnation and hence the UID remains the same. I have a child actor that is

[akka-user] Re: How to turn off debug-logging in tests?

2014-11-12 Thread Lorenzo Fundaró
There is probably a more convenient (automatic) way to do it without having you directly deal with the application.conf file when running tests. On your test, when constructing the TestKit you can specify logs to be off like this: class MySpec extends TestKit(ActorSystem(MySpecActorSystem,

[akka-user] Confusion about durable mailboxes superseded by akka-persistence?

2014-11-12 Thread Karthik Chandraraj
Consider there are 100 messages in the mailbox and the actor is processing the first. If the process is killed, what happens to the 99 messages? When I was searching about this, I came across durable mailboxes, but the doc says 'durable mailboxes superseded by akka-persistence'. When I went

[akka-user] Akka 2.3.7 Released!

2014-11-12 Thread Martynas Mickevičius
*Dear hAkkers,* We—the Akka committers—are pleased to be able to announce the availability of Akka 2.3.7 http://akka.io/news/2014/11/12/akka-2.3.7-released.html. This is the seventh maintenance release of the 2.3 branch. Among other fixes and improvements this release contains: - A fix

[akka-user] Re: [akka-dev] Akka 2.3.7 Released!

2014-11-12 Thread √iktor Ҡlang
Nicely done, everyone! :) On Wed, Nov 12, 2014 at 1:29 PM, Martynas Mickevičius martynas.mickevic...@typesafe.com wrote: *Dear hAkkers,* We—the Akka committers—are pleased to be able to announce the availability of Akka 2.3.7 http://akka.io/news/2014/11/12/akka-2.3.7-released.html. This is

Re: [akka-user] Re: StackOverFlow when using trait

2014-11-12 Thread Martynas Mickevičius
Hi, this illustrates how traits and self types work in Scala. I do not have deep knowledge of inner workings of Scala, but you can workaround your issue by introducing another trait

Re: [akka-user] Does akka.io module support SOCKS5?

2014-11-12 Thread Martynas Mickevičius
Hi, akka-io does not have support of SOCKS proxies. And I have not heard of any third party extensions that do. On Sun, Nov 9, 2014 at 5:55 PM, dong don...@gmail.com wrote: Thank you. -- Read the docs: http://akka.io/docs/ Check the FAQ:

[akka-user] DistributetPubSubMediator.Put

2014-11-12 Thread delasoul
Hello, we have a situation where we need to be sure that an actor has registered successfully with the DistributedPubSubMediator when registering with Put. Mediator.Subscribe yields a SubscribeAck - could a PutAck be added as well? Thanks in advance, michael -- Read the docs:

[akka-user] There's no such thing as a permanent quarantine

2014-11-12 Thread oxbow_lakes
Hi - I'm being bitten by a client/server application where multiple clients subscribe for updates from a server where, upon a long GC pause, the clients are being quarantined. Here is some client logs for an attempt to rediscover the server actor using server ? Identify, which times out. I

[akka-user] How to use blocking-io / pipeTo in Actor / ExecutionContext (playFramework 2.4)

2014-11-12 Thread Dominik Dorn
Hi, Will showed me today at Devoxx that there's the pipeTo mechanism to do blocking code in actors at a different thread, so the actor stays non blocking. The code I came up looks like this. It would be very nice if you could take a look and tell me if I'm doing something obviously wrong:

[akka-user] How to Monitor akka, improving performance

2014-11-12 Thread Gaurav Sharma
Hi, I have a single node system where I'm having three actors. This node is running on a single port. I'm simply passing data and my message flow is: actor1 - actor2 - actor3 Now actor actor3 is created within actor 1. Its a flow where I send a record from actor1 to actor2 and then it comes

[akka-user] How to Monitor akka, improving performance

2014-11-12 Thread Adam
I suspect a thread dump in this state and the akka version you're using would be invaluable to understanding this. -- Read the docs: http://akka.io/docs/ Check the FAQ: http://doc.akka.io/docs/akka/current/additional/faq.html Search the archives: