集群客户端

    简介

    不属于集群的 Actor 系统可以通过「」与集群中的某个 Actor 通信,客户端可以在属于另一个集群的ActorSystem中运行。它只需要知道一个(或多个)节点的位置,用作初始接触点。它将与集群中的某个「ClusterReceptionist」建立连接。它将监视与接待员(receptionist)的连接,并在连接中断时建立新的连接。在寻找新的接待员时,它使用从以前的集群中检索到的新的联络点,或定期更新的联络点,即不一定是最初的联络点。

    使用ClusterClient从外部与集群进行通信,要求系统与客户端既可以连接,也可以通过 Akka 远程连接到集群中的所有节点和接待员。这就产生了紧密耦合,因为客户端和集群系统可能需要具有相同版本的 Akka、库、消息类、序列化程序,甚至可能是 JVM。在许多情况下,使用更明确和解耦的协议(如「」或「gRPC」)是更好的解决方案。

    此外,由于 Akka 远程处理(Remoting)主要设计为 Akka 群集的协议,因此没有明确的资源管理,当使用了ClusterClient时,它将导致与群集的连接,直到ActorSystem停止(与其他类型的网络客户端不同)。

    当向同一集群中运行的 Actor 发送消息时,不应使用ClusterClient。对于属于同一集群的 Actor,集群中的「」以更高效的方式提供与ClusterClient类似的功能。

    使用集群客户端时,连接系统必须将其akka.actor.provider设置为remotecluster

    接待员(receptionist)应该在集群中的所有节点或具有指定角色的所有节点上启动。接待员可以从ClusterReceptionist扩展启动,也可以作为普通 Actor 启动。

    你可以通过ClusterClient使用ClusterReceptionist,将消息发送给集群中注册在DistributedPubSubMediator中的任何 Actor。「ClusterClientReceptionist」提供了应该可以从客户端访问 Actor 的注册方法。消息包装在ClusterClient.SendClusterClient.SendToAllClusterClient.Publish中。

    ClusterClientClusterClientReceptionist都会发出可订阅的事件。ClusterClient发送从ClusterClientReceptionist处收到联系点(contact points)列表相关的通知。此列表的一个用途可能是让客户端记录其联系点。然后,重新启动的客户端可以使用此信息取代任何以前配置的联系点。

    ClusterClientReceptionist发送从ClusterClient处收到联系点的通知。此通知使包含接待员的服务器能够了解所连接的客户端。

    1. ClusterClient.Send:如果存在匹配路径,则消息将传递给一个收件人。如果多个条目与路径匹配,则消息将被传递到一个随机目标。消息的发送者可以指定首选本地路径,即消息发送到与所用的接待员 Actor 处于相同本地 Actor 系统中的 Actor(如果存在),否则随机发送到任何其他匹配条目。

    2. ClusterClient.Publish:消息将传递给所有已注册为命名主题订阅者的收件人 Actor。

    来自目标 Actor 的响应消息通过接待员进行隧道化(tunneled),以避免从其他集群节点到客户端的入站连接(inbound connections):

    • 目标 Actor 看到的「」不是客户端本身,而是接待员
    • 从目的地发回并由客户端看到的响应消息的「getSender()」是deadLetters

    因为客户端通常应该通过ClusterClient发送后续消息。如果客户端应该直接与集群中的 Actor 通信,那么可以在回复消息中传递原始发送者。

    当建立到接待员的连接时,ClusterClient将缓冲消息,并在建立连接时发送它们。如果缓冲区已满,则当通过客户端发送新消息时,ClusterClient将删除旧消息。缓冲区的大小是可配置的,也可以通过使用0大小的缓冲区来禁用它。

    值得注意的是,由于这些 Actor 的分布式特性,消息总可能丢失。一如既往,额外的逻辑应该在目标(确认)和客户端(重试)Actor 中实现,以确保至少一次的消息传递。

    在集群节点上,首先启动接待员。注意,建议在 Actor 系统启动时加载扩展,方法是在akka.extensions配置属性中定义它:

    1. akka.extensions = ["akka.cluster.client.ClusterClientReceptionist"]

    接下来,注册对客户端可用的 Actor。

    1. ActorRef serviceA = system.actorOf(Props.create(Service.class), "serviceA");
    2. ClusterClientReceptionist.get(system).registerService(serviceA);
    3. ActorRef serviceB = system.actorOf(Props.create(Service.class), "serviceB");
    4. ClusterClientReceptionist.get(system).registerService(serviceB);

    在客户端,你创建了ClusterClient Actor,并将其用作网关,用于向集群中某个位置由其路径(不含地址信息)标识的 Actor 发送消息。

    initialContacts参数是一个Set<ActorPath>,可以这样创建:

    1. Set<ActorPath> initialContacts() {
    2. return new HashSet<ActorPath>(
    3. ActorPaths.fromString("akka.tcp://OtherSys@host1:2552/system/receptionist"),
    4. ActorPaths.fromString("akka.tcp://OtherSys@host2:2552/system/receptionist")));
    5. }

    你可能会在配置或系统属性中定义初始连接点(contact points)的地址信息,另请参见「」。

    ClusterClientReceptionist 扩展

    在上面的示例中,使用akka.cluster.client.ClusterClientReceptionist扩展启动和访问接待员。这在大多数情况下是方便和完美的,但是可以知道,akka.cluster.client.ClusterReceptionist是一个普通的 Actor,你可以同时拥有几个不同的接待员,服务不同类型的客户端。

    注意,「」使用「DistributedPubSub」扩展,这在「」中进行了描述。

    建议在 Actor 系统启动时加载扩展,方法是在akka.extensions配置属性中定义它:

    1. akka.extensions = ["akka.cluster.client.ClusterClientReceptionist"]

    如前所述,ClusterClientClusterClientReceptionist都会发出可订阅的事件。下面的代码片段声明了一个 Actor,该 Actor 将在连接点(可用接待员的地址)可用时接收通知。代码说明订阅事件和接收ClusterClient初始状态。

    同样,我们也可以让一个 Actor 以类似的方式来学习集群客户端与ClusterClientReceptionist之间的联系:

    1. public static class ReceptionistListener extends AbstractActor {
    2. private final ActorRef targetReceptionist;
    3. private final Set<ActorRef> clusterClients = new HashSet<>();
    4. public ReceptionistListener(ActorRef targetReceptionist) {
    5. this.targetReceptionist = targetReceptionist;
    6. @Override
    7. public void preStart() {
    8. targetReceptionist.tell(SubscribeClusterClients.getInstance(), sender());
    9. }
    10. @Override
    11. public Receive createReceive() {
    12. return receiveBuilder()
    13. .match(
    14. ClusterClients.class,
    15. msg -> {
    16. clusterClients.addAll(msg.getClusterClients());
    17. // Now do something with an up-to-date "clusterClients"
    18. })
    19. .match(
    20. ClusterClientUp.class,
    21. msg -> {
    22. clusterClients.add(msg.clusterClient());
    23. // Now do something with an up-to-date "clusterClients"
    24. })
    25. .match(
    26. ClusterClientUnreachable.class,
    27. msg -> {
    28. clusterClients.remove(msg.clusterClient());
    29. // Now do something with an up-to-date "clusterClients"
    30. })
    31. .build();
    32. }

    配置

    可以使用以下属性配置ClusterClientReceptionist扩展(或ClusterReceptionistSettings):

    1. # Settings for the ClusterClientReceptionist extension
    2. akka.cluster.client.receptionist {
    3. name = receptionist
    4. # Start the receptionist on members tagged with this role.
    5. # All members are used if undefined or empty.
    6. role = ""
    7. # The receptionist will send this number of contact points to the client
    8. number-of-contacts = 3
    9. # The actor that tunnel response messages to the client will be stopped
    10. # after this time of inactivity.
    11. response-tunnel-receive-timeout = 30s
    12. # The id of the dispatcher to use for ClusterReceptionist actors.
    13. # If not specified default dispatcher is used.
    14. # If specified you need to define the settings of the actual dispatcher.
    15. use-dispatcher = ""
    16. # How often failure detection heartbeat messages should be received for
    17. # each ClusterClient
    18. heartbeat-interval = 2s
    19. # Number of potentially lost/delayed heartbeats that will be
    20. # accepted before considering it to be an anomaly.
    21. # The ClusterReceptionist is using the akka.remote.DeadlineFailureDetector, which
    22. # will trigger if there are no heartbeats within the duration
    23. # heartbeat-interval + acceptable-heartbeat-pause, i.e. 15 seconds with
    24. # the default settings.
    25. acceptable-heartbeat-pause = 13s
    26. # Failure detection checking interval for checking all ClusterClients
    27. failure-detection-interval = 2s

    当使用ActorSystem参数创建时,ClusterClientSettings将读取以下配置属性。还可以修改ClusterClientSettings,或者从另一个具有如下相同布局的配置部分创建它。ClusterClientSettingsClusterClient.props工厂方法的参数,即如果需要的话,每个客户端可以配置不同的设置。

    启动集群客户端时,必须为其提供一个初始连接点列表,这些连接点是正在运行接待员的集群节点。然后,它会重复地(通过establishing-get-contacts-interval来配置一个间隔)尝试联系这些连接点,直到它与其中一个连接。在运行时,连接点的列表被来自接待员的数据连续更新(再次,具有可配置的refresh-contacts-interval间隔),因此如果群集中的接待员比提供给客户端的初始连接点更多,则客户端将接触(learn about)它们。

    当客户端运行时,它将检测到其与接待员的连接失败,如果错过的心跳超过可配置的数量,客户端将尝试重新连接到其已知的连接点,以找到可以访问的接待员。

    当无法到达群集时

    如果集群客户端找不到可以在可配置的时间间隔内与之连接的接待员,则可以完全停止集群客户机。这是通过reconnect-timeout配置的,默认为off。当从某种服务注册表提供初始连接点、群集节点地址完全是动态的、整个群集可能关闭或崩溃、在新地址上重新启动时,这可能很有用。由于在这种情况下客户端将被停止,监视 Actor 可以监视它,并且在终止时,可以获取一组新的初始连接点,并启动一个新的集群客户端。