-
Notifications
You must be signed in to change notification settings - Fork 16
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
Add ShardedDaemonProcess integration #463
Merged
Aaronontheweb
merged 6 commits into
akkadotnet:dev
from
Arkatufus:Add-ShardedDaemonProcess-integration
Jun 10, 2024
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
150 changes: 150 additions & 0 deletions
150
src/Akka.Cluster.Hosting.Tests/ShardedDaemonProcessProxySpecs.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,150 @@ | ||
using System; | ||
using System.Linq; | ||
using System.Threading.Tasks; | ||
using Akka.Actor; | ||
using Akka.Cluster.Sharding; | ||
using Akka.Hosting; | ||
using Akka.Remote.Hosting; | ||
using FluentAssertions; | ||
using FluentAssertions.Extensions; | ||
using Microsoft.Extensions.DependencyInjection; | ||
using Xunit; | ||
using Xunit.Abstractions; | ||
|
||
namespace Akka.Cluster.Hosting.Tests; | ||
|
||
public class ShardedDaemonProcessProxySpecs: Akka.Hosting.TestKit.TestKit | ||
{ | ||
private class EchoActor : ReceiveActor | ||
{ | ||
public static Props EchoProps(int i) => Props.Create(() => new EchoActor()); | ||
|
||
public EchoActor() | ||
{ | ||
ReceiveAny(msg => Sender.Tell(msg)); | ||
} | ||
} | ||
|
||
internal enum ShardedDaemonRouter { } | ||
|
||
public const int NumWorkers = 10; | ||
public const string Name = "daemonTest"; | ||
public const string Role = "workers"; | ||
|
||
protected override void ConfigureAkka(AkkaConfigurationBuilder builder, IServiceProvider provider) | ||
{ | ||
builder | ||
.WithRemoting(new RemoteOptions | ||
{ | ||
Port = 0 | ||
}) | ||
.WithClustering(new ClusterOptions | ||
{ | ||
Roles = new[]{ Role } | ||
}) | ||
.WithShardedDaemonProcess<ShardedDaemonRouter>( | ||
name: Name, | ||
numberOfInstances: NumWorkers, | ||
entityPropsFactory: (_, _, _) => EchoActor.EchoProps, | ||
options: new ClusterDaemonOptions | ||
{ | ||
KeepAliveInterval = 500.Milliseconds(), | ||
Role = Role, | ||
HandoffStopMessage = PoisonPill.Instance | ||
}) | ||
.AddStartup((system, _) => | ||
{ | ||
var cluster = Cluster.Get(system); | ||
cluster.Join(cluster.SelfAddress); | ||
}); | ||
} | ||
|
||
public ShardedDaemonProcessProxySpecs(ITestOutputHelper output) : base(nameof(ShardedDaemonProcessProxySpecs), output) | ||
{ } | ||
|
||
[Fact] | ||
public async Task ShardedDaemonProcessProxy_must_start_daemon_process_on_proxy() | ||
{ | ||
// validate that we have a cluster | ||
await AwaitAssertAsync(() => | ||
{ | ||
Cluster.Get(Sys).State.Members.Count(x => x.Status == MemberStatus.Up).Should().Be(1); | ||
}); | ||
|
||
// <PushDaemon> | ||
var host = await Host.Services.GetRequiredService<ActorRegistry>().GetAsync<ShardedDaemonRouter>(); | ||
|
||
// ping some of the workers via the host | ||
for(var i = 0; i < NumWorkers; i++) | ||
{ | ||
var result = await host.Ask<int>(i); | ||
result.Should().Be(i); | ||
} | ||
// </PushDaemon> | ||
|
||
// <PushDaemonProxy> | ||
// start the proxy on the proxy system, which runs on a different role not capable of hosting workers | ||
ProxySystem? proxySystem = null; | ||
try | ||
{ | ||
proxySystem = new ProxySystem(Output, Sys); | ||
await proxySystem.InitializeAsync(); | ||
|
||
// validate that we have a 2 node cluster with both members marked as up | ||
await AwaitAssertAsync(() => | ||
{ | ||
Cluster.Get(Sys).State.Members.Count(x => x.Status == MemberStatus.Up).Should().Be(2); | ||
Cluster.Get(proxySystem.Sys).State.Members.Count(x => x.Status == MemberStatus.Up).Should().Be(2); | ||
}); | ||
|
||
var proxyRouter = await proxySystem.Host.Services | ||
.GetRequiredService<ActorRegistry>().GetAsync<ShardedDaemonRouter>(); | ||
|
||
// ping some of the workers via the proxy | ||
for(var i = 0; i < NumWorkers; i++) | ||
{ | ||
var result = await proxyRouter.Ask<int>(i); | ||
result.Should().Be(i); | ||
} | ||
} | ||
finally | ||
{ | ||
proxySystem?.DisposeAsync(); | ||
} | ||
// </PushDaemonProxy> | ||
} | ||
|
||
} | ||
|
||
public class ProxySystem: Akka.Hosting.TestKit.TestKit | ||
{ | ||
private readonly Cluster _remoteCluster; | ||
|
||
public ProxySystem(ITestOutputHelper? output, ActorSystem remoteSystem) | ||
: base(nameof(ShardedDaemonProcessProxySpecs), output) | ||
{ | ||
_remoteCluster = Cluster.Get(remoteSystem); | ||
} | ||
|
||
protected override void ConfigureAkka(AkkaConfigurationBuilder builder, IServiceProvider provider) | ||
{ | ||
builder | ||
.WithRemoting(new RemoteOptions | ||
{ | ||
Port = 0 | ||
}) | ||
.WithClustering(new ClusterOptions | ||
{ | ||
Roles = new[]{ "proxy" } | ||
}) | ||
.WithShardedDaemonProcessProxy<ShardedDaemonProcessProxySpecs.ShardedDaemonRouter>( | ||
name: ShardedDaemonProcessProxySpecs.Name, | ||
numberOfInstances: ShardedDaemonProcessProxySpecs.NumWorkers, | ||
role: ShardedDaemonProcessProxySpecs.Role) | ||
.AddStartup((system, _) => | ||
{ | ||
var cluster = Cluster.Get(system); | ||
cluster.Join(_remoteCluster.SelfAddress); | ||
}); | ||
} | ||
} |
195 changes: 195 additions & 0 deletions
195
src/Akka.Cluster.Hosting.Tests/ShardedDaemonProcessSpecs.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,195 @@ | ||
using System; | ||
using System.Collections; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Security.Cryptography; | ||
using System.Threading.Tasks; | ||
using Akka.Actor; | ||
using Akka.Cluster.Sharding; | ||
using Akka.Event; | ||
using Akka.Hosting; | ||
using Akka.Remote.Hosting; | ||
using Akka.TestKit; | ||
using FluentAssertions; | ||
using FluentAssertions.Extensions; | ||
using Microsoft.Extensions.DependencyInjection; | ||
using Xunit; | ||
using Xunit.Abstractions; | ||
|
||
namespace Akka.Cluster.Hosting.Tests; | ||
|
||
public class ShardedDaemonProcessSpecs: Akka.Hosting.TestKit.TestKit | ||
{ | ||
private sealed class Stop | ||
{ | ||
public static Stop Instance { get; } = new(); | ||
private Stop() { } | ||
} | ||
|
||
internal sealed class Started | ||
{ | ||
public int Id { get; } | ||
public IActorRef SelfRef { get; } | ||
|
||
public Started(int id, IActorRef selfRef) | ||
{ | ||
Id = id; | ||
SelfRef = selfRef; | ||
} | ||
} | ||
|
||
internal class MyDaemonActor : UntypedActor | ||
{ | ||
private readonly int _id; | ||
private readonly IActorRef _probe; | ||
private readonly ILoggingAdapter _log; | ||
|
||
public MyDaemonActor(int id, IRequiredActor<TestProbe> probe) | ||
{ | ||
_id = id; | ||
_probe = probe.ActorRef; | ||
_log = Context.GetLogger(); | ||
} | ||
|
||
protected override void PreStart() | ||
{ | ||
base.PreStart(); | ||
_probe.Tell(new Started(_id, Context.Self)); | ||
_log.Info("Actor {0} started", _id); | ||
} | ||
|
||
protected override void PostStop() | ||
{ | ||
base.PostStop(); | ||
_log.Info("Actor {0} stopped", _id); | ||
} | ||
|
||
protected override void OnReceive(object message) | ||
{ | ||
switch (message) | ||
{ | ||
case Stop: | ||
Context.Stop(Self); | ||
break; | ||
default: | ||
Unhandled(message); | ||
break; | ||
} | ||
} | ||
} | ||
|
||
internal enum ShardedDaemonRouter { } | ||
|
||
private Cluster _cluster = null!; | ||
|
||
public ShardedDaemonProcessSpecs(ITestOutputHelper output) : base(nameof(ShardedDaemonProcessSpecs), output) | ||
{ | ||
} | ||
|
||
protected override void ConfigureAkka(AkkaConfigurationBuilder builder, IServiceProvider provider) | ||
{ | ||
builder | ||
.WithRemoting(new RemoteOptions | ||
{ | ||
Port = 0 | ||
}) | ||
.WithClustering() | ||
.WithShardedDaemonProcess<ShardedDaemonRouter>( | ||
name: "test", | ||
numberOfInstances: 5, | ||
entityPropsFactory: (_, _, resolver) => id => resolver.Props(typeof(MyDaemonActor), id), | ||
options: new ClusterDaemonOptions | ||
{ | ||
KeepAliveInterval = 500.Milliseconds() | ||
}) | ||
.AddStartup((system, _) => | ||
{ | ||
var cluster = Cluster.Get(system); | ||
cluster.Join(cluster.SelfAddress); | ||
}); | ||
} | ||
|
||
protected override async Task BeforeTestStart() | ||
{ | ||
_cluster = Cluster.Get(Sys); | ||
|
||
await AwaitAssertAsync(() => _cluster.SelfMember.Status.Should().Be(MemberStatus.Up), | ||
TimeSpan.FromSeconds(3)); | ||
} | ||
|
||
[Fact] | ||
public async Task ShardedDaemonProcess_must_start_N_actors_with_unique_ids() | ||
{ | ||
var started = new List<Started>(); | ||
foreach (var _ in Enumerable.Range(0, 5)) | ||
{ | ||
started.Add(await ExpectMsgAsync<Started>()); | ||
} | ||
|
||
started.Count.Should().Be(5); | ||
started.Select(s => s.Id).ToList().Should().BeEquivalentTo(new []{0, 1, 2, 3, 4}); | ||
await ExpectNoMsgAsync(1.Seconds()); | ||
} | ||
|
||
[Fact] | ||
public async Task ShardedDaemonProcess_must_restart_actors_if_they_stop() | ||
{ | ||
var startMessages = new List<Started>(); | ||
foreach (var _ in Enumerable.Range(0, 5)) | ||
{ | ||
startMessages.Add(await ExpectMsgAsync<Started>()); | ||
} | ||
|
||
startMessages.Count.Should().Be(5); | ||
startMessages.Select(s => s.Id).ToList().Should().BeEquivalentTo(new []{0, 1, 2, 3, 4}); | ||
|
||
// Stop all entities | ||
foreach (var start in startMessages) | ||
{ | ||
start.SelfRef.Tell(Stop.Instance); | ||
} | ||
|
||
startMessages.Clear(); | ||
// periodic ping every 1s makes it restart | ||
foreach (var _ in Enumerable.Range(0, 5)) | ||
{ | ||
startMessages.Add(await ExpectMsgAsync<Started>()); | ||
} | ||
|
||
startMessages.Count.Should().Be(5); | ||
startMessages.Select(s => s.Id).ToList().Should().BeEquivalentTo(new []{0, 1, 2, 3, 4}); | ||
} | ||
} | ||
|
||
public class ShardedDaemonProcessFailureSpecs : Akka.Hosting.TestKit.TestKit | ||
{ | ||
protected override void ConfigureAkka(AkkaConfigurationBuilder builder, IServiceProvider provider) | ||
{ | ||
builder | ||
.WithRemoting() | ||
.WithClustering() | ||
.WithShardedDaemonProcess<ShardedDaemonProcessSpecs.ShardedDaemonRouter>( | ||
name: "test", | ||
numberOfInstances: 5, | ||
entityPropsFactory: (_, _, resolver) => id => resolver.Props(typeof(ShardedDaemonProcessSpecs.MyDaemonActor), id), | ||
options: new ClusterDaemonOptions | ||
{ | ||
KeepAliveInterval = 500.Milliseconds(), | ||
Role = "DoNotExist" | ||
}) | ||
.AddStartup((system, _) => | ||
{ | ||
var cluster = Cluster.Get(system); | ||
cluster.Join(cluster.SelfAddress); | ||
}); | ||
} | ||
|
||
[Fact] | ||
public async Task ShardedDaemonProcess_must_not_run_if_the_role_does_not_match_node_role() | ||
{ | ||
var registry = Host.Services.GetRequiredService<ActorRegistry>(); | ||
registry.TryGet<ShardedDaemonProcessSpecs.ShardedDaemonRouter>(out _).Should().BeFalse(); | ||
|
||
await ExpectNoMsgAsync(1.Seconds()); | ||
} | ||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm