
io.aeron.samples.StreamingPublisher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aeron-samples Show documentation
Show all versions of aeron-samples Show documentation
Efficient reliable UDP unicast, UDP multicast, and IPC transport protocol.
The newest version!
/*
* Copyright 2014-2025 Real Logic Limited.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.aeron.samples;
import static org.agrona.BitUtil.SIZE_OF_LONG;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.ThreadLocalRandom;
import java.util.concurrent.TimeUnit;
import java.util.function.IntSupplier;
import io.aeron.Aeron;
import io.aeron.Publication;
import io.aeron.driver.MediaDriver;
import org.agrona.BitUtil;
import org.agrona.BufferUtil;
import org.agrona.CloseHelper;
import org.agrona.concurrent.IdleStrategy;
import org.agrona.concurrent.UnsafeBuffer;
import org.agrona.console.ContinueBarrier;
/**
* Publisher that sends a given number of messages at a given length as fast as possible.
*/
public class StreamingPublisher
{
private static final long NUMBER_OF_MESSAGES = SampleConfiguration.NUMBER_OF_MESSAGES;
private static final long LINGER_TIMEOUT_MS = SampleConfiguration.LINGER_TIMEOUT_MS;
private static final int STREAM_ID = SampleConfiguration.STREAM_ID;
private static final int MESSAGE_LENGTH = SampleConfiguration.MESSAGE_LENGTH;
private static final boolean EMBEDDED_MEDIA_DRIVER = SampleConfiguration.EMBEDDED_MEDIA_DRIVER;
private static final boolean RANDOM_MESSAGE_LENGTH = SampleConfiguration.RANDOM_MESSAGE_LENGTH;
private static final String CHANNEL = SampleConfiguration.CHANNEL;
private static final UnsafeBuffer OFFER_BUFFER = new UnsafeBuffer(
BufferUtil.allocateDirectAligned(MESSAGE_LENGTH, BitUtil.CACHE_LINE_LENGTH));
private static final IntSupplier LENGTH_GENERATOR = composeLengthGenerator(RANDOM_MESSAGE_LENGTH, MESSAGE_LENGTH);
private static volatile boolean printingActive = true;
/**
* Main method for launching the process.
*
* @param args passed to the process.
* @throws InterruptedException if interrupted during linger.
*/
public static void main(final String[] args) throws InterruptedException
{
if (MESSAGE_LENGTH < SIZE_OF_LONG)
{
throw new IllegalArgumentException("Message length must be at least " + SIZE_OF_LONG + " bytes");
}
final MediaDriver driver = EMBEDDED_MEDIA_DRIVER ? MediaDriver.launchEmbedded() : null;
final Aeron.Context context = new Aeron.Context();
if (EMBEDDED_MEDIA_DRIVER)
{
context.aeronDirectoryName(driver.aeronDirectoryName());
}
final RateReporter reporter = new RateReporter(TimeUnit.SECONDS.toNanos(1), StreamingPublisher::printRate);
final ExecutorService executor = Executors.newFixedThreadPool(1);
executor.execute(reporter);
// Connect to media driver and add publication to send messages on the configured channel and stream ID.
// The Aeron and Publication classes implement AutoCloseable, and will automatically
// clean up resources when this try block is finished.
try (Aeron aeron = Aeron.connect(context);
Publication publication = aeron.addPublication(CHANNEL, STREAM_ID))
{
final ContinueBarrier barrier = new ContinueBarrier("Execute again?");
final IdleStrategy idleStrategy = SampleConfiguration.newIdleStrategy();
do
{
printingActive = true;
System.out.format(
"%nStreaming %,d messages of%s size %d bytes to %s on stream id %d%n",
NUMBER_OF_MESSAGES,
RANDOM_MESSAGE_LENGTH ? " random" : "",
MESSAGE_LENGTH,
CHANNEL,
STREAM_ID);
long backPressureCount = 0;
for (long i = 0; i < NUMBER_OF_MESSAGES; i++)
{
final int length = LENGTH_GENERATOR.getAsInt();
OFFER_BUFFER.putLong(0, i);
idleStrategy.reset();
while (publication.offer(OFFER_BUFFER, 0, length, null) < 0L)
{
// The offer failed, which is usually due to the publication
// being temporarily blocked. Retry the offer after a short
// spin/yield/sleep, depending on the chosen IdleStrategy.
backPressureCount++;
idleStrategy.idle();
}
reporter.onMessage(length);
}
System.out.println(
"Done streaming. Back pressure ratio " + ((double)backPressureCount / NUMBER_OF_MESSAGES));
if (LINGER_TIMEOUT_MS > 0)
{
System.out.println("Lingering for " + LINGER_TIMEOUT_MS + " milliseconds...");
Thread.sleep(LINGER_TIMEOUT_MS);
}
printingActive = false;
}
while (barrier.await());
}
reporter.halt();
executor.shutdown();
CloseHelper.close(driver);
}
private static void printRate(
final double messagesPerSec, final double bytesPerSec, final long totalFragments, final long totalBytes)
{
if (printingActive)
{
System.out.format(
"%.02g msgs/sec, %.02g bytes/sec, totals %d messages %d MB%n",
messagesPerSec, bytesPerSec, totalFragments, totalBytes / (1024 * 1024));
}
}
private static IntSupplier composeLengthGenerator(final boolean random, final int max)
{
if (random)
{
return () -> ThreadLocalRandom.current().nextInt(SIZE_OF_LONG, max);
}
else
{
return () -> max;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy