Viewing profile — rsanders
rsanders
HN member- Joined
- Wed, Oct 01, 2008, 3:48 PM UTC
- HN karma
- 1,068
- Public activity
- 225 items
- HN profile
- View on Hacker News ↗
About rsanders
Recent public activity
-
comment
Comment #43345938
I'd say that medicine has been a net benefit to bettering the lives of those who have access to it. I'm biased, though - "drugs" have kept me alive and able for the last 30 years.
-
comment
Comment #43344360
The gray market for peptides is pretty fascinating. I've spent the last month exploring it and interacting with some of the Chinese entrepreneurs involved, as well as the informal …
-
comment
Comment #42054531
I'm pretty new to Rust so forgive me if I'm mistaken, but it seems to me that this crate doesn't require the use of tokio.
-
comment
Comment #39573003
Which ones would you recommend?
-
comment
Comment #29239580
Swapping in a multi-vendor world also implies standardization. It’s too early in this technology to standardize - that would stifle progress. Swap stations would also be far more e…
-
comment
Comment #24695239
If CSV were being used just to exchange data with Excel, we probably wouldn't be using CSV. Many systems neither need nor know that ="01" should be treated as the string "01". If E…
- story
-
comment
Comment #24643166
That's a good point. But then you're not benchmarking C++ as a distinct language. So what would sufficiently distinguish a C++ program from a C program? Let's assume it's not just …
-
comment
Comment #24557954
Ha! I picked up the original project (dosemu1) from an abandoned skeleton created by Matthias Lautner. I was a larval programmer and Linux was very much in its infancy. I really wa…
-
comment
Comment #24507719
Can you expand on this: "AWS healthchecks each kubernetes node, but not your pods themselves". Are you talking about a keepalive connection to an unhealthy pod which is reused for …
-
comment
Comment #24485635
Fewer features and fewer lines of code, and those LOC are written in Go, which is the language in which CockroachDB is written and which, presumably, for which their team and tooli…
-
comment
Comment #24364263
It looks possible on EKS now. https://aws.amazon.com/about-aws/whats-new/2020/08/amazon-ek...
-
comment
Comment #24364230
I wrote a little fork+spinloop program w/100 subprocesses and deployed it with a low (100m) CPU request and no limit. It's certainly driving CPU usage to nearly all 8 of the 8 core…
-
comment
Comment #24360363
That may be more likely with limits, but it doesn’t require a limit. I’ve had lots of fun with that in Elasticsearch pods with no limit. And then you get to enjoy a nice cascading …
-
comment
Comment #24360342
I should have said that it seems like the wrong fix to the problem. But I have since learned that limits can cause excessive throttling. And of course you may want your pods to be …
-
comment
Comment #24355531
Can you explain how having a CPU limit set (at any level) has a negative effect on latency? That's an important factor to understand. The arguments for allowing containers to burst…
-
comment
Comment #24355059
A container with a request but without a limit should be scheduled as Burstable, and it should only receive allocations in excess of its request when all other containers have had …
-
comment
Comment #24352695
Excluding kernel bugs, CPU limits just provide an upper bound on burst capacity. That controls oversubscription of CPU on a node. As with any other kind of oversubscription of a re…
-
comment
Comment #24352624
Removing CPU limits seems like a bad idea now that there's a kernel fix. But putting that aside... I don't understand why pods without CPU limits would cause unresponsive kubelets.…
-
comment
Comment #24352541
This advice is confusing. CPU is a "compressible" resource -- pods don't get killed for (trying to) exceed it. Pods don't get evicted from nodes based on CPU starvation, so autosca…
-
comment
Comment #23706584
Thanks! I didn't realize they were such distinct personalities.
-
comment
Comment #23704763
I thought Red Hat announced last year they were abandoning Btrfs and enhancing XFS with similar features.
-
comment
Comment #23471281
The support for multi-arch docker images is getting there, but there's not much of an ecosystem. Between Raspberry Pi, ARM instances on AWS, and ARM-based Macs, it ought to get to …
-
comment
Comment #23154932
Retrying transactions is something every app ought to handle, but it's rare enough that most codebases I've seen just punt on it.
-
comment
Comment #22012492
My last company used Terraform to manage Kubernetes. The main issue is that the TF Kubernetes provider supports a limited subset of K8S object types, and of fields within those K8S…