In addition to what has already been said there will be a few more options:

   - Gearpump <http://gearpump.incubator.apache.org/overview.html> is
   implementing distributed streaming with Akka Streams
   - We will evaluate if it's suitable to make an Akka Streams API on top
   of ReactiveSocket <http://reactivesocket.io/>

Regards,
Patrik


On Tue, Oct 11, 2016 at 10:52 PM, Rafał Krzewski <rafal.krzew...@gmail.com>
wrote:

> You can use Akka HTTP with WebSockets for streaming data over a network
> link between nodes. This way you could attach a reactive stream in one node
> with a remote reactive stream, preserving backpressure semantics.
> If you are concerned with the overhead, you could use
> akka.streams.scaladsl.Tcp to stream data over a raw TCP socket, but of
> course you'd need to work out your custom protocol details.
> This may look like a lot of work, but that's just another example of Akka
> being honest with you: network is unreliable in general, and "exactly once"
> semantics of message delivery come at a cost.
>
> Cheers,
> Rafał
>
> W dniu wtorek, 11 października 2016 21:08:03 UTC+2 użytkownik Justin du
> coeur napisał:
>>
>> One of the team will have to answer this -- AFAIK, streams just plain
>> don't work cross-node yet.  (Which is why I'm not using them myself yet.)
>>
>> On Mon, Oct 10, 2016 at 7:27 PM, Dagny T <dagnyt...@gmail.com> wrote:
>>
>>>
>>> Right; can you provide a Blog URL or something to explain further?
>>>
>>> What is the recommended architecture when you want to stream data
>>> between remote Actor-based services?
>>> i.e. the implementations of Actor Publisher/Subscriber which actually
>>> work across remote boundaries
>>> (location transparency, I thought was the whole point of Akka's
>>> awesomeness).
>>>
>>> Thanks in advance!
>>> D
>>>
>>> On Monday, September 26, 2016 at 12:07:55 AM UTC-7, Dagny T wrote:
>>>>
>>>> Hi there,
>>>>
>>>> The latest info I have from a prior Akka Team response was that the
>>>> Akka Actor Publisher/Subscriber APIs are now deprecated;
>>>> and one should be looking at the Graph DSL instead.
>>>>
>>>> i.e. Latest Akka Docs state:
>>>> ActorPublisher and ActorSubscriber
>>>>  cannot be used with remote actors,
>>>> because if signals of the Reactive Streams protocol (e.g. request) are
>>>> lost the the stream may deadlock.
>>>>
>>>> So, now I'm not clear on what the replacement APIs we're supposed to be
>>>> using; as far as connecting State-Holding Akka Actors to Graph DSL
>>>> Event-Streams.
>>>>
>>>> Is there an Akka Team Blog with a GitHub link to a small focused
>>>> example which demonstrates this?
>>>>
>>>> THANKS in advance for any help with finding the latest APIs to use for
>>>> this!
>>>> Dagny
>>>>
>>>>
>>>> --
>>> >>>>>>>>>> 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.
>>>
>>
>> --
> >>>>>>>>>> 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