-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
(aws-cdk-lib): Use a streaming json implementation when serializing the tree.json file #27261
Comments
Thanks for the request @bmoffatt, I have never seen an error related to generating |
Here's an (unreasonable) reproduction of the error :) - https://github.com/bmoffatt/cdk-tree-limit/tree/main - 9001 stacks each with 101 sqs queues! The real-world application I'm working with is several large stacks, some with 100s of resources, fanned out to every AWS region. |
Seems like there's a way to avoid the tree.json being generated, with:
Is this a reasonable workaround for you? |
Oh nice! Trying it out briefly, I can see it'll break a workflow used for diff-ing changes during development and code review. I'll have to check with my team to see how feasible it is to change or go without. |
So while no-one has complained yet about losing access to cdk diffs, someone on my team recently ran into an issue with an internal platform tool barfing on not being able to find and walk the tree file. For now, we're back to using my shady node patch workaround. |
+1 on this issue -- one of our applications recently passed the threshold to trigger this issue, and setting We may be able to use something like @bmoffatt 's patch for now to get around this, but we definitely don't want to rely on a patched NodeJS longterm either :) Would appreciate if the CDK team is able to prioritize this fix! |
+1 our team has encountered this issue and we're currently working around it with the above mentioned ways but we're waiting for a long term fix :) |
We can switch to a streaming implementation for the writer, but this is used in the AWS plugin for VSCode which is also written in JS, and then it will refuse to read that large file. As another way to make sure the file doesn't grow too large (a technique we could also apply to the
That way, consumers still have something, they just lose browseable detail if they have humongous trees, until the code is changed to deal with the indirection. |
Describe the feature
The tree.json file should be able to be arbitrarily large. Currently it is limited to ~512mb, node's max string size!
Use Case
I have a growing CDK application which is running into limitations of node.js when the tree.json file is being written during synthesis. I'm hitting the max string size!
With either of my workarounds, my tree.json ends up being ~630mb.
Proposed Solution
I tried patching
aws-cdk-lib
to use json-stream-stringify, and while this appeared to resolve my synthesis failures, it didn't pass all the unit tests, presumably because the file write no longer happens synchronously. I'd be willing to spend more time opening a pull-request and iterating on this approach if ya'll think it's reasonable.bmoffatt@91edfec
The way I've actually unblocked myself before developing the above library change was patching my node.js build - I went this way because I knew I'd be able to validate it faster than learning how to modify and test and contributions to the aws-cdk. Obviously I don't want to maintain either patch long term :)
An alternative solution to my problem would be making the generation of the
tree.json
optional. I'm new-ish to CDK development and don't really know what it's for 🤷♂️ - my light googling makes me think it's an optional bit of metadata for use with visualizersOther Information
No response
Acknowledgements
CDK version used
v2.91.0
Environment details (OS name and version, etc.)
macOS
The text was updated successfully, but these errors were encountered: