Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
a-robinson
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
a-robinson
2y ago
"Basic" (i.e. full) backups have been included in the OSS version since its November 2020 release (20.2): https://www.cockroachlabs.com/blog/backup-restore/ They are still pretty limited compared to what
2.
▲
by
a-robinson
3y ago
> My current database is in a private subnet, it would be unfortunate to have to open it up to the world to take advantage of this. Agreed, this is a big current limitation. As mentioned in the blog post, though, we'll be adding sup
3.
▲
by
a-robinson
3y ago
Misleading title -- it isn't claiming that there are any newsletters generating $22M a year individually. It's just saying that the top 27 (why 27?) newsletters in aggregate make at least that much.
4.
▲
by
a-robinson
4y ago
Yes, exactly!
5.
▲
by
a-robinson
5y ago
WebSockets are actually already supported! See the "Can Durable Objects serve WebSockets?" section from the closed beta announcement last fall: https://blog.cloudflare.com/introducing-workers-durable-obje...
6.
▲
by
a-robinson
6y ago
Storage is replicated across a handful of nearby sites. It does add some latency to writes, but that's preferable to Objects being offline or lost in the case of hardware or network failures. There's no Jepsen testing in the works
7.
▲
by
a-robinson
6y ago
It means that you'd use a different ID to access each document. Each document's Durable Object would run the same code as part of the same namespace of Durable Objects, but have their own in-memory and durable state. Check out the
8.
▲
by
a-robinson
7y ago
I'm not a tax lawyer, but 20% is the long-term capital gains rate for earnings greater than $400k or so - https://www.nerdwallet.com/blog/taxes/capital-gains-tax-rate... That page also calls out a "net i
9.
▲
by
a-robinson
7y ago
They switched to calendar-based versioning earlier this year with the 19.1 release, for reasons explained in this blog post: https://www.cockroachlabs.com/blog/calendar-versioning/
10.
▲
by
a-robinson
7y ago
With how often I've seen spaced repetition mentioned online recently, I'm starting to assume there's a grand conspiracy that's trying to use spaced repetition to trick me into remembering about spaced repetition.
11.
▲
by
a-robinson
7y ago
In this case it actually makes sense because it's not easy to find a non-paywalled version of the paper.
12.
▲
by
a-robinson
8y ago
Amazon - https://aws.amazon.com/rds/aurora/details/postgresql-details...
13.
▲
by
a-robinson
8y ago
To add on to that last point, you don't need to pick in advance which region or regions your code will run in. You push your code once, and it will run in whichever edge locations receive requests, potentially all 165+ locations if you
14.
▲
by
a-robinson
8y ago
Yeah, it appeared to just be general resource contention from having to share the machine -- CPU interrupts, less memory available, etc. I'll note, though, that the 5% number is when using host networking for both Cockroach and the cli
15.
▲
by
a-robinson
9y ago
WAN-optimized consensus protocols like Mencius and Egalitarian Paxos indeed are better for writes because any node can commit a write in one round trip, but they don't allow for reads with zero round trips. Every read must go through t
16.
▲
by
a-robinson
9y ago
Yes: https://github.com/cockroachdb/cockroach The parent poster was referring to CockroachDB as CRDB.
17.
▲
by
a-robinson
9y ago
It's actually even in 1.0.0! We just haven't written about it previously. The doc you found is the best resource. If you want even more detail, you can check out the original RFC: https://github.com/cockroachdb
18.
▲
by
a-robinson
9y ago
It helps with both, but is more dramatic for reads. Reads go from 1 RTT to 0 RTTs, while writes go from 2 RTTs to 1 RTT. For example, consider a cluster in which the nodes are 200ms RTT away from each other. * A read will take 200ms if the
19.
▲
by
a-robinson
9y ago
Why didn't they just set up a Patreon page for themselves?
20.
▲
by
a-robinson
9y ago
For single-key operations only, but that is still much better than the average system he's looked at.
21.
▲
Amazon Aurora: Design Considerations for a High Throughput Cloud-Native RDBMS
(dl.acm.org)
2 points
by
a-robinson
9y ago
|
0 comments
22.
▲
by
a-robinson
9y ago
The Dynamo paper is from 2007... How much has Amazon published about their internal workings since then?
23.
▲
by
a-robinson
9y ago
CockroachDB reads are strongly consistent, not eventually consistent. You don't have to wait at all.
24.
▲
by
a-robinson
9y ago
Yes, it works. Your latency will just be correspondingly higher (due to the speed of light). We are constantly testing a cross-region (i.e. US-East and US-West) cluster and have periodically run tests on cross-continent clusters (US to Asia
25.
▲
by
a-robinson
10y ago
Yeah, I'm really looking forward to a true local storage option. I'd recommend watching https://github.com/kubernetes/kubernetes/issues/7562 and https://github.com/kubernetes/ku
26.
▲
by
a-robinson
10y ago
I believe krenoten is referring to something along the lines of https://github.com/kubernetes/kubernetes/issues/7562
27.
▲
by
a-robinson
10y ago
Sorry about that! They should all be working now.
28.
▲
Minikube: easily run Kubernetes locally
(blog.kubernetes.io)
39 points
by
a-robinson
10y ago
|
15 comments
29.
▲
by
a-robinson
10y ago
It's not clearly advertised on their landing page, but it looks like the lifetime registration fee is being waived for a limited time, so if you're interested at all you should consider signing up now.
30.
▲
by
a-robinson
10y ago
"Metrics from Kubernetes 1.2" is discussing the latency of requests to the Kubernetes API (for managing what's in the cluster). The latency referred to in the demo is the latency of requests from the loadbots to the nginx con
More ›