Localstack的Lambda函数中DynamoDB的端点URL

问题描述 投票:0回答:1

我正在使用localstack进行本地开发。我有一个名为readings的DynamoDB表,我想从lambda函数中插入项目。

我已经在python运行时中部署了简单的lambda函数:

import os
import boto3

def lambda_handler(events, context):
    DYNAMODB_ENDPOINT_URL = os.environ.get("DYNAMODB_ENDPOINT_URL")
    dynamodb = boto3.resource("dynamodb", endpoint_url=DYNAMODB_ENDPOINT_URL)
    readings_table = dynamodb.Table(DYNAMODB_READINGS_TABLE_NAME)

    readings_table.put_item(Item={"reading_id": "10", "other": "test"})

但是我遇到错误:[ERROR] EndpointConnectionError: Could not connect to the endpoint URL: "http://localstack:4569/"

我已经尝试过localhostlocalstack以及端口:45664569的组合。他们都失败了。

这是我用于启动localstack的docker-compse服务

    localstack:
        image: localstack/localstack:0.11.2
        ports:
            - 4566:4566
            - 8080:8080
        environment:
            SERVICES: "dynamodb,sqs,lambda,iam"
            DATA_DIR: "/tmp/localstack/data"
            PORT_WEB_UI: "8080"
            LOCALSTACK_HOSTNAME: localstack
            LAMBDA_EXECUTOR: docker
            AWS_ACCESS_KEY_ID: "test"
            AWS_SECRET_ACCESS_KEY: "test"
            AWS_DEFAULT_REGION: "us-east-1"
        volumes:
            - localstack_volume:/tmp/localstack/data
            - /var/run/docker.sock:/var/run/docker.sock
            # When a container is started for the first time, it will execute files with extensions .sh that are found in /docker-entrypoint-initaws.d. 
            # Files will be executed in alphabetical order. You can easily create aws resources on localstack using `awslocal` (or `aws`) cli tool in the initialization scripts.
            # source: https://github.com/localstack/localstack/pull/1018/files#diff-04c6e90faac2675aa89e2176d2eec7d8R185
            - ./localstack-startup-scripts/:/docker-entrypoint-initaws.d/

我必须在lambda中设置正确的端点URL,以便我可以将请求发送到localstack的DynamoDB?

aws-lambda localstack
1个回答
0
投票
 try with 
 ports:      
    - "0.0.0.0:4566-4599:4566-4599"  

希望有帮助

© www.soinside.com 2019 - 2024. All rights reserved.