Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
moatra
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
moatra
11y ago
Amazon Cetrificate Manager seems to do this, but it's only available in one region right now.
2.
▲
by
moatra
11y ago
When did the rename happen?
3.
▲
by
moatra
11y ago
Just in time! This will be nice reference. I recently started working on a new Scala driver that uses the v0_4 asynchronous protocol, built on top of Akka's IO module and Play's JSON module. I think I have the performance where
4.
▲
by
moatra
11y ago
They just announced a cron-like scheduler for Lambda, so that may make for a decent alternative.
5.
▲
by
moatra
11y ago
Exponential back off is a good idea, but to make it even better you'll want to add some random jitter to the delay period. Especially in the case of deadlocks this helps avoid another deadlock when two things would have retried at exac
6.
▲
by
moatra
11y ago
Do Continuous Views work with table-table joins, or must there always be at least one stream present? The documentation[1] doesn't specify. If so, this could be an interesting alternative to RethinkDB's changefeeds, as RethinkDB d
7.
▲
by
moatra
11y ago
Is rate limiting state stored in Cassandra? One of the main graphics on the KONG docs shows a Caching plugin ( http://getkong.org/assets/images/homepage/diagram-right.png ), but the list of available plugins do
8.
▲
by
moatra
11y ago
KONG definitely looks interesting, and I'd love to know more about it. However, there's definitely not a lot written about it yet. For example: I've gone searching through the blog posts, github readme, and KONG documentatio
9.
▲
by
moatra
11y ago
That sounds great if your messages in the logs are the complete state for that key, but I'm not seeing how to use that compaction system if the messages are change events. Is there a system designed for snapshotting the aggregate and l
10.
▲
by
moatra
11y ago
Paper - https://www.fiftythree.com/paper
11.
▲
by
moatra
11y ago
if you want to build a new derived datastore, you can just start a new consumer at the beginning of the log, and churn through the history of the log, applying all the writes to your datastore. For high-throughput environments w
12.
▲
by
moatra
12y ago
Ah, thanks. It looks like only a few query types actually return an initial result set: between, min, max, and order_by/limit ( http://rethinkdb.com/docs/changefeeds/python/ ) Is there a way to get an
13.
▲
by
moatra
12y ago
Regarding changefeeds - is there a way to tell when you've consumed all the initial data and are now receiving update diffs?
14.
▲
by
moatra
12y ago
10 seconds
15.
▲
by
moatra
13y ago
Google offers three geocoders: The first[1] converts ip to location, and allows 100 free queries per day. The second[2] converts physical addresses to location as part of it maps JavaScript api, and is part of its 25,000 free requests/
16.
▲
by
moatra
14y ago
I'm somewhat confused. If both the django and flask app are running and you visit "mygreatstartup.com", which app will you see?