Sorry for delay here. That sounds strange. It would be interesting if you
could narrow it down and create an issue. A reproducer would be great.

Regards,
Patrik

On Tue, Jan 17, 2017 at 8:56 AM, Richard Ney <kamisama....@gmail.com> wrote:

>
> I'm having an issue where the journalBatch queue is just filling up with
> messages and no writes are happening to Cassandra.
>
> After examining the heap dump and thread stacks I can see that the
> variable Eventsourced.writeInProgress set to 'true' which prevents writes
> of the messages in journalBatch into Cassandra based on this source snippit
> from the Akka source:
>
> private def flushJournalBatch(): Unit =
>   if (!writeInProgress && journalBatch.nonEmpty) {
>     journal ! WriteMessages(journalBatch, self, instanceId)
>     journalBatch = Vector.empty
>     writeInProgress = true
>   }
>
>
>  I'm using version 2.4.16 of Akka with Cassanra 3.9. I have a custom
> serializer for the objects I'm writing to the journal. There are no errors
> or warnings in the logs. Trying to figure out is there some error that
> isn't thrown, or the WriteMessagesSuccessful message is somehow ending up
> in dead letters. Initially I suspected a hung Cassandra write but the
> circuitBreaker pattern AsyncWriteJournal.receiveWriteJournal should
> timeout after 30 seconds if I understand the pattern. I'm running out of
> threads to pull on this. Since it only happens under load and often after
> several hours we're having issues figuring this one out.
>
> Regards,
>
> Richard
>
>
> --
> >>>>>>>>>> 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