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

Fix multiple exporters issue #978

Merged
merged 5 commits into from
Apr 30, 2024
Merged

Conversation

attilakreiner
Copy link
Contributor

Description

This change fixes an issue, so that multiple exporters can run correctly simultaneously.

@@ -19,5 +19,6 @@ public interface MessageReader
{
int read(
MessageConsumer handler,
int readerId,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Prefer we not change this interface as it is following a specific design pattern.

this.readEvent = context.supplyEventReader();
this.formatter = context.supplyEventFormatter();
this.out = out;
}

public int process()
{
return readEvent.read(this::handleEvent, 1);
return readEvent.read(this::handleEvent, stdoutExporterTypeId, 1);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This approach breaks if we have 2 exporter instances of the same type.

Let's instead remove the complexity of creating multiple buffer spies in the events layout requiring the change to the interface, and instead create a new spy when a new event reader is supplied. That is the signal to us that we need independent spy because we have an independent event reader, which needs to keep track of its own progress through the events.

Comment on lines 76 to 81

public int supplyTypeId(
String name)
{
return context.supplyTypeId(name);
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can revert this change when we create a new spy per event reader.

@@ -110,7 +106,15 @@ private void rotateFile()
rethrowUnchecked(ex);
}
buffer = createRingBuffer(path, capacity);
bufferSpy = createRingBufferSpy(path);
accessors.forEach(a -> a.setBufferSpy(createRingBufferSpy()));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This doesn't seem like the right timing to move all the accessors to the latest rotated buffer.

It makes sense to rotate the events layout itself during write, but each event accessor would need to independently determine when they have reached the end of the current buffer and move to the next one (even if it's not the latest).

@jfallows jfallows merged commit 6561a7d into aklivity:develop Apr 30, 2024
5 checks passed
@attilakreiner attilakreiner deleted the fix-exporter branch May 2, 2024 07:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants