Skip to content

Commit 73b9138

Browse files
authored
fix(core): remove whitespaces in tree.json (#33784)
### Issue # (if applicable) Relates to #27261 ### Reason for this change Makes it possible to synthesize our CDK application, which errors due to tree.json hitting 512mb, which is node's max string size. ### Description of changes tree.json can grow too large to be serialized, as detailed in #27261. One reason why the file is very large is that the serialization uses indentation space of 2. Removing the whitespace from serialization will return a lot of spaces, and it is a very straightforward change. This is OK to do because the file is not meant to be read by human anyway. This PR implements the solution. Ideally, in the future we should also make it possible to split tree.json into multiple files or use the solution in bmoffatt@91edfec, to make it scalable. At that stage, it's also possible to turn indentation space back to 2 (perhaps to aid debugging). For now, however, this issue is blocking the deployment in our team, and we really need this fix to continue. ### Describe any new or updated permissions being added No permission involved. ### Description of how you validated changes Does not affect any functionality. ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 1fea9f1 commit 73b9138

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/aws-cdk-lib/core/lib/private/tree-metadata.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export class TreeMetadata extends Construct {
7777
// tree.json
7878
if (key === 'parent') return undefined;
7979
return value;
80-
}, 2), { encoding: 'utf-8' });
80+
}), { encoding: 'utf-8' });
8181

8282
builder.addArtifact('Tree', {
8383
type: ArtifactType.CDK_TREE,

0 commit comments

Comments
 (0)