Viewing profile — bpineau
bpineau
HN member- Joined
- Sat, May 18, 2013, 6:30 PM UTC
- HN karma
- 94
- Public activity
- 13 items
- HN profile
- View on Hacker News ↗
About bpineau
No profile information was provided.
Recent public activity
- story
-
comment
Comment #15810069
At the very least, Kubernetes natively supports exposing Services (targeting an Ingress controller or otherwise) by configuring AWS ELBs when informed to run on AWS. All you have t…
-
comment
Comment #15608611
Also, I understand we can configure the objects max size (with tune.bufsize). But can we configure the whole cache size (ie. the number of tune.bufsize KB cached objects) ?
-
comment
Comment #15608567
gRPC is also a good candidate for end-to-end HTTP/2 :)
-
comment
Comment #15050469
Are there plans to support exclusive backups / older PG versions ?
-
comment
Comment #15032058
A known (and now fixed) kernel issue affects the scheduler and cgroups subsystem, triggering crashs under kubernetes load (fixed by 754bd598be9bbc9 and 094f469172e00d). The fix was…
-
comment
Comment #13681224
A few improvments I enjoyed when migrating from Swarm to Kubernetes (older Swarm version, though): * Namespaces, to group objets and prevent names clashs. Ideal when many devs runs…
-
comment
Comment #13622181
Same here. No API means no automation, no Chef/Puppet/Ansible/Salt or other kind of scripts. Everything in the head of the person who clicked through the web interface. Are there a…
-
comment
Comment #11879789
The stored data format isn't compatible between major versions. Because of that, upgrades are either stressfull and cumbersome (ie. slony + switchover to a promoted and upgraded sl…
-
comment
Comment #11792432
It's just a shorthand for '== 0' (since !0 is true, and ! is false). strcmp(3) returns 0 when the two strings are identical. So "if (!strcmp(a, b))" means "if the strings a and b a…
-
comment
Comment #11747850
Right, and they had to salvage HTTP/2 support (which mandates 128 bit AES) in the process.
-
comment
Comment #11265338
The linked post gives an estimation : > "Tip compiler (with SSA internal checks off) is about 7% slower than go1.6 to compile net/http (go test -a -c -gcflags=-d=ssa/check/off net/…
-
comment
Comment #9967622
"We now do this consistently: a = malloc(n * sizeof( a));" Isn't calloc(3) the safer paradigm (protecting against integer overflows, in case n sizeof > SIZE_MAX) recommanded for th…