-
-
Notifications
You must be signed in to change notification settings - Fork 77
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
[BUG] The input directory "/var/bin" does not exist #41
Comments
Does |
Thanks for the response I appreciate the help @Sparticuz . I've created the I've copied the same Please let me know if my understanding to your reply is correct 🙏 |
adding it to var/bin inside the function will add it to the functions working directory, not to /var/bin. If you open terminal and navigate to that folder, you can type |
Thanks for clarifying and for the suggestion @Sparticuz . I've followed your advise changing it to:
Alongside other different input attempts, it did not work. I suspected that the chromium binary file (chromium.br?), is not being copied into the source code upon serverless deployment. I've validated my assumptions by:
Would you know what I need to do to make the I appreciate your help thank you so much 🙏 |
Following above's comment - I verified that the |
I've been able to solve the issue by including the locally installed dependency in the serverless deployment.
|
Not sure if this is a hack or what but here's how I made it work with AWS SAM:
Hope this helps the next noob like myself trying to make this work. |
Interesting, you shouldn't have needed to do that. You are specifically pointing to the layer location. |
@rajkrajpj , @Sparticuz or anyone else. I have been stuck on trying to run my webscraper on AWS for 2 weeks now trying everything. Ive tried all chrome-aws-lambda, sparticuz aws lambda etc and got to this after reading through the internet. Now this is my setup after typing 'npm ls' you can see these are my dependencies C:\Users\glenn Im using Node.js Version: v18.12.0 Lambda / GCF Runtime: nodejs18.x Memory my index.js file is as bellow which runs a function called scraper in scrape.js `const scraper = require('./scrape.js'); exports.handler = async (event) => { In the scraping code before the bowser launched i have a console.log so i know everything works up until there. However the error occurs straight after and it doesnt seem like the browser is launching when i hit test. I get this error and this is what ive used to open the browser
please note in the executable path ive tried leaving is empty (), writing var/bin, and what is in there currently is what I saw according your last post here. Im not quite sure what to put here and how to find out how, and if this fixes the problem Could you or anyone please explain what the solution is and how I can finally overcome this in a simple way possible considering im average at coding? Do i need to copy and paste chromium.br somewhere else ?? will buy you a case of beers if you can solve this XD thanks Glenn, |
Hey, im a little confused about this step specifically as it appears to be what i need to do to solve the problem? how to I include the locally instaled dependency in the serverless deployment ? |
I faced the same error: @gbanis I'm another noob myself, and you saved my day. However, I do know why this is the case. Maybe it should be documented in the Readme. But I wonder how people deal with layers in SAM. I had to manually create the bucket, and then manually download the artifact from the release, and then manually run the command
I still didn't figure it out how make that part of SAM or automatic. |
I encountered a similar issue, and the solution was to exclude '@sparticuz/chromium' from the bundled lambda. Here's a code snippet using CDK: bundling: {
externalModules: ['aws-sdk', '@sparticuz/chromium'] // Add any external modules here
}, |
I was getting Error: The input directory "/var/task/src/bin" does not exist. at Function.executablePath with an empty await chromium.executablePath() when deployed on a node18 lambda using the lambda layer method and chromium.executablePath('/opt/nodejs/node_modules/@sparticuz/chromium/bin') fixes it, not sure why it was unable to find the path alone, it was resolving as undefined |
I now also have to force the nodejs path in my lambda code using: const lambdaLayerChromiumExecPath = '/opt/nodejs/node_modules/@sparticuz/chromium/bin'; // Ref; https://github.com/Sparticuz/chromium/issues/167
const executablePath = process.env.BROWSER_EXECUTABLE_PATH || (await chromium.executablePath(lambdaLayerChromiumExecPath)); Because I'm getting the /var/bin error. I'm creating the layer like so in CDK: private createLayerFromZip(name: string, zipName: string, props?) {
const layer = new LayerVersion(this, name, {
code: Code.fromAsset(path.join(__dirname, `../layers/${zipName}`)),
compatibleRuntimes: [Runtime.NODEJS_18_X],
...props,
}); Where the ZIP is the download from the release page. But now I read from @Sparticuz that that is not the way to handle this. What is the proper/envisioned way to do this? |
i'm following this "@sparticuz/chromium": "123.0.1", Lambda Runtime: nodejs18.x Memory I'm not getting Error: The input directory "/var/task/src/bin" |
Hello @Sparticuz please help me with this error : This is happening when my function is uploaded in lambda , I am using Nodejs serverless configuration. It has been a week that i try to fix it but no luck. Best regards. |
Make sure you either have this package as a dependency or you have it as a layer |
Thanks for quick reply @Sparticuz Actually when i downloaded the function from lambda as zip i noticed the bin folder was missing from you library (/node_modules/@sparticuz/chromium/bin) => bin folder missing i have no clue how that happened since locally it is there . |
@RRACI-Blerand You should be able to just deploy the zip itself as a layer. If you are using a bundler you'll need to include it in the bundle somehow. Each bundler is different |
Hi there @Sparticuz i managed to upload the function into s3 bucket then from there upload as zip into my lambda function and there is nothing missing from the libraries now, however i have an error now would you be so kind to assist me please. ERROR Error: Error: Navigating frame was detached |
@Sparticuz given the number of issues people have related to this problem, I wonder if recommending the approach @gbanis outlined here #41 (comment) might not be the best way reduce the noise around this topic. It's possibly not as elegant of an approach as you imagined, but it's guaranteed to work in all cases. If you can get onboard with that, I'd be happy to update the README with a "recommended" or an "if all else fails" section. |
Can confirm that #41 (comment) did the trick for me as well. Randomly starting getting this error after a deploy, but specifying the chromium path fixed it |
The easiest solution for me was to use a pre-built Lambda Layer, a list which can be found here. Once added, there is no need to change the executablePath in your code. You can include @sparticuz/chromium as a dependency, but exclude it from the sam build. Example yml:
|
Environment
chromium
Version: 109.0.1puppeteer
/puppeteer-core
Version: 19.4.0Expected Behavior
#24 (comment)
Current Behavior
Steps to Reproduce
Possible Solution
The text was updated successfully, but these errors were encountered: