Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

StreamRefs #3321

Merged
merged 10 commits into from
Feb 24, 2018
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,8 @@ Target "Protobuf" <| fun _ ->
("DistributedPubSubMessages.proto", "/src/contrib/cluster/Akka.Cluster.Tools/PublishSubscribe/Serialization/Proto/");
("ClusterShardingMessages.proto", "/src/contrib/cluster/Akka.Cluster.Sharding/Serialization/Proto/");
("TestConductorProtocol.proto", "/src/core/Akka.Remote.TestKit/Proto/");
("Persistence.proto", "/src/core/Akka.Persistence/Serialization/Proto/") ]
("Persistence.proto", "/src/core/Akka.Persistence/Serialization/Proto/");
("StreamRefMessages.proto", "/src/core/Akka.Streams/Serialization/Proto/")]

printfn "Using proto.exe: %s" protocPath

Expand Down
178 changes: 178 additions & 0 deletions docs/articles/streams/streamrefs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,178 @@
---
uid: stream-ref
title: StreamRefs - Reactive Streams over the network
---

> **Warning**
This module is currently marked as may change in the sense of being the subject of active research. This means that API or semantics can change without warning or deprecation period and it is not recommended to use this module in production just yet—you have been warned.

Stream references, or “stream refs” for short, allow running Akka Streams across multiple nodes within an Akka Remote boundaries.

Unlike heavier “streaming data processing” frameworks, Akka Streams are not “deployed” nor automatically distributed. Akka stream refs are, as the name implies, references to existing parts of a stream, and can be used to create a distributed processing framework or introduce such capabilities in specific parts of your application.

Stream refs are trivial to make use of in existing clustered Akka applications, and require no additional configuration or setup. They automatically maintain flow-control / back-pressure over the network, and employ Akka’s failure detection mechanisms to fail-fast (“let it crash!”) in the case of failures of remote nodes. They can be seen as an implementation of the Work Pulling Pattern, which one would otherwise implement manually.

> **Note**
A useful way to think about stream refs is: “like an `IActorRef`, but for Akka Streams’s `Source` and `Sink`”.
Stream refs refer to an already existing, possibly remote, `Sink` or `Source`. This is not to be mistaken with deploying streams remotely, which this feature is not intended for.

## Stream References

The prime use case for stream refs is to replace raw actor or HTTP messaging between systems where a long running stream of data is expected between two entities. Often times, they can be used to effectively achieve point to point streaming without the need of setting up additional message brokers or similar secondary clusters.

Stream refs are well suited for any system in which you need to send messages between nodes and need to do so in a flow-controlled fashion. Typical examples include sending work requests to worker nodes, as fast as possible, but not faster than the worker node can process them, or sending data elements which the downstream may be slow at processing. It is recommended to mix and introduce stream refs in Actor messaging based systems, where the actor messaging is used to orchestrate and prepare such message flows, and later the stream refs are used to do the flow-controlled message transfer.

Stream refs are not persistent, however it is simple to build a recover-able stream by introducing such protocol on the actor messaging layer. Stream refs are absolutely expected to be sent over Akka remoting to other nodes within a cluster, and as such, complement and do not compete with plain Actor messaging. Actors would usually be used to establish the stream, by means of some initial message saying “I want to offer you many log elements (the stream ref)”, or alternatively in the opposite way “If you need to send me much data, here is the stream ref you can use to do so”.

Since the two sides (“local” and “remote”) of each reference may be confusing to simply refer to as “remote” and “local” – since either side can be seen as “local” or “remote” depending how we look at it – we propose to use the terminology “origin” and “target”, which is defined by where the stream ref was created. For SourceRefs, the “origin” is the side which has the data that it is going to stream out. For SinkRefs the “origin” side is the actor system that is ready to receive the data and has allocated the ref. Those two may be seen as duals of each other, however to explain patterns about sharing references, we found this wording to be rather useful.

### Source Refs - offering streaming data to a remote system

A `SourceRef` can be offered to a remote actor system in order for it to consume some source of data that we have prepared locally.

In order to share a `Source` with a remote endpoint you need to materialize it by running it into the `StreamRefs.SourceRef`. That sink materializes the `ISourceRef<T>` that you can then send to other nodes. Please note that it materializes into a Task so you will have to use the continuation (either `PipeTo` or async/await pattern).

```csharp
public sealed class RequestLogs
{
public int StreamId { get; }
public RequestLogs(int streamId)
{
StreamId = streamId;
}
}

public sealed class LogsOffer
{
public int StreamId { get; }
public ISourceRef<string> SourceRef { get; }
public RequestLogs(int streamId, ISourceRef<string> sourceRef)
{
StreamId = streamId;
SourceRef = sourceRef;
}
}

public class DataSource : ReceiveActor
{
public DataSource()
{
Receive<RequestLogs>(request =>
{
// create a source
StreamLogs(request.StreamId)
// materialize it using stream refs
.RunWith(StreamRefs.SourceRef<string>(), Context.System.Materializer())
// and send to sender
.PipeTo(Sender, success: sourceRef => new LogsOffer(request.StreamId, sourceRef));
});
}

private Source<string, NotUsed> StreamLogs(int streamId) => ...
}
```

The origin actor which creates and owns the `Source` could also perform some validation or additional setup when preparing the source. Once it has handed out the `ISourceRef<T>` the remote side can run it like this:

```csharp
var sourceActor = system.ActorOf(Props.Create<DataSource>(), "dataSource");

var offer = await sourceActor.Ask<LogsOffer>(new RequestLogs(1337));
offer.SourceRef.RunForeach(Console.WriteLine, materializer);
```

The process of preparing and running a `ISourceRef<T>` powered distributed stream is shown by the animation below:

![source ref](/images/source-ref-animation.gif)

> **Warning**
A `ISourceRef<T>` is by design “single-shot”. i.e. it may only be materialized once. This is in order to not complicate the mental model what materializing such value would mean.
While stream refs are designed to be single shot, you may use them to mimic multicast scenarios, simply by starting a `Broadcast` stage once, and attaching multiple new streams to it, for each emitting a new stream ref. This way each output of the broadcast is by itself an unique single-shot reference, however they can all be powered using a single `Source` – located before the `Broadcast` stage.

### Sink Refs - offering to receive streaming data from a remote system

They can be used to offer the other side the capability to send to the origin side data in a streaming, flow-controlled fashion. The origin here allocates a Sink, which could be as simple as a `Sink.ForEach` or as advanced as a complex sink which streams the incoming data into various other systems (e.g. any of the Alpakka provided Sinks).

> **Note**
To form a good mental model of `SinkRef`s, you can think of them as being similar to “passive mode” in FTP.

```csharp
public sealed class PrepareUpload
{
public string Id { get; }
public PrepareUpload(string id)
{
Id = id;
}
}

public sealed class MeasurementsSinkReady
{
public string Id { get; }
public ISinkRef<string> SinkRef { get; }
public MeasurementsSinkReady(string id, ISinkRef<string> sinkRef)
{
Id = id;
SinkRef = sinkRef;
}
}

class DataReceiver : ReceiveActor
{
public DataReceiver()
{
Receive<PrepareUpload>(prepare =>
{
// obtain a source you want to offer
var sink = LogsSinksFor(prepare.Id)

// materialize sink ref (remote is source data for us)
StreamRefs.SinkRef<string>()
.To(sink)
.Run(Context.System.Materializer())
.PipeTo(Sender, success: sinkRef => new MeasurementsSinkReady(prepare.Id, sinkRef));
});
}

private Sink<string, NotUsed> LogsSinksFor(string id) => ...
}
```

Using the offered `ISinkRef<>` to send data to the origin of the `Sink` is also simple, as we can treat the `ISinkRef<>` just as any other sink and directly runWith or run with it.

```csharp
var receiver = system.ActorOf(Props.Create<DataReceiver>(), "receiver");

var ready = await receiver.Ask<MeasurementsSinkReady>(new PrepareUpload("id"), timeout: TimeSpan.FromSeconds(30));

// stream local metrics to Sink's origin:
localMetrics().RunWith(ready.SinkRef, materializer);
```

The process of preparing and running a `ISinkRef<>` powered distributed stream is shown by the animation below:

![sink ref](/images/sink-ref-animation.gif)

> **Warning**
A `ISinkRef<>` is *by design* “single-shot”. i.e. it may only be materialized once. This is in order to not complicate the mental model what materializing such value would mean. If you have an use case for building a fan-in operation accepting writes from multiple remote nodes, you can build your `Sink` and prepend it with a `Merge` stage, each time materializing a new `ISinkRef<>` targeting that `Merge`. This has the added benefit of giving you full control how to merge these streams (i.e. by using “merge preferred” or any other variation of the fan-in stages).

## Configuration

### Stream reference subscription timeouts

All stream references have a subscription timeout, which is intended to prevent resource leaks in situations in which a remote node would requests the allocation of many streams yet never actually run them. In order to prevent this, each stream reference has a default timeout (of 30 seconds), after which the origin will abort the stream offer if the target has not materialized the stream ref in time. After the timeout has triggered, materialization of the target side will fail pointing out that the origin is missing.

Since these timeouts are often very different based on the kind of stream offered, and there can be many different kinds of them in the same application, it is possible to not only configure this setting globally (`akka.stream.materializer.stream-ref.subscription-timeout`), but also via attributes:

```csharp
Source.Repeat("hello")
.RunWith(StreamRefs.SourceRef<string>()
.AddAttributes(StreamRefAttributes
.SubscriptionTimeout(TimeSpan.FromSeconds(5)))
, materializer);

StreamRefs.SinkRef<string>()
.AddAttributes(StreamRefAttributes
.SubscriptionTimeout(TimeSpan.FromSeconds(5)))
.RunWith(Sink.Ignore<string>(), materializer);
```
Binary file added docs/images/sink-ref-animation.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/source-ref-animation.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/Akka.sln
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Protobuf", "Protobuf", "{98
protobuf\SystemMessageFormats.proto = protobuf\SystemMessageFormats.proto
protobuf\TestConductorProtocol.proto = protobuf\TestConductorProtocol.proto
protobuf\WireFormats.proto = protobuf\WireFormats.proto
protobuf\StreamRefMessages.proto = protobuf\StreamRefMessages.proto
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{10C5B1E8-15B5-4EB3-81AE-1FC054FE1305}"
Expand Down
Loading