Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

277
Views
Unable to deploy lambda function written in Go

I am attempting to deploy my code to AWS Lambda. I've written it in Go. It builds just fine but I receive this error when running it via the Lambda test functionality:

{
  "errorMessage": "fork/exec /var/task/github-activity: no such file or directory",
  "errorType": "PathError"
}

You can view the full code at: https://github.com/JustinDFuller/github-activity I have tested and seen that it works fine on my machine. (I've tried on windows and linux).

The file I am deploying is made by running the following commands:

GOOS=linux GOARCH=amd64 go build -o main awsLambdaImpl.go zip main.zip main

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

Handler for a Go Lambda is the path to executable.

Since you're uploading a zip file of the following structure

main.zip
|
`-- main  <-- executable

your handler name has to be main.

If you packed your lambda in the following way, your handler would then be

main.zip
|
`-- subdir
      |
      `-- executableInASubdirPackedIntoAZip  <-- executable

your handler would then be subdir/executableInASubdirPackedIntoAZip.

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!