I haven't.

I've managed to figure out that sometimes the following code

[[
                int nextStepNumber = planSteps[0].getStepNumber();
                Address nextAddress = planSteps[0].getPeer().getAddress();
                PlanStep[] nextPlanSteps = new PlanStep[planSteps.length];
                System.arraycopy(planSteps, 0, nextPlanSteps, 0, 
planSteps.length);
                firstWorker = getContext().actorOf(
                        Worker.mkProps(sink, nextPlanSteps).withDeploy(new 
Deploy(new RemoteScope(nextAddress))),
                        Worker.actorName + nextStepNumber);
                firstWorker.tell(CommonApi.START, getSelf());
                log.debug("started first worker");
                Chunk chunk = new Chunk(0, new byte[] {});                
                firstWorker.tell(chunk, getSelf());
                log.debug("empty chunk sent to first worker");
]]

generate such an error:

[[
17:20:08.195UTC ERROR 
[MySystemMultiNodeTest-akka.actor.default-dispatcher-16] 
[org.mysystem.actor.SubPlanner] 
[akka://MySystemMultiNodeTest/user/the-engine/executor-6eb81c68-e91d-47cd-bb26-be53eee90f63/planner/sub-planner-11]
 
- received Supervise from unregistered child 
Actor[akka.tcp://mysystemmultinodet...@nd06.domain.com:3002/remote/akka.tcp/mysystemmultinodet...@nd03.domain.com:3001/user/the-engine/executor-6eb81c68-e91d-47cd-bb26-be53eee90f63/planner/sub-planner-11/worker0#-1680645824],
 
this will not end well
]]

tracing back "sub-planner-11" in my logs I find the two messages
                log.debug("started first worker");
                firstWorker.tell(chunk, getSelf());

and then I get the error ... and I have no clue why

Thank you in advance for any help/suggestion.

Cheers,
Marco

On Tuesday, 20 January 2015 18:12:08 UTC, √ wrote:
>
> Have you closed over "context.actorOf" and execute it within a Future or 
> similar?
>
> On Tue, Jan 20, 2015 at 6:47 PM, Marco Luca Sbodio <marco....@gmail.com 
> <javascript:>> wrote:
>
>> Hello everyone,
>>
>> while testing my system I'm randomly getting error messages similar to 
>> the one in the subject of this topic. Here's an example:
>>
>> 17:27:59.265UTC ERROR 
>> [MySystemMultiNodeTest-akka.actor.default-dispatcher-16] 
>> [org.mysystem.actor.Worker] 
>> [akka://MySystemMultiNodeTest/user/the-engine/executor-7b7690ee-f31d-45f1-93ef-79cba01fe604/planner/sub-planner-951/worker0]
>>  
>> - received Supervise from unregistered child Actor[akka.tcp://
>> mysystemmultinodet...@nd06.domain.com:3002/remote/akka.tcp/mysystemmultinodet...@nd03.domain.com:3001/user/the-engine/executor-7b7690ee-f31d-45f1-93ef-79cba01fe604/planner/sub-planner-951/worker0/worker1.4#-430862452],
>>  
>> this will not end well
>>
>> I really have no clue what might cause these errors, and what the 
>> consequences are ("this will not end well"). I've tried searching on the 
>> Web, but didn't find anything that helped me.
>>
>> I'm using akka 2.2.3
>>
>> Any help is highly appreciated!
>>
>> Thanks,
>> Marco
>>
>> -- 
>> >>>>>>>>>> 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 akka-user+...@googlegroups.com <javascript:>.
>> To post to this group, send email to akka...@googlegroups.com 
>> <javascript:>.
>> Visit this group at http://groups.google.com/group/akka-user.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> -- 
> Cheers,
> √
>  

-- 
>>>>>>>>>>      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 akka-user+unsubscr...@googlegroups.com.
To post to this group, send email to akka-user@googlegroups.com.
Visit this group at http://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.

Reply via email to