使用 rust 在 aws lambda 中调用二进制文件

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

所以我有以下 rust aws lambda 函数:

use std::io::Read;
use std::process::{Command, Stdio};
use lambda_http::{run, service_fn, Body, Error, Request, RequestExt, Response};
use lambda_http::aws_lambda_events::serde_json::json;

/// This is the main body for the function.
/// Write your code inside it.
/// There are some code example in the following URLs:
/// - https://github.com/awslabs/aws-lambda-rust-runtime/tree/main/examples
async fn function_handler(_event: Request) -> Result<Response<Body>, Error> {
    // Extract some useful information from the request
    let program = Command::new("./myProggram")
        .stdout(Stdio::piped())
        .output()
        .expect("failed to execute process");

    let data = String::from_utf8(program.stdout).unwrap();
    let parsed = data.split("\n").filter(|x| !x.is_empty()).collect::<Vec<&str>>();

    // Return something that implements IntoResponse.
    // It will be serialized to the right response event automatically by the runtime
    let resp = Response::builder()
        .status(200)
        .header("content-type", "application/json")
        .body(json!(parsed).to_string().into())
        .map_err(Box::new)?;
    Ok(resp)
}

#[tokio::main]
async fn main() -> Result<(), Error> {
    tracing_subscriber::fmt()
        .with_max_level(tracing::Level::INFO)
        // disable printing the name of the module in every log line.
        .with_target(false)
        // disabling time is handy because CloudWatch will add the ingestion time.
        .without_time()
        .init();

    run(service_fn(function_handler)).await
}

这里的想法是我想以 JSON 格式返回二进制文件的响应。

我使用 cargo lambda 编译该函数,生成 bootstrap 文件,然后我通过包含 bootstrap 二进制文件和 myProgram 二进制文件来手动压缩它。

当我通过向 lambda 面板发送事件来测试我的函数时,我得到带有正确标头等的响应,但响应正文为空。 我正在通过 aws 面板,通过上传 zip 文件在 Amazon Linux 2 上的自定义运行时 上部署我的函数。

当我使用 cargo lambda watchcargo lambda invoke 进行本地测试时,响应正文填充了解析为 json 的 myProgram stdout。

非常感谢任何有关实际云中出现问题的想法或想法!

amazon-web-services rust aws-lambda rust-cargo
1个回答
-1
投票

我的问题是二进制文件中的动态链接库。它实际上是 python 二进制文件,并且缺少特定版本的 GLIBC。 对于我来说,最简单的解决方案是在 Amazon Linux 2 上编译 myProgram

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