3

我正在使用actix_weband编写应用程序rusoto_s3

当我直接从 actix 请求之外运行命令时main,它运行良好,并且get_object按预期工作。当它被封装在一个 actix_web 请求中时,该流被永远阻塞。

我有一个为所有请求共享的客户端,它封装在一个Arc(这发生在 actix 数据内部)中。

完整代码:

fn index(
    _req: HttpRequest,
    path: web::Path<String>,
    s3: web::Data<S3Client>,
) -> impl Future<Item = HttpResponse, Error = actix_web::Error> {
    s3.get_object(GetObjectRequest {
        bucket: "my_bucket".to_owned(),
        key: path.to_owned(),
        ..Default::default()
    })
    .and_then(move |res| {
        info!("Response {:?}", res);
        let mut stream = res.body.unwrap().into_blocking_read();
        let mut body = Vec::new();
        stream.read_to_end(&mut body).unwrap();
        match process_file(body.as_slice()) {
            Ok(result) => Ok(result),
            Err(error) => Err(RusotoError::from(error)),
        }
    })
    .map_err(|e| match e {
        RusotoError::Service(GetObjectError::NoSuchKey(key)) => {
            actix_web::error::ErrorNotFound(format!("{} not found", key))
        }
        error => {
            error!("Error: {:?}", error);
            actix_web::error::ErrorInternalServerError("error")
        }
    })
    .from_err()
    .and_then(move |img| HttpResponse::Ok().body(Body::from(img)))
}

fn health() -> HttpResponse {
    HttpResponse::Ok().finish()
}

fn main() -> std::io::Result<()> {
    let name = "rust_s3_test";
    env::set_var("RUST_LOG", "debug");
    pretty_env_logger::init();
    let sys = actix_rt::System::builder().stop_on_panic(true).build();
    let prometheus = PrometheusMetrics::new(name, "/metrics");
    let s3 = S3Client::new(Region::Custom {
        name: "eu-west-1".to_owned(),
        endpoint: "http://localhost:9000".to_owned(),
    });
    let s3_client_data = web::Data::new(s3);

    Server::build()
        .bind(name, "0.0.0.0:8080", move || {
            HttpService::build().keep_alive(KeepAlive::Os).h1(App::new()
                .register_data(s3_client_data.clone())
                .wrap(prometheus.clone())
                .wrap(actix_web::middleware::Logger::default())
                .service(web::resource("/health").route(web::get().to(health)))
                .service(web::resource("/{file_name}").route(web::get().to_async(index))))
        })?
        .start();
    sys.run()
}

stream.read_to_end线程中被阻止并且永远不会解决。

我已经尝试根据请求克隆客户端并为每个请求创建一个新客户端,但在所有场景中我都得到了相同的结果。

难道我做错了什么?

如果我不异步使用它,它会工作......

s3.get_object(GetObjectRequest {
    bucket: "my_bucket".to_owned(),
    key: path.to_owned(),
    ..Default::default()
})
.sync()
.unwrap()
.body
.unwrap()
.into_blocking_read();
let mut body = Vec::new();
io::copy(&mut stream, &mut body);

这是东京的问题吗?

4

1 回答 1

3
let mut stream = res.body.unwrap().into_blocking_read();

检查执行into_blocking_read():它调用.wait(). 您不应该在Future.

由于 Rusotobody是 a Stream,因此有一种异步读取它的方法:

.and_then(move |res| {
    info!("Response {:?}", res);
    let stream = res.body.unwrap();

    stream.concat2().map(move |file| {
        process_file(&file[..]).unwrap()
    })
    .map_err(|e| RusotoError::from(e)))
})

process_file不应该阻塞封闭的Future. 如果它需要阻塞,您可以考虑在新线程上运行它或使用tokio_threadpool'sblocking封装。

注意:你可以在你的实现中使用 tokio_threadpool blocking,但我建议你先了解它是如何工作的。


如果您不打算将整个文件加载到内存中,则可以使用for_each

stream.for_each(|part| {
    //process each part in here 
    //Warning! Do not add blocking code here either.
})

另见

于 2019-07-03T09:16:54.740 回答