-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Update install.md #3235
Update install.md #3235
Conversation
Configuration to deploy AWS Lambda using serverless, esbuild and serverless-esbuild
Hi, thanks for the PR. Did you see the existing section about https://sharp.pixelplumbing.com/install#esbuild This section in the sharp docs is more generally about code bunders rather than being specific to deployment, so I'm not sure details of using downstream deployment tools fits here. Maybe we should add a sentence to the existing Lambda section highlighting that those using a code bundler should read the Bundlers section? |
Prior to my development, I came across this issue when trying to deploy from my local environment
On this note, I did try to follow the aws-lambda instructions while local deployment with serverless-esbuild but it was unable to bundle the with For automatic deployment, we use CodeBuild from AWS and no other configurations were needed for me. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for the update, I've left some questions inline.
@@ -230,6 +230,24 @@ SHARP_IGNORE_GLOBAL_LIBVIPS=1 npm install --arch=x64 --platform=linux --libc=gli | |||
To get the best performance select the largest memory available. | |||
A 1536 MB function provides ~12x more CPU time than a 128 MB function. | |||
|
|||
### serverless-esbuild | |||
|
|||
To deploy AWS Lambda using serverless framework, esbuild and serverless-esbuild on machines other than Linux x64 (glibc), first ensure sharp is excluded from bundling via the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does sharp
need to be listed under externals
on Linux x64 machines too? If so, the wording is a little ambiguous.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need some investigations for this case, if it's required for linux x64 machines as well. So far, in my initial dev deployment, I have configured the following way and it was stable with this configuration.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@lovell It does not work if sharp is not put under external with esbuild. Btw, while testing it seems the above setup does not work for v0.30.5.
Currently, I am using v0.30.3 and under the esbuild script tag I have given - npm install --arch=x64 --platform=linux [email protected]
to match the version. When I tried to update it with v0.30.5 for both package.json and serverless.yml and run the deployment, the was lambda again started saying something is wrong with the installation "Cannot find module '../build/Release/sharp-linux-x64.node'"
If you have some free time, can you look into this as well. Maybe I am doing something wrong here on my setup. Currently I am using the following versions.
dependencies
"sharp": "^0.30.3",
devDependencies
"serverless": "^3.16.0",
"serverless-offline": "^8.4.0",
"esbuild": "^0.14.38",
"serverless-esbuild": "^1.26.2",
"@types/sharp": "^0.30.0",
Thank you! |
For me the esbuild configuration for After running What worked for me was the following configuration: # serverless.yml
custom:
esbuild:
bundle: true
external:
- sharp
installExtraArgs:
- '--arch=x64'
- '--platform=linux' Version of serverless-esbuild: |
Configuration to deploy AWS Lambda using serverless, esbuild and serverless-esbuild