Re: [akka-user] [akka-streams] Shared Materializer in akka extensions

2017-09-29 Thread Konrad “ktoso” Malawski
So rather unlikely people will want access to your materialiser there. The sharing of materializer is most important for lifecycle - killing a materializer kills all streams it hosts, so in your case it’s unlikely you want to bind your streams to random other people’s streams lifecycles. I suggest

Re: [akka-user] [akka-streams] Shared Materializer in akka extensions

2017-09-29 Thread Jeff
A Consul like service discovery client built on top of akka-http -- >> 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-use

Re: [akka-user] [akka-streams] Shared Materializer in akka extensions

2017-09-29 Thread Konrad “ktoso” Malawski
Again: what are you building? ;-) It’s very hard to provide answers if you don’t provide context. — Konrad `kto.so` Malawski Akka @ Lightbend On 30 September 2017 at 11:23:19, Jeff (jknight12...@gmail.com) wrote: That's what I was leaning towards as well,

Re: [akka-user] [akka-streams] Shared Materializer in akka extensions

2017-09-29 Thread Jeff
That's what I was leaning towards as well, since materialzers are fairly lightweight. However, I've seen that statement prefaced with, "...right now" so I wanted to make sure there wasn't some other way to share. -- >> Read the docs: http://akka.io/docs/ >> Check the

Re: [akka-user] [akka-streams] Shared Materializer in akka extensions

2017-09-29 Thread Konrad Malawski
Though I'm not sure it actually is as important to have the users and your extension share a materializer by the way. What is it you're building exactly? Keeping one materializer in the extension could be totally fine as well. On Sat, Sep 30, 2017 at 11:18 AM, Konrad “ktoso” Malawski < konrad.mal

Re: [akka-user] [akka-streams] Shared Materializer in akka extensions

2017-09-29 Thread Konrad “ktoso” Malawski
When they use it; def use(...)(implicit m: Materializer) — Konrad `kto.so` Malawski Akka @ Lightbend On 30 September 2017 at 11:18:16, Jeff (jknight12...@gmail.com) wrote: How, exactly. You only have access to an ExtendedActorSystem inside of createExtens

Re: [akka-user] [akka-streams] Shared Materializer in akka extensions

2017-09-29 Thread Jeff
How, exactly. You only have access to an ExtendedActorSystem inside of createExtension() -- >> 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.

Re: [akka-user] [akka-streams] Shared Materializer in akka extensions

2017-09-29 Thread Konrad “ktoso” Malawski
Have users pass it in ;) — Konrad `kto.so` Malawski Akka @ Lightbend On 30 September 2017 at 10:04:48, Jeff (jknight12...@gmail.com) wrote: I am building an akka extension, but there doesn't seem to be an elegant way to pass in a shared Materializer. What

[akka-user] [akka-streams] Shared Materializer in akka extensions

2017-09-29 Thread Jeff
I am building an akka extension, but there doesn't seem to be an elegant way to pass in a shared Materializer. What would be the suggested way to use a shared materializer between akka extensions and the main application? -- >> Read the docs: http://akka.io/docs/ >> Ch

[akka-user] Does manual downing of unreachable nodes ever work?

2017-09-29 Thread Andres March
We feel like we're missing something obvious. Downing a node works unless a node goes unreachable. In the latter, the leader always says it can't perform it's duties. My colleague created an issue for this with the akka cluster sample app, so none of our code is involved: https://github.com/

Re: [akka-user] Scaladoc missing?

2017-09-29 Thread Patrik Nordwall
Thanks for reporting. It’s a mistake, we will fix (monday latest). Until then you find close to latest scaladoc at https://doc.akka.io/api/akka/2.5.4/ /Patrik fre 29 sep. 2017 kl. 19:58 skrev Sarah Gerweck : > I was just working on some development and it appears that all the > Scaladoc documenta

[akka-user] Scaladoc missing?

2017-09-29 Thread Sarah Gerweck
I was just working on some development and it appears that all the Scaladoc documentation for Akka has been removed or redirected to Scaladoc. E.g., the old https://doc.akka.io/api/akka/current/ is now a reference to Javadoc. When I click the link for Actor documentation

[akka-user] Akka 2.5.6 released

2017-09-29 Thread Arnout Engelen
Dear hakkers, We are pleased to announce a new patch release of Akka 2.5. Other than the usual hardening and maintenance work, during this period we made a lot of progress on multiple very important new features which we are very proud to release today. The most important features are: - Supp

[akka-user] Re: Alpakka connectors issue

2017-09-29 Thread Juan José Vázquez Delgado
I have not tried it but I imagine what you need is a dynamic fan-out. Take a look at this piece of documentation. El miércoles, 27 de septiembre de 2017, 20:29:08 (UTC+2), alberto...@full360.com escribió: > > Hello, I hop