Live data from Hacker News

Viewing profile — iain_hecker

iain_hecker

HN member
Joined
Wed, Jul 02, 2014, 3:34 PM UTC
HN karma
9
Public activity
8 items

About iain_hecker

No profile information was provided.

Recent public activity

  1. comment
    Comment #7980045

    That's where SNS comes in. We publish to SNS which will fan out to multiple SQS queues. When a new service is built, it says to SNS "subscribe my queue to these topics". The publis…

  2. comment
    Comment #7980008

    We have all services running inside a VPN (see one of our older posts: https://blog.yourkarma.com/building-private-clouds-with-amaz... ) and we also use HTTP Basic token auth that …

  3. comment
    Comment #7978879

    This. Also SOA means STD in Dutch, so we don't want to use it that often ;)

  4. comment
    Comment #7978859

    We use SQS for basically everything that happens asynchronously to the main flow. So when a user signs up there are a bunch of things that need to happen straight away (create an a…

  5. comment
    Comment #7978805

    Each app gets their own queue. So there is a queue for the shipment app and for the mailer app. When an event is published to SNS, it gets added to both queues.

  6. comment
    Comment #7978512

    Yup we are. There might be multiple applications interested in the event and they each get their own queue.

  7. comment
    Comment #7978436

    We will! There are however a couple of really nasty issues that we don't feel comfortable to release to the public yet.

  8. comment
    Comment #7977585

    It's easier to test individual items, for sure. Testing small code bases is the best thing ever. However, some actions require stuff to happen in multiple services. There are "cont…