-
Notifications
You must be signed in to change notification settings - Fork 905
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
Unable to open markfile with version 0 #638
Comments
That means also, that most commands in I guess an easy solution would be to change codecs version from 0 to 1, but I'm not sure what would be the impact. |
FYI this seems to surface when using the |
The use of SBE schema version and mark file version have been conflated by mistake. We'll look at how to address this and give priority in the solution to those with a support contract. |
Fixed with this commit. d3fc6b7 |
After upgrading aeron, I suddenly can't open mark-files generated by the cluster.
aeron-cluster-mark-codecs version has been downgraded from 1 to 0 in this commit: 3cdafbd
We can see this version 0 here: https://github.com/real-logic/aeron/blob/master/aeron-cluster/src/main/resources/aeron-cluster-mark-codecs.xml#L5
Now, when I try to open a mark-file generated by aeron using ClusterMarkFile I get this exception:
This seems to be directly related to agrona considering that 0, as a version, is its null value and considers it an error:
https://github.com/real-logic/agrona/blob/master/agrona/src/main/java/org/agrona/MarkFile.java#L533
The text was updated successfully, but these errors were encountered: