7 ms·
Local doesn't refer to "on metal" anymore to many people
by randomjoe2 1y ago
Local doesn't refer to "on metal" anymore to many people
- monsieurbanana 1y agoI missed that train
- vFunct 1y agoMy basement server really confused by all this...
- demodulation 1y agoThe one down in your Gaza tunnels?
- mwcz 1y ago"On metal" is muddied too. I've heard people refer to web apps running in an OCI container as being "bare metal" deployment, as opposed to AWS or whatever hosting platform. That's silly, but the idea that "local" is not the opposite of remote is even sillier.
- ffsm8 1y agoYou can run an OCI container on bare metal though. It doesn't stop being run on bare metal just because you're running in kernel namespaces, aka docker container Lots of people were advocating for running their k8s on bare metal servers to maximize the performance of their containers Now wherever that's applied to your conversation... I've no clue, too little context ( 。 ŏ ﹏ ŏ )
- okasaki 1y agoIn my opinion, if you're running k8s on bare metal, that's "k8s on bare metal" but still "<your app> on kubernetes", not "<your app> on bare metal".
- ffsm8 1y agoSorry, but then your opinion is just plain wrong Bare metal in the context of running software is a technical term with a clear meaning that hasn't become contested like "AI" or "Crypto" - and that meaning is that the software is running directly on the hardware. As k8s isn't virtualization, processes spawned by its orchestrator are still running on bare metal. It's the whole reason why containers are more efficient compared to virtual machines
- bee_rider 1y agoBare metal as in, no operating system? Does Linux really get in the way of these LLM inference engines?
- ffsm8 1y agoNo, as I said in my previous comment: bare metal as in not a virtual machine https://en.m.wikipedia.org/wiki/Bare-metal_server https://en.m.wikipedia.org/wiki/Bare-metal_server
- pessimizer 1y agoNote that this is a term whose meaning has been expanded to refer to non-VPS servers very recently. Bare-metal has traditionally meant "without an operating system." It did not mean "a server that is an actual server," because that was the default. It also does not always "clearly" have this new meaning. Somebody who is used to running programs directly (with no intermediate OS) on hardware might not understand what you're saying, or might ask you to clarify, and you probably shouldn't feel put upon by a totally understandable misinterpretation. edit: Especially when you keep repeating "directly on hardware" when you mean "not on a VM." VMs also run on hardware. You're saying that you're only running on one OS instead an OS in your OS.
- mystifyingpoi 1y agoI think both of you are correct. Of course, a process running inside Kubernetes Pod, on a baremetal node will show up in `top` if I run it on the node directly. In such terms, it is running directly on hardware. But when I deploy this Pod, I'm not interacting with the OS in any way. I'm interacting with Kubernetes apiserver, telling it what to run, not really caring about the operating system underneath. In such terms, the application is running "in k8s".
- dtech 1y agoIf you do bare metal as not being under a VM it fits. OCI on linux is cgroup so that counts as not a VM I'd say. Or at least it's a layer closer to the metal than a typical VM running OCI images. I a Java app running on Linux bare metal?
- bee_rider 1y agoLocal doesn’t need to be “on metal,” but I’m still confused as to what they are saying. Are they running some local cloud system?