Viewing profile — iain_hecker
iain_hecker
HN member- Joined
- Wed, Jul 02, 2014, 3:34 PM UTC
- HN karma
- 9
- Public activity
- 8 items
- HN profile
- View on Hacker News ↗
About iain_hecker
No profile information was provided.
Recent public activity
-
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…
-
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 …
-
comment
Comment #7978879
This. Also SOA means STD in Dutch, so we don't want to use it that often ;)
-
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…
-
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.
-
comment
Comment #7978512
Yup we are. There might be multiple applications interested in the event and they each get their own queue.
-
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.
-
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…