Viewing profile — obcilion
obcilion
HN member- Joined
- Tue, Jan 11, 2022, 1:58 PM UTC
- HN karma
- 15
- Public activity
- 12 items
- HN profile
- View on Hacker News ↗
About obcilion
Recent public activity
-
comment
Comment #29918007
I think it's a decent architectural decision. It's a lot easier to develop solid code that handles a single request than code than handles multiple requests in parallel. Functions …
-
comment
Comment #29917826
The NodeJS application is single-threaded, but the Node EventLoop can handle a huge amount of parallel requests, especially since most of the time per request is spent waiting for …
-
comment
Comment #29904926
Thank you for letting us know! We set our front-end guy on it and it should be a lot better now.
-
comment
Comment #29903672
It's REST but we don't do HATEOAS. All indicators points to it being a lot of work with little to no reward.
-
comment
Comment #29903628
I believe the team responsible for functions, both for GCP, AWS and Azure, do great work in optimizing functions, far, far better work than we could have done on our own. The probl…
-
comment
Comment #29892075
The Firebase suite has been _fantastic_ for developing our app, to quote one of the app developers: "[...] but from start until now, I feel we have saved years of shitty bugs, and …
-
comment
Comment #29891869
It is a full-fledged REST API, but we don't do a lot of caching (other than through Cloudlfare) as most of our endpoints either have volatile data or do various operations.
-
comment
Comment #29891778
I agree! We initially measured in percentiles, but during an internal presentation someone said it was too hard to understand and now we've lost the data :(
-
comment
Comment #29891738
Thanks for letting me know :) Definitely not on the same IP, but I sent an email nonetheless.
-
comment
Comment #29891587
I haven't read the entire article, but I assume you need someone to admin the cluster? How does the savings in billing compare to work needed for maintenance?
-
comment
Comment #29891580
If cold starts wasn't a problem we probably would have stayed with functions, and all of our non-api stuff is still on functions.
-
comment
Comment #29891513
Hi! Author here. Functions still only run a single request at a time, while Cloud Run can run as many as the container can handle. We want to build for multiple smaller requests, s…