Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
bpineau
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
4 ms
·
1.
▲
An Analysis of vgo
(sdboyer.io)
184 points
by
bpineau
8y ago
|
68 comments
2.
▲
by
bpineau
9y ago
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 to do is using the "type: LoadBalancer" field in yo
3.
▲
by
bpineau
9y ago
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) ?
4.
▲
by
bpineau
9y ago
gRPC is also a good candidate for end-to-end HTTP/2 :)
5.
▲
by
bpineau
9y ago
Are there plans to support exclusive backups / older PG versions ?
6.
▲
by
bpineau
9y ago
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 merged in Linux 4.7 (and backported to -stable, in 4.4.70).
7.
▲
by
bpineau
10y ago
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 their own copy of the same distributed app from the same ma
8.
▲
by
bpineau
10y ago
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 automation friendly alternatives?
9.
▲
by
bpineau
10y ago
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 slave), or imply a large downtime (ie. pg_upgrade). Also,
10.
▲
by
bpineau
10y ago
It's just a shorthand for '== 0' (since !0 is true, and !<non-zero> is false). strcmp(3) returns 0 when the two strings are identical. So "if (!strcmp(a, b))" means "if the strings a and b are the same.
11.
▲
by
bpineau
10y ago
Right, and they had to salvage HTTP/2 support (which mandates 128 bit AES) in the process.
12.
▲
by
bpineau
11y ago
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/http)" ... though we may wo
13.
▲
by
bpineau
11y ago
"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 this case ? (besides the memory zeroing).