I don't know about you, but I dislike mysteries. Could you start the actor
system with config
akka.log-config-on-start=on
and see what it logs for the mode.

/Patrik


On Tue, Aug 9, 2016 at 7:37 PM, Eric Swenson <e...@swenson.org> wrote:

> Just checked again. No override of that config parameter. Yet, these were,
> indeed, logged as errors not warnings.  -- Eric
>
> On Monday, August 8, 2016 at 11:28:33 PM UTC-7, Patrik Nordwall wrote:
>>
>>
>>
>> On Mon, Aug 8, 2016 at 10:06 PM, Eric Swenson <er...@swenson.org> wrote:
>>
>>> We have not changed the default mode=repair-by-discard-old config value
>>> for the replay-filter.  Should we?  — Eric
>>>
>>
>> Then I can't understand how you can get the ERROR as in the first message
>> in this thread
>>
>> IllegalStateException: Invalid replayed event [1] in buffer from old writer
>>
>> Then this should be logged at WARNING level and it should have discarded
>> the event from the "old" writer.
>>
>>
>>
>>>
>>> On Aug 7, 2016, at 9:47 AM, Patrik Nordwall <patrik....@gmail.com>
>>> wrote:
>>>
>>> It's typically caused by multiple persistent actors with the same
>>> persistenceId running at the same time. E.g. because there were a network
>>> split and your cluster was split into two separate clusters and thereby
>>> starting multiple persistent actors. That is why we so strongly recommend
>>> against using auto-downing and instead recommend Split Brain Resolver
>>> <http://doc.akka.io/docs/akka/rp-current/scala/split-brain-resolver.html>
>>>  or similar.
>>>
>>> Now you need to cleanup the corrupted data before starting the system.
>>> http://doc.akka.io/docs/akka/2.4/scala/cluster-sharding.html
>>> #Removal_of_Internal_Cluster_Sharding_Data
>>>
>>> Have you changed the default mode=repair-by-discard-old in the config
>>> of the replay filter?
>>> https://github.com/akka/akka/blob/master/akka-persistence/sr
>>> c/main/resources/reference.conf#L131
>>>
>>> Regards,
>>> Patrik
>>>
>>> On Tue, Aug 2, 2016 at 9:44 PM, Eric Swenson <er...@swenson.org> wrote:
>>>
>>>> I'm getting this error consistently now, and don't know why this is
>>>> happening nor what to do about it.  I form the persistentId this way:
>>>>
>>>>     override def persistenceId: String = self.path.parent.parent.name +
>>>> "-" + self.path.name
>>>>
>>>> So I don't see how I could have two persisters with the same id.  I'm
>>>> unable to bring up my akka cluster due to this error.
>>>>
>>>> Any suggestions?  I'm running akka 2.4.8 with akka.persistence:
>>>>
>>>> journal.plugin = "cassandra-journal"
>>>> snapshot-store.plugin = "cassandra-snapshot-store"
>>>>
>>>>
>>>> On Monday, April 25, 2016 at 3:34:21 AM UTC-7, Tim Pigden wrote:
>>>>>
>>>>> Hi
>>>>> I'm getting this message. I'm probably doing something wrong but any
>>>>> idea what that might be? I know what messages I'm persisting and this
>>>>> particular test is one in which I kill off my persistor and restart it.
>>>>> Or does it indicate the message is failing to deserialize or something
>>>>> like that
>>>>>
>>>>> 2016-04-25 10:33:47,570 - ERROR - from 
>>>>> com.optrak.opkakka.ddd.persistence.SimplePersistor Persistence failure 
>>>>> when replaying events for persistenceId [shd-matrix-testId]. Last known 
>>>>> sequence number [0]
>>>>> java.lang.IllegalStateException: Invalid replayed event [1] in buffer 
>>>>> from old writer [f6bd09c4-1f1c-4710-8cf6-c6f0776f39d3] with persistenceId 
>>>>> [shd-matrix-testId]
>>>>>    at 
>>>>> akka.persistence.journal.ReplayFilter$$anonfun$receive$1.applyOrElse(ReplayFilter.scala:125)
>>>>>    at akka.actor.Actor$class.aroundReceive(Actor.scala:480)
>>>>>    at 
>>>>> akka.persistence.journal.ReplayFilter.aroundReceive(ReplayFilter.scala:50)
>>>>>
>>>>>
>>>>>
>>>>> Any suggests much appreciated!
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>> --
>>>> >>>>>>>>>> Read the docs: http://akka.io/docs/
>>>> >>>>>>>>>> Check the FAQ: http://doc.akka.io/docs/a
>>>> kka/current/additional/faq.html
>>>> >>>>>>>>>> Search the archives: https://groups.googl
>>>> e.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.
>>>> To post to this group, send email to akka...@googlegroups.com.
>>>> Visit this group at https://groups.google.com/group/akka-user.
>>>> For more options, visit https://groups.google.com/d/optout.
>>>>
>>>
>>>
>>>
>>> --
>>>
>>> Patrik Nordwall
>>> Akka Tech Lead
>>> Lightbend <http://www.lightbend.com/> -  Reactive apps on the JVM
>>> Twitter: @patriknw
>>>
>>>
>>> --
>>> >>>>>>>>>> Read the docs: http://akka.io/docs/
>>> >>>>>>>>>> Check the FAQ: http://doc.akka.io/docs/a
>>> kka/current/additional/faq.html
>>> >>>>>>>>>> Search the archives: https://groups.googl
>>> e.com/group/akka-user
>>> ---
>>> You received this message because you are subscribed to a topic in the
>>> Google Groups "Akka User List" group.
>>> To unsubscribe from this topic, visit https://groups.google.co
>>> m/d/topic/akka-user/7n9J3y28SjE/unsubscribe.
>>> To unsubscribe from this group and all its topics, send an email to
>>> akka-user+...@googlegroups.com.
>>> To post to this group, send email to akka...@googlegroups.com.
>>> Visit this group at https://groups.google.com/group/akka-user.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>>
>>> --
>>> >>>>>>>>>> Read the docs: http://akka.io/docs/
>>> >>>>>>>>>> Check the FAQ: http://doc.akka.io/docs/akka/c
>>> urrent/additional/faq.html
>>> >>>>>>>>>> Search the archives: https://groups.google.com/grou
>>> p/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.
>>> To post to this group, send email to akka...@googlegroups.com.
>>> Visit this group at https://groups.google.com/group/akka-user.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>
>>
>> --
>>
>> Patrik Nordwall
>> Akka Tech Lead
>> Lightbend <http://www.lightbend.com/> -  Reactive apps on the JVM
>> Twitter: @patriknw
>>
>> --
> >>>>>>>>>> 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.
>



-- 

Patrik Nordwall
Akka Tech Lead
Lightbend <http://www.lightbend.com/> -  Reactive apps on the JVM
Twitter: @patriknw

-- 
>>>>>>>>>>      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