Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
twagner
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
twagner
10y ago
Quick clarification: No need to go through API Gateway if you don't actually need the https endpoint - all AWS SDKs can hit Lambda's REST APIs directly, which also reduces p50 latency.
2.
▲
by
twagner
10y ago
Yes. First step was https://aws.amazon.com/blogs/aws/new-amazon-linux-container-... . Layering Lambda's image on top of that to assist people building and testing is definitely on our roadmap.
3.
▲
by
twagner
10y ago
Yep, I hear about the lack of Python3 all the time, and I know our Python users are waiting for it. On the roadmap, and partially complete, but competing with some other language work at the moment.
4.
▲
by
twagner
10y ago
@hobofan, take a look at our recent API Gateway features and see if the greedy paths and pass-through settings provide what you're looking for (they're also supported by CloudFormation). We tried to simplify the "configure ev
5.
▲
by
twagner
11y ago
Suboptimal ;-). This is a common request, and we're looking at options for a config feature that's independent of the code payload. Tweet or email me detailed suggestions/asks for it: @timallenwagner or timwagne at amazon.com
6.
▲
by
twagner
11y ago
This is great feedback encoderer. We're going to keep iterating fast to make deployment, packaging, and global (cross-region) updates even easier for AWS Lambda.
7.
▲
by
twagner
11y ago
Appreciate the feedback/suggestions! We'll take a look at expanding the disk space, probably as part of the "power level" adjustment that already affects memory, CPU power, etc.
8.
▲
by
twagner
11y ago
AWS Lambda function schedules are driven off the same fault-tolerant, highly available service that powers SWF. (So...yes, they're reliable :)
9.
▲
by
twagner
11y ago
Totally agree. It's our most requested feature on the Lambda team and a priority to enable.
10.
▲
by
twagner
11y ago
AWS Lambda supports nodejs and jvm-based languages (Java, Scala, Clojure, etc.) directly, and lets you run Python, shell scripts, and arbitrary executables as well. We started with nodejs because it worked nicely for expressing our initial
11.
▲
by
twagner
11y ago
Thanks (and love the suggestion of R, though we probably want a repl as well for that).
12.
▲
by
twagner
11y ago
1. Working on it :). I'd appreciate feedback on the scope of an mvp feature here: e.g., daily/hourly/5 minute-ly periodicity? Scheduled day/time in the future for a one-off? Or is anything short of full cron not enough?
13.
▲
by
twagner
11y ago
Tldr: Only if your events are extremely infrequent. With an inter-event arrival rate of seconds to few minutes, your jvm processes get frozen and thawed out the vast majority of the time to avoid the initialization/load overhead that w
14.
▲
by
twagner
11y ago
@RossM: We will definitely be supporting additional languages. Happy to take input on the order... @vegasje: VPC tunneling is a frequent customer ask and is on the roadmap.