Live data from Hacker News

Viewing profile — obcilion

obcilion

HN member
Joined
Tue, Jan 11, 2022, 1:58 PM UTC
HN karma
15
Public activity
12 items

About obcilion

My name is Raymond. I build APIs for Unloc.

Recent public activity

  1. 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 …

  2. 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 …

  3. 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.

  4. 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.

  5. 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…

  6. 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 …

  7. 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.

  8. 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 :(

  9. comment
    Comment #29891738

    Thanks for letting me know :) Definitely not on the same IP, but I sent an email nonetheless.

  10. 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?

  11. 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.

  12. 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…