php小編柚子將為您介紹如何使用Golang從`template`目錄外部呼叫SAM。 SAM(Serverless Application Model)是一種用於定義和部署無伺服器應用程式的開發框架,而Golang則是一種高效且易於使用的程式語言。在開發過程中,我們可能需要從外部目錄呼叫SAM模板,本文將詳細介紹此過程。透過以下步驟,您將能夠輕鬆在Golang中使用外部SAM範本。
我有一個多模組項目,其中一個模組用於執行整合測試,而另一個模組則包含我的應用程式(待測試)。我想從 sam 模板目錄外部運行 build
和 invoke
。
使用指令 sam build -ttests/helloworld/template.yaml
執行階段建立工作正常,如下所示
~/w/r/sommelier (feature-integrationtests|✔) $ sam build -t tests/helloworld/template.yaml building codeuri: /users/kuldeep/work/repos/sommelier/lambdas/import-recommendations runtime: provided.al2 metadata: {'buildmethod': 'go1.x'} architecture: arm64 functions: helloworldfunction running gomodulesbuilder:build build succeeded built artifacts : .aws-sam/build built template : .aws-sam/build/template.yaml commands you can use next ========================= [*] validate sam template: sam validate [*] invoke function: sam local invoke [*] test function in the cloud: sam sync --stack-name {{stack-name}} --watch [*] deploy: sam deploy --guided
但是當我嘗試呼叫時,它失敗如下
~/W/r/sommelier (feature-integrationTests|✔) $ sam local invoke -t tests/helloworld/template.yaml Invoking bootstrap (provided.al2) Skip pulling image and use local one: public.ecr.aws/sam/emulation-provided.al2:rapid-1.70.0-arm64. Mounting /Users/kuldeep/Work/repos/sommelier/lambdas/import-recommendations as /var/task:ro,delegated inside runtime container START RequestId: 53716d16-562c-42f1-bad7-b415e27004b3 Version: $LATEST 24 Jan 2023 09:56:03,133 [ERROR] (rapid) Init failed error=fork/exec /var/task/bootstrap: no such file or directory InvokeID= Function 'HelloWorldFunction' timed out after 5 seconds END RequestId: 5eeafe42-303b-40b4-bf96-d74809bb8636 REPORT RequestId: 5eeafe42-303b-40b4-bf96-d74809bb8636 Init Duration: 0.13 ms Duration: 5000.00 ms Billed Duration: 5000 ms Memory Size: 128 MB Max Memory Used: 128 MB No response from invoke container for HelloWorldFunction
我應該怎麼做才能達成這個目標?
想通了。基本上, sam build -t ......
在目前工作目錄中建置並產生工件。要運行已建置的內容,我們不需要指定模板位置,而是直接執行 sam local invoke
以上是如何使用 Golang 從 `template` 目錄外部呼叫 SAM?的詳細內容。更多資訊請關注PHP中文網其他相關文章!