It should probably be changed to Warning level. PR fixing this would be
welcome.
/Patrik

tis 27 mars 2018 kl. 16:31 skrev Zachary Marois <zmar...@cimpress.com>:

> If these are harmless, would ignoring any ERRORs from the
> akka.remote.EndpointWriter class be safe? I definitely worry about hiding
> real errors, but I also don't know how to deal with all these
> false-negatives.
>
>
> On Thursday, August 24, 2017 at 7:27:22 AM UTC-4, Jakub Liska wrote:
>>
>> Hey, I think that the :
>>
>> ERROR: akka.remote.transport.Transport$InvalidAssociationException: The
>> remote system terminated the association because it is shutting down.
>>
>> should not exist in case of graceful remote system shutdown. Imagine that
>> you have a system that is forking JVMs with remote actor system
>> for each task or job (the remote actor system serves only as a way of
>> passing input and result) and you're getting thousands of these ERRORs,
>> then somebody uses your software and he gets thousands of these errors.
>>
>> Btw this is nice David, unfortunately it doesn't solve the ERROR logging
>> problem.
>>
>>   override def preStart(): Unit = context.system.eventStream.subscribe(
>> self, classOf[DisassociatedEvent])
>>
>>   override def unhandled(message: Any): Unit = message match {
>>     case DisassociatedEvent(local, remote, _) =>
>>       log.info(s"Forked executor system $remote disassociated from
>> $local ...")
>>     case x => super.unhandled(x)
>>   }
>>
>> Anybody has an idea how to avoid these ERROR log messages ?
>>
> --
>
> *****************************************************************************************************
> ** New discussion forum: https://discuss.akka.io/ replacing akka-user
> google-group soon.
> ** This group will soon be put into read-only mode, and replaced by
> discuss.akka.io
> ** More details:
> https://akka.io/blog/news/2018/03/13/discuss.akka.io-announced
>
> *****************************************************************************************************
> >>>>>>>>>>
> >>>>>>>>>> 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 https://groups.google.com/group/akka-user.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
*****************************************************************************************************
** New discussion forum: https://discuss.akka.io/ replacing akka-user 
google-group soon.
** This group will soon be put into read-only mode, and replaced by 
discuss.akka.io
** More details: https://akka.io/blog/news/2018/03/13/discuss.akka.io-announced
*****************************************************************************************************
>>>>>>>>>> 
>>>>>>>>>>      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 https://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.

Reply via email to