What are some valid reasons why people wouldn't now use these rust libraries and extend them to their preferred language? Maintaining clients is tedious work and prone to abandonment.
General Availability of the AWS SDK for Rust
31–40 of 61 posts
Re: General Availability of the AWS SDK for Rust
#32Re: General Availability of the AWS SDK for Rust
#33Earlier quoted context omitted.
Thanks for your work on this! Are there plans to improve the compilation times? Aws sdk crates are some of the slowest dependencies in our build—which feels odd for what are basically wrappers for http clients.
It's on our radar—one of the biggest issues is that some of the services like EC2 are absolutely massive. We're investigating ways for customers to only compile the operations they need, etc.
Re: General Availability of the AWS SDK for Rust
#34One thing I sorely missed was workers for consuming SQS messages. Ended up having an intern adapt a worker for the old community AWS SDK (rusoto) into this: https://github.com/Landeed/sqs_worker
Also on my dream list of features: gRPC support for Lambda.
Re: General Availability of the AWS SDK for Rust
#35I've been testing this for a while! One thing I sorely missed was workers for consuming SQS messages. Ended up having an intern adapt a worker for the old community AWS SDK (rusoto) into this: https://github.com/Landeed/sqs_worker Also on my dream list of features: gRPC support for Lambda.
Re: General Availability of the AWS SDK for Rust
#36I'm a Rust beginner, so please excuse any naivete herein: Does this SDK _necessarily_ require an async runtime or is it possible to use it in a traditional sync application using whatever extra facilities (e.g. block_on) which would be required to "normalize" it?
You can use tokio’s block_on to sync-ify. You need to instantiate a runtime, but you don’t need to do run your whole application in it, just the Future. edit: Tokio can be beefy. You might look at some of the smaller single-threaded runtimes to execute your future in the main application thread if you’re only concerned about serial execution.
Re: General Availability of the AWS SDK for Rust
#37Huge. I've told people before that the SDK was basically stable, but the fact that it wasn't 1.0 was still concerning for them.
Re: General Availability of the AWS SDK for Rust
#38Re: General Availability of the AWS SDK for Rust
#39I realize this is a "how long is a piece of string" question, but I'm wondering what cost benefits you might realistically see from moving lambdas from Python to a faster language like Rust? You pay (partly) for execution time so I guess you should see some savings, but I'm wondering how that works out in practice. Worth it?
* https://andre.arko.net/2018/10/25/parsing-logs-230x-faster-w...
* https://andre.arko.net/2019/01/11/parsing-logs-faster-with-r...
(obviously most people will not realize infinity money)
Re: General Availability of the AWS SDK for Rust
#40I realize this is a "how long is a piece of string" question, but I'm wondering what cost benefits you might realistically see from moving lambdas from Python to a faster language like Rust? You pay (partly) for execution time so I guess you should see some savings, but I'm wondering how that works out in practice. Worth it?
https://greenlab.di.uminho.pt/wp-content/uploads/2017/09/pap...