Live data from Hacker News

Viewing profile — paulfurtado

paulfurtado

HN member
Joined
Mon, Oct 21, 2013, 2:07 AM UTC
HN karma
441
Public activity
194 items

About paulfurtado

No profile information was provided.

Recent public activity

  1. comment
    Comment #46997734

    It is great for isolation. There are so many VM based containerization solutions at this point, like Kata Containers, gvisor, and Firecracker. With kata, your kubernetes pods run i…

  2. comment
    Comment #42436938

    The benefit of docker for home assistant is the packaging of it, rather than isolation. You can always run a container with host network mode and privileged mode so that it can acc…

  3. comment
    Comment #39596043

    You don't need a fiber splicer for this. You can order a pre-terminated fiber cable online. On fs.com you can order fiber in custom lengths. An armored pre-terminated 350ft OS2 dup…

  4. comment
    Comment #39593681

    I used the VLAN "trick" for connecting my cable modem to my router for a few years in an old multi-floor apartment with pre-wired ethernet, but it's not ideal because the router is…

  5. comment
    Comment #37303080

    This is of course not the purpose of your post, but since you're interested in this topic, I wanted to mention that you can now create memory-backed files on linux using the memfd_…

  6. comment
    Comment #36120669

    Do you have any references to specific bugs here? We depend pretty heavily on containers and I'd love to look into these and see if we are impacted and whether we should carry thes…

  7. comment
    Comment #34826727

    FWIW on AWS, all nitro instance types can boot as UEFI if the AMI has itself set to use UEFI and all arm64 instances only support UEFI. So if you stick to modern instance types, yo…

  8. comment
    Comment #33475449

    memfd is a tmpfs file descriptor, but does not use any mounted tmpfs filesystem. It works no matter what filesystems are mounted or access you have. It's truly great for situations…

  9. comment
    Comment #33350959

    If the goal of the test is to debug a sad linux server, containers are going to severely limit what ways the server can be sad in, isn't it?

  10. comment
    Comment #33350938

    User namespaces have resulted in multiple new container breakout CVEs in the last year. Some guides actually recommend disabling user namespaces because they are still somewhat new…

  11. comment
    Comment #33102722

    If you use cri-o as the runtime along with an openshift container registry, it will actually verify signatures at the runtime layer. In addition to crio, podman and anything based …

  12. comment
    Comment #32776300

    Are you from the US or another country? Heinz uses different ketchup recipes in different countries and I personally think there is a huge difference. In the US, it is by far the b…

  13. comment
    Comment #32615972

    Since 2017, all new aws instance types have been "nitro", which is based on kvm https://www.brendangregg.com/blog/2017-11-29/aws-ec2-virtual... AWS does continue to support older i…

  14. comment
    Comment #32482686

    When standard filesystems like ext4 and xfs hit enough io errors,they unmount the filesystem. I find that this happens pretty reliably in AWS at least and I can't imagine the files…

  15. comment
    Comment #32479395

    Yes, under a graceful live migration with no hardware failure, the data is seamlessly moved to a new machine. The problem of moving local data is ultimately no different that live …

  16. comment
    Comment #32479303

    I can actually say that not supporting this really does hinder crossplane adoption. At work we operate large shared kubernetes clusters. A team attempted to use crossplane and we i…

  17. comment
    Comment #32479250

    It's not exactly normal, but it's probably a common enough experience in the US with 120v circuits and 15A breakers. Especially if in an old building with imperfect wiring causing …

  18. comment
    Comment #32479112

    The disks are physically attached to the host. The VM running on that host moves from one host to another. GCP live-migrates every single VM running on GCP roughly once per week, s…

  19. comment
    Comment #32479089

    When a local disk fails in an instance, you end up with an empty disk upon live migration. The disk won't disappear, but you'll get IO errors, and then the IO errors will go away o…

  20. comment
    Comment #32479062

    Both GCP and AWS provide super fast and cheap, but fallible local storage. If running an HA database, the solution is to mitigate disk failures by clustering at the database level.…

  21. comment
    Comment #32479030

    At a huge price, EBS can finally get you near-local-nvme performance. If you use an io2 drive attached to a sufficiently sized r5b instance (and I think a few other instance types)…

  22. comment
    Comment #32133901

    I'm not sure if it comes out ahead on price, but I find Waka instant coffee to be great. Similar to your experience with Starbucks Via, it's the first brand that convinced me that …

  23. comment
    Comment #31949111

    It's definitely sad that there isn't built-in context support, but if you're looking for a solution to this, it is actually very easy to attach context to logs using threadlocal an…

  24. comment
    Comment #30774333

    With 10,000 nodes running kube-proxy it is a bit expensive and, more importantly: error prone. A problem on a single node that wasn't even talking to the app could stop that app fr…

  25. comment
    Comment #30774282

    With kubernetes you can at least add a preStop hook that sleeps for 60-120sec if the app is not designed to handle SIGTERM. The pod enters the terminating state just prior to execu…