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

DeserializationUtils in 2.1.13 with SnakeYaml 2 no longer loads large YAML files #1912

Closed
StevenWallTR opened this issue Apr 14, 2023 · 1 comment

Comments

@StevenWallTR
Copy link

StevenWallTR commented Apr 14, 2023

I am trying to use 2.1.13 with Snakeyaml 2 and our large (4+ MB) YAML file will no longer load.

This code was working with 2.1.11 and Snakeyaml 1.33:

int maxCodePoints = 5 * 1024 * 1024;  //5MB
System.setProperty("maxYamlCodePoints", Integer.toString(maxCodePoints));
OpenAPIV3Parser v3parser = new OpenAPIV3Parser();
openApi = v3parser.read(OPEN_API_SPECIFICATION);

Now with 2.1.13 and Snakeyaml 2, I receive this error:
org.yaml.snakeyaml.error.YAMLException: The incoming YAML document exceeds the limit: 3145728 code points.

The issue is with this commit to the DeserializationUtils class. Prior to the commit, line ~266 would set the maxYamlCodePoints on the LoaderOptions class. That code was replaced by the buildLoaderOptions() method, which does not set the maxYamlCodePoints property.

@frantuma
Copy link
Member

Thanks for reporting this!

Fixed by #1914

@StevenWallTR StevenWallTR changed the title DeserializationUtils in 2.13.1 with SnakeYaml 2 no longer loads large YAML files DeserializationUtils in 2.1.13 with SnakeYaml 2 no longer loads large YAML files May 31, 2023
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

No branches or pull requests

2 participants