要解决"Aeron基本的发布/订阅对在同一主机上连接成功,在不同主机间失败"的问题,可以使用以下代码示例:
首先,需要在发布者端和订阅者端分别创建Aeron实例。在同一主机上,可以使用相同的Aeron目录。
发布者端代码示例:
import io.aeron.Aeron;
import io.aeron.Publication;
import org.agrona.concurrent.BackoffIdleStrategy;
import org.agrona.concurrent.IdleStrategy;
import org.agrona.concurrent.SleepingIdleStrategy;
public class Publisher {
public static void main(String[] args) {
String aeronDirectoryName = "/path/to/aeron/directory";
Aeron aeron = Aeron.connect(new Aeron.Context().aeronDirectoryName(aeronDirectoryName));
String channel = "aeron:udp?endpoint=localhost:40123";
int streamId = 1;
Publication publication = aeron.addPublication(channel, streamId);
IdleStrategy idleStrategy = new BackoffIdleStrategy(1, 10, 100, 1000);
while (true) {
long result = publication.offer(messageToSend());
if (result > 0) {
// 消息已成功发送
} else if (result == Publication.CLOSED || result == Publication.NOT_CONNECTED) {
// 连接已关闭或未连接
break;
} else {
// 暂时无法发送消息,稍后重试
idleStrategy.idle();
}
}
aeron.close();
}
private static String messageToSend() {
// 构造要发送的消息
return "Hello, Aeron!";
}
}
订阅者端代码示例:
import io.aeron.Aeron;
import io.aeron.Subscription;
import io.aeron.logbuffer.FragmentHandler;
import org.agrona.concurrent.BackoffIdleStrategy;
import org.agrona.concurrent.IdleStrategy;
import org.agrona.concurrent.SleepingIdleStrategy;
public class Subscriber {
public static void main(String[] args) {
String aeronDirectoryName = "/path/to/aeron/directory";
Aeron aeron = Aeron.connect(new Aeron.Context().aeronDirectoryName(aeronDirectoryName));
String channel = "aeron:udp?endpoint=localhost:40123";
int streamId = 1;
Subscription subscription = aeron.addSubscription(channel, streamId);
FragmentHandler fragmentHandler = (buffer, offset, length, header) -> {
// 处理收到的消息
byte[] data = new byte[length];
buffer.getBytes(offset, data);
String message = new String(data);
System.out.println("Received message: " + message);
};
IdleStrategy idleStrategy = new BackoffIdleStrategy(1, 10, 100, 1000);
while (true) {
int fragmentsRead = subscription.poll(fragmentHandler, 1);
if (fragmentsRead > 0) {
// 处理了一些消息
} else if (fragmentsRead == 0) {
// 没有收到新消息
idleStrategy.idle();
} else if (fragmentsRead == Subscription.CLOSED) {
// 连接已关闭
break;
}
}
aeron.close();
}
}
在代码示例中,需要将/path/to/aeron/directory
替换为实际的Aeron目录路径,localhost:40123
替换为实际的主机和端口。
发布者端通过publication.offer(messageToSend())
发送消息,订阅者端通过subscription.poll(fragmentHandler, 1)
接收消息。在发布者端,如果offer()
返回正数,表示消息已成功发送;如果返回Publication.CLOSED
或Publication.NOT_CONNECTED
,表示连接已关闭或未连接;如果返回负数,表示暂时无法发送消息,稍后重试。在订阅者端,poll()
返回大于0表示处理了一些消息,返回0表示没有收到新消息,返回Subscription.CLOSED
表示连接已关闭。
通过以上示例代码,可以实现Aeron基本的发布/订阅对在同一主机上连接成功,在不同主机间也能成功连接。
上一篇:Aeron发布突然停止消息传输
下一篇:Aeron集群-事件流和避免重复