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

(core): cdk synth always synthesizes every stack #6743

Open
Townsheriff opened this issue Mar 16, 2020 · 20 comments
Open

(core): cdk synth always synthesizes every stack #6743

Townsheriff opened this issue Mar 16, 2020 · 20 comments
Labels
@aws-cdk/core Related to core CDK functionality effort/large Large work item – several weeks of effort feature-request A feature should be added or improved. p1 package/tools Related to AWS CDK Tools or CLI

Comments

@Townsheriff
Copy link

❓ General Issue

I have multiple stacks in my project and want I deploy only one of them all other stack assets must be present in file tree or else I get ENOENT: no such file or directory, stat....

I did a little digging and figured:
a. cdk cli spawns process ts-node /bin/script.ts
b. cdk cli does not pass stack name to aws-cdk, therefore I cannot know which should be synthesized
c. aws-cdk generates all cloudformation jsons for all stacks it can find and cdk cli picks the ones it needs

I think it would be smart to provide the name of stack and generate only provided one, it would be faster and would not require all assets to be present.

PS.
With aws-cli I'm referening to aws-cdk installed globally and with aws-cdk I refer to project dependency.

The Question

  1. I wonder what was the reasoning for current approach and should it be changed?
  2. Maybe I'm missing something and this can be easily resolved?

Environment

  • **CDK CLI Version: 1.27.0 (build a98c0b3)
  • **Module Version: "@aws-cdk/core": "^1.27.0"
  • **OS: MacOs Mojave
  • **Language: Typescript

Other information

@Townsheriff Townsheriff added the needs-triage This issue or PR still needs to be triaged. label Mar 16, 2020
@SomayaB SomayaB added bug This issue is a bug. guidance Question that needs advice or information. package/tools Related to AWS CDK Tools or CLI labels Mar 16, 2020
@shivlaks shivlaks added the p1 label Apr 7, 2020
@shivlaks
Copy link
Contributor

shivlaks commented Apr 7, 2020

@Townsheriff Did you use the --exclusively flag when synthesizing and deploying the stack that you wanted to work with?

I'm working on a repro so I can dive deeper into the behaviour. I'm going to create an app with 2 stacks (both leveraging assets) and then try to synth and deploy one of them and also providing the --exclusively flag. Let me know if there's anything else I'm missing!

@Townsheriff
Copy link
Author

@shivlaks I did not use the option, perhaps that is solution. I ended up adding env variable which I would use in ts file to determine which stack should be synthesised.

@SomayaB SomayaB removed the needs-triage This issue or PR still needs to be triaged. label May 19, 2020
@jgondron
Copy link
Contributor

@shivlaks Were you able to reproduce with the --exclusively flag in an isolated app? I'm pretty sure I'm experiencing this exact issue even while using the flag, although in a more complicated environment.

@shivlaks
Copy link
Contributor

@jgondron apologies, I have not had a chance to follow up on this one.

Can you describe your environment/setup at a high level?
It would be helpful to continue collecting information for anyone who is able to pick this issue up before me.

@jgondron
Copy link
Contributor

jgondron commented Aug 3, 2020

@shivlaks I have a multistack app with stackA and stackB with corresponding pipelines for deploying each. stackA has things like const codeAsset = lambda.Code.fromAsset(props.lambdaCodePath). The pipeline for stackB needs to exclusively deploy stackB with something like cdk deploy stackB --require-approval never --exclusively, but since the pipeline for stackB does not have the app code for stackA it’s throwing errors such as ENOENT: no such file or directory, stat '/<some codebuild path>/appA/src'

Our current work around is to add something like this to stackA before the lambda.Code.fromAsset call:

if(!fs.existsSync(props.lambdaCodePath)){
  this.node.addError(`Cannot deploy this stack. Asset path not found ${props.lambdaCodePath}`);
  return;
}

Doing this protects it from throwing an exception, but still fails to deploy stackA if it's app source is not found. Perhaps lambda.Code.fromAsset could be changed to perform this type of error handling itself?

@shivlaks shivlaks added the effort/medium Medium work item – several days of effort label Aug 27, 2020
@SomayaB SomayaB removed the guidance Question that needs advice or information. label Sep 3, 2020
jgondron added a commit to ndlib/marble-blueprints that referenced this issue Sep 11, 2020
- Changed image processing pipeline to get manifest pipeline bucket names
from other stacks instead of requiring them via context
- Changed image processing to use the env config to get the rbsc bucket
since that changes per env
- Fixed an issue with the target stack names. We had changed them from
`marble-image` to `marble-image-processing` but had missed updating the
pipeline to use these names when deploying.
- Fixed an issue with the code terminating too soon during synth,
preventing cdk from seeing dependencies correctly. We need to find an
alternative solution to the `if !fs.existsSync(props.lambdaCodePath); return`
checks that still allow the code to continue, but still throws an error
when that stack is deployed. In this specific case, cdk was not seeing
the dependency between image processing and manifest pipeline because
the manifest pipeline was exiting too soon due to the missing files. For
now, I just moved these fs checks down a bit and forced the export/import
to happen in the manifest pipeline. This is a pretty fragile solution,
and it's not very intuitive what's happening when this occurs, so I'm
going to look for a more general solution to this, but this fixes the
immediate issue for now. See aws/aws-cdk#6743
for the original issue we were trying to prevent with these checks.
@NGL321 NGL321 assigned rix0rrr and unassigned shivlaks Jan 25, 2021
@dansalias
Copy link

dansalias commented Jul 5, 2021

I am encountering the same issue.

Synthesising or attempting to deploy a stack with the --exclusively flag when another stack in the app references a nonexistent path with lambda.Code.fromAsset('/path/that/does-not/exist') fails with the message Cannot find asset at /path/that/does-not/exist.

I've put a minimal reproduction together at https://github.com/dansalias/tmp-cdk-6743

@dansalias
Copy link

In my case I have a repository with a number of services, each with their own build process (to compile lambdas) and CDK stack, managed through the same CDK app. When a given service is updated its build process is triggered, followed by deployment. The way the cdk is currently setup requires all services to be built even if just a single service is to be deployed.

I'm happy to work on a PR for this but it would be useful to have some guidance. I imagine it would be a case of advancing this logic so that unspecified stacks aren't even synthesised in the first place.

@dansalias
Copy link

@ericzbeard @rix0rrr are we able to revisit this please?

@diesal11
Copy link
Contributor

Any update on this?

@danieldspx
Copy link

@shivlaks Any update on this? I think that be forced to build everything just to deploy one stack is really bad.

@danieldspx
Copy link

danieldspx commented Oct 17, 2022

What I've done so far, for those looking for a workaround, is to rely on bundlingRequired property in the stack. It is similar to this:

if (!this.bundlingRequired) {
    // We must skip undesired stacks to be able to deploy specific stacks.
    // Refer to: https://github.com/aws/aws-cdk/issues/6743
    console.info('Skipping ' + this.stackName);
    return;
}

This works because in case your stack is selected to be deployed bundlingRequired will be true, and in any other case it will be false. Note that it also works for the bootstrap command gracefully. I did not include this piece of code in stacks that dont use lambda.Code.fromAsset because there is no need for that.

@Ribosom
Copy link

Ribosom commented Jan 24, 2023

I really like the possibility to simply deploy typescript lambdas with cdk. However, this issue is the only big pain I have with cdk. If I have to deploy one stack quickly (in a dev environment), I have to wait multiple times. We have mutiple step function with multiple lambdas each. Every step function is in one stack. If we only want to deploy one step function to test it, we always have to wait for all assets of all stacks to be bundled. If you made a mistake and want to deploy again, you have to wait again for everything to be bundled.

Is there any workarround? Is there a best practice to design the stacks so this is not an issue?

@peterwoodworth peterwoodworth added feature-request A feature should be added or improved. and removed bug This issue is a bug. labels Aug 3, 2023
@dguisinger
Copy link

It seems like the proper solution is to just make separate CDK projects for each stack....or I guess switch back to Terraform. I can't believe this comment thread is still going with no resolution after 3 years. Its so frustrating, somehow AWS makes their active codebase on the tool they tell everyone to use feel like abandonware.

In my case I have two stacks:

  1. Stack 1 creates the build pipeline
  2. Stack 2 creates the deployment

The build pipeline builds the lambda functions, outputs zip files.
The deployment cdk is then supposed to run to deploy the zip files.

But since -e doesn't actually work, I can't deploy the pipeline stack without using one of the above hacks.

@pahud pahud added the @aws-cdk/core Related to core CDK functionality label Mar 13, 2024
@guysqr
Copy link

guysqr commented Apr 23, 2024

I really like the possibility to simply deploy typescript lambdas with cdk. However, this issue is the only big pain I have with cdk. If I have to deploy one stack quickly (in a dev environment), I have to wait multiple times. We have mutiple step function with multiple lambdas each. Every step function is in one stack. If we only want to deploy one step function to test it, we always have to wait for all assets of all stacks to be bundled. If you made a mistake and want to deploy again, you have to wait again for everything to be bundled.

Is there any workarround? Is there a best practice to design the stacks so this is not an issue?

--hotswap

Hot swapping
Use the --hotswap flag with cdk deploy to attempt to update your AWS resources directly instead of generating an AWS CloudFormation change set and deploying it. Deployment falls back to AWS CloudFormation deployment if hot swapping is not possible.

https://docs.aws.amazon.com/cdk/v2/guide/cli.html

@comcalvi comcalvi assigned comcalvi and unassigned comcalvi May 7, 2024
@comcalvi comcalvi changed the title Deploying stack all other stack assets must be present (core): Deploying stack all other stack assets must be present May 7, 2024
@comcalvi comcalvi changed the title (core): Deploying stack all other stack assets must be present (core): cdk synth always synthesizes every stack May 7, 2024
@comcalvi
Copy link
Contributor

comcalvi commented May 9, 2024

The suggestion here: #28136 (comment) is the recommended best practice to avoid this issue. I will get our developer guide updated to reflect this.

The core reason behind this recommendation is that cdk synth is executing your CDK application. Your CDK application has defined some stacks, perhaps like this:

import { StackA, StackB } from '../lib/temp-project-stack';

const app = new cdk.App();
new StackA(app, 'StackA', {});
new StackB(app, 'StackB', {});

new StackA(...) will instantiate the stack, which instantiates all constructs defined in StackA. Any constructs in StackA that use assets, like Lambda functions, will discover their assets during this time, and will throw errors if those assets aren't present.

The errors complaining about non-existent assets are thrown during the execution of your CDK program, so the only way to prevent them is to prevent the CDK from executing that code. The best way to do that is to use some environment variables to prevent the execution of that stack code, as shown by @tmokmss.

@Dzhuneyt
Copy link
Contributor

Dzhuneyt commented Jun 19, 2024

The errors complaining about non-existent assets are thrown during the execution of your CDK program, so the only way to prevent them is to prevent the CDK from executing that code. The best way to do that is to use some environment variables to prevent the execution of that stack code, as shown by @tmokmss.

No, the best way would be for the CDK CLI to be smart enough to understand that new StackA() and its child Constructs will never be needed, if the CLI was invoked with any of these:

  • cdk synth "StackB"
  • cdk deploy "StackB"
  • cdk deploy "*B"

Btw, the "cdk deploy" command already understands (somewhere at a later stage after synth) that it needs to only consider stacks that match the glob pattern provided as first argument. I don't see why is it so difficult to consider this glob pattern in the synth stage also, to conditionally skip redundant synths of stacks that don't match the glob pattern.

@Dzhuneyt
Copy link
Contributor

Dzhuneyt commented Jun 19, 2024

Actually, I don't see why the use case is so difficult to understand.

The command speaks for itself. When an engineer runs cdk synth "StackB" - the intention is clear as day. I want to synthesize StackB. Period.

I don't want to synthesize the whole app and throw away all stacks, but StackB. If that was the case, a better signature for the command would have been cdk app synth --filter "StackB" or something.

@comcalvi comcalvi added effort/large Large work item – several weeks of effort p2 and removed effort/medium Medium work item – several days of effort p1 labels Jul 10, 2024
@comcalvi
Copy link
Contributor

I understand the use case; it makes sense that cdk synth StackA would only synthesize StackA.

The problem is that synthesis operates on the entire CDK App, and requires executing the command specified in the app key of cdk.json or --app. This command is usually something like ts-node bin/my-app.ts. The CDK starts a new process to synthesize your app. That process will just execute your app as you have written it, including new StackB() if it's present.

Synthesis, as a consequence of its current design, cannot be made to operate on individual stacks in the way you have described. I have thought of the following modifications to the design of synthesis that may support this use case, but I don't believe any of them solve more problems than they create.

As far as I am aware, there is no way to tell node (or all the other language runtimes we support) to selectively ignore constructor calls to classes that do not match a certain glob string.

We can't catch and ignore errors thrown from this process, because any errors in that process will terminate it. The best we can do is restart it, and that will just rethrow the same error. Maybe we can workaround this by loading and executing that code at runtime (not sure if this is really possible), but even if we do that, it's not really selectively synthesizing; it's just ignoring certain errors.

Maybe we can provide a custom node runtime that allows us to pass this globstring to the process and selectively ignore constructor calls, but this would need to be very carefully designed and maintenance tradeoffs would need to be considered; I don't expect it would be worth it.

Maybe we can modify the jsii compiler to inject special code into stack constructors to make it ignore certain stack calls, but it's not clear how viable or possible this is.

A less generalized solution, but one that might be more viable, is to vend different cdk init templates that create a new file for each stack, and then a separate file for the whole app. Then if you pass a stack name to cdk synth, it could figure out which file to run based off the glob string passed. This might work, but we'd have to think it through for every language.

I don't like any of these options, because they violate the core premise of synth does; it's an App-level operation. If you want to not synthesize certain stacks within that App, you should modify the source of that App to use the environment variables method described above.

Please let me know if there are implementation paths that I have missed. Contributions are always welcome.

@aws-sde
Copy link
Contributor

aws-sde commented Jul 12, 2024

Ultimately the reason I'd like to synthesise only one stack is to save time. More generally, it would be great if it worked like build systems, which are smart enough to only build what has changed. Why should I wait to resynthesise the whole app when my cdk.out directory has a bunch of perfectly good and up-to-date templates?

Let's say I have a dependency chain of stacks A → B → C (i.e. A depends on B, and B depends on C). Intuitively, when I run cdk synth B --exclusively --app cdk.out, A and B should be resynthesised and written to cdk.out. C should not be resynthesised (unless circular dependencies are a thing?) Or maybe --exclusively should really just do B, and have another mode that also synthesises stacks that depend on B.

@comcalvi For the sake of synthesising one stack, is it necessary to avoid construction of the other stack classes? Can it still construct the stacks, but when it comes to synthesis, re-use what's in cdk.out for stacks that are dependencies of the target stack? Or is it not possible to "reverse engineer" those templates in cdk.out back into constructs/nodes for synthesis?

@github-actions github-actions bot removed the p2 label Jul 14, 2024
Copy link

This issue has received a significant amount of attention so we are automatically upgrading its priority. A member of the community will see the re-prioritization and provide an update on the issue.

@github-actions github-actions bot added the p1 label Jul 14, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
@aws-cdk/core Related to core CDK functionality effort/large Large work item – several weeks of effort feature-request A feature should be added or improved. p1 package/tools Related to AWS CDK Tools or CLI
Projects
None yet
Development

No branches or pull requests