Re: [akka-user] akka-http Http.outgoingConnectionHttps and self-signed certs

2017-05-24 Thread Eric Swenson
Hi Joan, To be honest, I haven’t looked at this stuff in ages. We set up our own PKI CA and switched to using non-self-signed certs. However, before we did this, I had gotten things working with self-signed certs. Unfortunately, I don’t have that code in active usage anywhere now. I did

Re: [akka-user] ANNOUNCE: New Akka documentation, website and Akka 2.5.2 released

2017-05-24 Thread Konrad Malawski
We believe it may still be indexing the new pages; If that's not the case we'll investigate deeper shortly :-) Thanks for reporting -- Konrad `ktoso` Malawski Akka @ Lightbend On 24 May 2017 at 20:04:18, Richard Rodseth (rrods...@gmail.com) wrote: Looks

Re: [akka-user] ANNOUNCE: New Akka documentation, website and Akka 2.5.2 released

2017-05-24 Thread Richard Rodseth
Looks nice. However, if I go to http://akka.io/docs/ and type "Dispatcher" in the search box, nothing happens. There's no Search button, and Enter does nothing either. Chrome, OS X. Am I missing something? On Wed, May 24, 2017 at 7:56 AM, Arnout Engelen < arnout.enge...@lightbend.com>

Re: [EXT] [akka-user] Re: has anyone attempted a multi-source authentication?

2017-05-24 Thread Andrew Norman
Johannes, That worked pretty well! Now writing the custom directive that wrappers the multi-auth and another cookie directive, that was a pretty wild “welcome to akka-http” undertaking! -Andrew From: on behalf of "johannes.rudo...@lightbend.com"

[akka-user] ANNOUNCE: New Akka documentation, website and Akka 2.5.2 released

2017-05-24 Thread Arnout Engelen
Dear hakkers, We are excited to announce not only a new patch release of Akka 2.5 but also brand new akka.io website and documentation. New documentation One conclusion from the

Re: [akka-user] akka-http Http.outgoingConnectionHttps and self-signed certs

2017-05-24 Thread Joan G
What happened at the end? I'm having the same issue and find insane that disabling all the security (just to identify where is the issue) is still not working. On Wednesday, 18 May 2016 22:13:03 UTC+1, Eric Swenson wrote: > > Apart from my prior point — that it is not practical for my test >

Re: [akka-user] Akka Distributed Data Sample thowing OversizedPayloadException

2017-05-24 Thread Patrik Nordwall
That's interesting. I see the same problem when running that example. It shouldn't be much data involved there. I have created issue https://github.com/akka/akka-samples/issues/25 and will look into it. /Patrik On Tue, May 23, 2017 at 7:25 PM, Mainak Ghosh wrote: > Hey

Re: [akka-user] How to load dataase records into ram by akka and java

2017-05-24 Thread Konrad Malawski
You'll still of course use some jdbc driver to pull the data out. You can use Slick to get a Reactive Stream which you can easily consume using Akka Streams: Source.fromPublisher(db.stream(strm.result)) which you could then use mapAsync or other operators on to make it process more at the same

Re: [akka-user] Re: Issue in Sending messages through akka cluster.

2017-05-24 Thread Patrik Nordwall
You have to implement some flow control, such as as using the "Work Pulling" pattern , throttling, or send acknowledgment messages back from the consumer. If producer is sending messages at a higher rate

[akka-user] How to load dataase records into ram by akka and java

2017-05-24 Thread morteza Davodi
I want load million records from oracle DB onto ram fast as a possible, my current solution is very slow, i use pure jdbc code with single thread, read record per record and store on memcached, i want use akka as a in-memory database and in-memory computation. before i dirty my hands with code,

[akka-user] Re: Issue in Sending messages through akka cluster.

2017-05-24 Thread chaitanya
Following is the console output of my program it says Dropping messages due to overflow of send queue. How to solve this? GET Messages >>> Content GET Messages >>> Content 12:49:35.091 [ClusterSystem-akka.actor.default-dispatcher-3] DEBUG