Unix Domain Socket in 100 seconds

Поділитися
Вставка
  • Опубліковано 11 чер 2024
  • Do you run TCP for IPC on a single machine? Running out of TCP ports? You might want to try Unix Domain Socket instead. In this video We will see how to use unix domain socket with Node.js, and also pros and cons of Unix Domain Socket compared to TCP.
    Related videos:
    • You might not need HTTP
    • Unix Socket HTTP in 10...
    • Unix Named Pipe in 100...
    Playlist:
    • You might not need
    #linux #javascript #100secondsofcode #webdevelopment #computerscience #networking #nodejs #programming #software
  • Наука та технологія

КОМЕНТАРІ • 86

  • @adenosinetp10
    @adenosinetp10 2 місяці тому +239

    What is that thumbnail ? 😭😭

    • @mohamedsamet4539
      @mohamedsamet4539 2 місяці тому +63

      domain expansion

    • @Eren_Yeager_is_the_GOAT
      @Eren_Yeager_is_the_GOAT 2 місяці тому +41

      domain expansion: infinite knowledge

    • @shroomer3867
      @shroomer3867 2 місяці тому +30

      Domain Expansion: Infinite Compatibility

    • @no_name4796
      @no_name4796 2 місяці тому +17

      Open source domain expansion

    • @deadsi
      @deadsi Місяць тому

      Last thing you see before linus sticks his fingers up your bum

  • @jaakkohintsala2597
    @jaakkohintsala2597 2 місяці тому +126

    one of the thumbnails of all time

  • @kostis9081
    @kostis9081 2 місяці тому +45

    The domain expansion thumbnail is the only reason I clicked on this. And I'm glad I did.

  • @hendraeffendi8607
    @hendraeffendi8607 2 місяці тому +43

    the thumbnails got me click this video :)
    領=域展開!!!
    and the video has really good information.

  • @pouf-dk3nq
    @pouf-dk3nq 2 місяці тому +20

    This was so quick, straight to the point. Great video man.

  • @unLinuxeroMas
    @unLinuxeroMas 2 місяці тому +37

    man linux and calculus have some cool domains expansions

  • @cryptic_daemon_
    @cryptic_daemon_ 2 місяці тому +32

    Love me jjk reference

  • @robertolin4568
    @robertolin4568 29 днів тому +2

    Every time I see this thumbnail I click into this video. It is on par with the quality of the contents

  • @littleElmimo123
    @littleElmimo123 3 місяці тому +37

    Where was this video my whole life

    • @keshav2136
      @keshav2136 2 місяці тому +2

      It was uploaded just recently

    • @littleElmimo123
      @littleElmimo123 2 місяці тому +2

      That’s true, I’m definitely not 3 weeks old myself

    • @sas408
      @sas408 2 місяці тому +1

      You could read the docs

  • @YongJiaChan
    @YongJiaChan 2 місяці тому +7

    i ackchyually like and suscribe for the quality/length of this video.

  • @wandermaus4571
    @wandermaus4571 2 місяці тому +9

    great thumbnail 😂 Also good video 👍

  • @ZoinkDoink
    @ZoinkDoink 2 місяці тому +4

    thumbnail is absolutely goated LOL, also great video dude! subbed

  • @nickeldan
    @nickeldan 2 місяці тому +6

    You can also send file descriptors over domain sockets.

  • @sfulibarri
    @sfulibarri 2 місяці тому +3

    I had no idea this existed, perfect for my next project though.

  • @aws-china
    @aws-china 2 місяці тому +3

    glad I found this channel, entertaining content :)

  • @cakesama9770
    @cakesama9770 2 місяці тому +3

    I had to like just for the thumbnail

  • @stokedfool
    @stokedfool 27 днів тому

    Socket files can run entirely in memory! Crazy
    `> find / -type s ` is super helpful

  • @2Fast4Mellow
    @2Fast4Mellow Місяць тому +1

    Yes, it supported under Windows, but only as a wrapper around named pipes. For most software this slight overhead is unnoticeable, but if you need to squeeze every last drop of performance, you'd might want to use named pipes directly. But than again, if this communication is the bottleneck of your application, you already have most likely already made some bad design decisions earlier. Usually IPC is used to communicate from a user-space front-end utility to a background service/daemon process, but in some cases it also used for communication between forked processes...

  • @rogue3290
    @rogue3290 Місяць тому +1

    10/10 thumbnail

  • @user-ou8pt4bz2g
    @user-ou8pt4bz2g 3 місяці тому +4

    awesome vid man!

  • @dstick14
    @dstick14 2 місяці тому +5

    Ryoiki Tenkai Malevolent Sockets!!

  • @user-ys8wc9ob6g
    @user-ys8wc9ob6g 2 місяці тому +2

    I came here to watch ultimate lobotomy kaisen edit, but this is also good.

  • @lucaspagliarini910
    @lucaspagliarini910 2 місяці тому +2

    Good content, keep it up!

  • @unLinuxeroMas
    @unLinuxeroMas 2 місяці тому +4

    exquisito video man .

  • @Felipe-53
    @Felipe-53 2 місяці тому +1

    Nice content, keep bringing it, please!

  • @soyitiel
    @soyitiel 2 місяці тому

    Bruh I've been searching for this for a week now

  • @ThePandaGuitar
    @ThePandaGuitar Місяць тому

    nice vid. Subbed

  • @robertolin4568
    @robertolin4568 Місяць тому +1

    I keep watching this even though I’ve already known what a UDS is. For the thumbnail.

  •  28 днів тому

    Great video! Btw what do you use for the slides?

  • @whetfaartz6685
    @whetfaartz6685 2 місяці тому +2

    Unix Domain Socket expansion!

  • @wanderingfido
    @wanderingfido 2 місяці тому +2

    This feels like a better and user-friendly way to communicate with busy threads. And hide load spikes from hawkish admins. 😏

    • @D0Samp
      @D0Samp 2 місяці тому

      With the classic approach of synchronous IO (blocking read/write) and one thread per connection, there's generally no difference between local TCP/IP and Unix domain sockets - the stack memory and scheduler overhead for so many threads stays the limiting factor. Also in theory, TCP runs out of port numbers after one listening socket and 65,534 connections; with Unix domain sockets, the connecting side often gets an anonymous socket address, of which there can be arbitrarily many.

  • @seansingh4421
    @seansingh4421 24 дні тому

    What if I provision a TLS through PKI or a local root CA ? Then can the traffic be routed through port 443 ?

  • @jbray250
    @jbray250 Місяць тому

    Not the domain expansion 😭 it's perfect

  • @Senai
    @Senai 2 місяці тому

    What do you use to make your videos?

  • @koshrf
    @koshrf 2 місяці тому +1

    It isn't infinite socket file, that number is the number of limits defined to the kernel usually below 32k and can be restricted by ulimits for users.

  • @dasten123
    @dasten123 2 місяці тому +2

    Why have I never heard of it and why would anyone still use tcp with the loopback address? Where's the catch?

    • @D0Samp
      @D0Samp 2 місяці тому +1

      TCP on the loopback adapter is most useful with programs that can work both locally and over the network, or if you interface with a program that's only designed around network connections. For example, the game Minecraft has used a server-client architecture for a long time; if you enter a singleplayer world, it starts a game server (which you can open up to your local network at any point) and connects to it on localhost. That said, many Java programs still use loopback for IPC because Unix domain sockets were only added to the standard libary in Java 16 after they were universally supported.

  • @ChrisCox-wv7oo
    @ChrisCox-wv7oo Місяць тому

    Anyone have a comparison of the throughput difference between domain and TCP sockets, when both processes are running on the same machine?

  • @fivecell7746
    @fivecell7746 2 місяці тому +1

    Linus Domain expansion : sudo rm -Rf. Not even Sukuna can counter this.🤣

  • @NoauticHound
    @NoauticHound 2 місяці тому

    Can I ask what tools did you use for the illustration

    • @wanderingfido
      @wanderingfido 2 місяці тому

      gruvbox dark was mentioned further below.

  • @realname8798
    @realname8798 2 місяці тому +1

    Which colorscheme is this?

    • @nixhero
      @nixhero  2 місяці тому +1

      gruvbox dark

  • @gjermundification
    @gjermundification 2 місяці тому

    This is how to do "pipe" instead of loading the entire network stack for localhost, do any other applications that nginx really need to load network stack? I have about 200 UDS behind the same endpoints in nginx. It's a monolithic solution deployed separately for each route, hence each route can be down or be replaced without the rest of the solution having to be down. Further I can pick and choose which dev environment each route uses: R, Python, Swift, and / or Rust as pr my knowledge.

    • @quantinvest7968
      @quantinvest7968 2 місяці тому

      Thank you for the idea. Thinking about R how do you deal with blocking? Let's say that my R model takes 1 min to answer.

    • @gjermundification
      @gjermundification 2 місяці тому

      @@quantinvest7968 Always for front loading, so it's not a web facing interface as such; the route will respond with a job number and timestamp only, however its result[s] will be indexed after the fact, and / or put in PostgreSQL.

  • @Seven9717
    @Seven9717 2 місяці тому +1

    Linus Torvalds: if Windows implements more improved kernel versions in the future it may give me some problems...
    ...Nah I'd Win

  • @user-qx2os9oh7i
    @user-qx2os9oh7i Місяць тому

    Linus Torvalds domain expansion is Linux.

  • @Knirin
    @Knirin 27 днів тому

    Is it used in real life? PHP-FPM makes heavy use of Unix Domain Sockets. Most databases use them as well. If you’re running a website on a single system I am pretty sure Unix Domain Sockets are involved somewhere.

  • @user-qr4jf4tv2x
    @user-qr4jf4tv2x 2 місяці тому +1

    views mostly because of thumbnail.. clickbait skill unlocked

  • @ricardojlrufino
    @ricardojlrufino Місяць тому

    MySQL also use Domain sockets

  • @Famelhaut
    @Famelhaut Місяць тому

    gud

  • @gjermundification
    @gjermundification 2 місяці тому

    1:30 Not to mention postgresql

  • @jino139
    @jino139 2 місяці тому +1

    But would you lose?

    • @Jooohn64
      @Jooohn64 2 місяці тому +2

      Nah I'd win

  • @rweaver6
    @rweaver6 Місяць тому

    In Windows, it's not available to non-insiders.

  • @LokendraSingh-42
    @LokendraSingh-42 Місяць тому

    1:36 One Piece ftw

  • @Joe-oc5jq
    @Joe-oc5jq Місяць тому

    insane thumbnain lmaoi

  • @jorge28624
    @jorge28624 2 місяці тому

    why is it just plain black?

  • @DanDart
    @DanDart Місяць тому

    I think it's valuable going over the rest of the list and some further reasons why you would want this over another. It seems half done, really.

  • @vicradon
    @vicradon Місяць тому

    Why the GenZ call-out?

  • @rajmajumdar5253
    @rajmajumdar5253 2 місяці тому +1

    Unix Domain Expansion . 😂😂😂😂

  •  2 місяці тому

    This isn't C...

  • @haves_
    @haves_ 29 днів тому

    I was liking this video until you said the example in JS...

  • @thymos6575
    @thymos6575 2 місяці тому

    guys can anyone tell me how can i learn all this, i'm getting into IT so new to this stuffs i just know frontend backend and networking stuff but this whole ssh, tcp IPC, unix domain is over my head

    • @wanderingfido
      @wanderingfido 2 місяці тому +1

      Windows is primarily a realm that likes the MVC paradigm. Linux is more the reversal or mirroring of that framework. ETL mechanisms that pull messy marked up structures back into raw data ( serializables). All for reloading back into yet another MVC (ie databases, browsers, and tcp-based client-servers (ie Apache/IIS)).

    • @thymos6575
      @thymos6575 2 місяці тому +1

      @@wanderingfido i appreciate your comment man, now i will read in depth of these things you told, thank you.

    • @wanderingfido
      @wanderingfido 2 місяці тому

      We don't do ETL in Windows servers because the data sets tend to be huge. And Microsoft has more memory leaks.
      Microsoft == Boeing== Ford
      versus
      Linux == AirBus == BMW

    • @wanderingfido
      @wanderingfido 2 місяці тому

      I just had an epiphany after that domestic versus foreign product quality comparison. Domestic systems really suck. Wow. I didn't fully realize until I lined a few up together. We here in the West need to pull our heads back out of our own butts. And go take a long soul-searching shower. And then go watch more telly. Cuz. What else can we really do now? It's already over.

    • @JB52520
      @JB52520 2 місяці тому +1

      If you're a beginner web developer, this is the foundation on which the web is built. It's good to get familiar with networking. When you said you "know" it, I don't know if that means you know of its existence, or if you're experienced and this is a prank. Sorry for the autism.
      ssh means secure shell. It lets you use the terminal on another machine.
      TCP/IP means Transmission Control Protocol/Internet Protocol. It defines the technology which makes packets reach their destination.
      Unix domain sockets are something I just learned about watching this video. They're an alternative to using TCP/IP to send information between processes on the same machine, if I understand correctly. It seems better because you don't run out of ports.