Concurrency is not Parallelism by Rob Pike

Slides:
talks.golang.org/2012/waza.slide

Пікірлер: 89

  • @AlbertBalbastreMorte
    @AlbertBalbastreMorte7 ай бұрын

    "these ideas are not deep, they're just good". My new favourite quote.

  • @asif.haswarey
    @asif.haswarey Жыл бұрын

    2:09 : Concurrency is the composition of independently executing processes. 2:23 : It is about *dealing* with a lot of things as once. It is about structure. The goal is to structure things so that you could possibly employ parallelism to do a better job. But parallelism is not the end goal of concurrency. When you structure task/things into pieces, you need to coordinate those tasks/pieces with some form of communication. Ref: Communicating sequential processes (CSP) by Tony Hoare. 2:13 : Parallelism is the simultaneous execution of multiple tasks/things that may or may not be related. 2:27 : Parallelism is about *doing* a lot of things at once. It is about execution.

  • @akshay-kumar-007

    @akshay-kumar-007

    11 ай бұрын

    10:20 We don't have to worry about parallelism when we're doing concurrency. If we get concurrency right, the parallelism is a free variable that we can decide. 12:04 Concurrent Decomposition: Conceptually, this how you think about parallelism. You don't just think about running a problem statement in parallel. Break the problem down into independent components(that you can separate, understand, and get right), and then compose to solve the whole problem together.

  • @mcdtigo

    @mcdtigo

    Ай бұрын

    brilliant! thank you!

  • @modul346
    @modul346 Жыл бұрын

    22:30 I solved a concurrency issue lately, and part of the solution was to pair up the channel with the request. I'm glad to see that I came up with a solution that the designer of Go considers valid.

  • @randall.chamberlain
    @randall.chamberlain Жыл бұрын

    Shame the video doesn't show the slides at the right times. Had planning for such a good talk

  • @ameyasinha1774
    @ameyasinha1774 Жыл бұрын

    This guy is good, I think few people may write some code using this new language he's proposing

  • @matthewkothe80

    @matthewkothe80

    Жыл бұрын

    😂

  • @user-ij9vc1lw9r

    @user-ij9vc1lw9r

    6 ай бұрын

    sarcasm?

  • @ameerhamza4816

    @ameerhamza4816

    4 ай бұрын

    @@user-ij9vc1lw9r As an ai model you do not get sarcasm!

  • @ManhPham-fh6on
    @ManhPham-fh6on Жыл бұрын

    excellent explanation of how go make concurrency work out! Appreciate it!!

  • @davidjirvinemusic
    @davidjirvinemusic2 жыл бұрын

    "8 gophers on the fly and books being burned at a horrific rate" lol

  • @esra_erimez
    @esra_erimez2 жыл бұрын

    "Burning up those C++ books" 🤣

  • @kuroexmachina
    @kuroexmachina2 жыл бұрын

    lord praise the commander

  • @Pem7
    @Pem7Ай бұрын

    💯% Agree... I mean who am I to Object Rob Pike😅🤞🏾

  • @ThePandaGuitar
    @ThePandaGuitar3 ай бұрын

    "It's time to have some drinks" - Creator of Go Meanwhile Rust programmers: "Cannot borrow as immutable"

  • @ismaelgrahms
    @ismaelgrahms Жыл бұрын

    amazing talk

  • @kamilziemian995
    @kamilziemian995 Жыл бұрын

    Every Gopher should watch this talk.

  • @akshay-kumar-007
    @akshay-kumar-0078 ай бұрын

    At 7:48, the codel with 4 gophers runs faster than the one in previous slide with 3 gophers, given the gopher bringing the cart loaded with books, and the gopher that returns an empty cart happen in "parallel" ( meaning there are more than 1 carts) right?

  • @burgular_the
    @burgular_the Жыл бұрын

    Lol he's named the "Commander, Google" at 20:57

  • @RavciiWut
    @RavciiWut2 жыл бұрын

    At his last slide he used a buffered channel with the length of the amount db connections, but wouldn't a channel with the size of 1 make more sense since we only need 1st result?

  • @eirikpettersen3257

    @eirikpettersen3257

    2 жыл бұрын

    With an unbuffered channel, each worker will block until someone receives their result over the channel. Since only the first result will be received from the channel , the remaining workers will block forever. Blocked goroutines cannot be garbage collected, so we would end up with leaked goroutines. Using a buffered channel allows all workers to send their work to the channel regardless of there being a receiver or not, and finish execution cleanly.

  • @ernestnguyen1169

    @ernestnguyen1169

    2 жыл бұрын

    Actually, there is no need to create a buffered channel at all. You can just wrap a writing to the channel with a select statement and add a default clause to prevents a goroutine leak.

  • @WillFred-fv9jf

    @WillFred-fv9jf

    4 ай бұрын

    @ernestnguyen1169, in this case, you are right. But in general, would it be a good idea for a server to swallow its result if it cannot be sent immediately?

  • @zynskavzynskav4465
    @zynskavzynskav44652 жыл бұрын

    "No locking or synchonization". Indirect attack to Java 🤣

  • @jackdanyal4329

    @jackdanyal4329

    Жыл бұрын

    CompletableFuture, ha? Virtual Threads in Java 19 are implemented even better than goroutines. Short disclaimer: I also love Go, but it's not ideal. Java is still superior in many aspects.

  • @rj7250a

    @rj7250a

    Жыл бұрын

    @@jackdanyal4329 nice, but how many companies are using Java 19? almost none. Like 80% of companies still using Java 8 or 11, so you will not be able to use the new features on your work.

  • @jackdanyal4329

    @jackdanyal4329

    Жыл бұрын

    @@rj7250a in the company where I'm working right now (one of the biggest in the Netherlands) the lowest version of Java is 17. I don't care about companies who still use 1.8 ver. It's their problem, not mine. By using virtual threads in production is just a matter of a short time. But you will get a much better implementation of concurrency + solid java with all libraries, community, etc. At least we see that Java does smth right and trying to become more modern. But what does Go do? For several years they said "we don't need generics", and what? now they have generics. but still doesn't have a usable collection types, error handling, etc and etc. and as I mentioned CompletableFuture allows you use concurrency w/o locks and sync problems. and tbh it's much easier to understand the completable future rather trying to understand the whole flow of channels in a not trivial project.

  • @nodidog

    @nodidog

    9 ай бұрын

    ​@@jackdanyal4329why specifically do you think that Java virtual threads are implemented better than goroutines?

  • @user-ij9vc1lw9r

    @user-ij9vc1lw9r

    6 ай бұрын

    @@jackdanyal4329 Virtual Threads in Java 19 are implemented even better than goroutines. They're not... even ... remotely ... close. Java and Go have stolen a lot of concepts from one another, but Java has the burden of being a 20 ton gorilla that you need to wrestle, and Go just works. Go is faster, uses less resources, and so on. Java is so inferior, it's not even close.

  • @shinobi1975
    @shinobi19754 ай бұрын

    This is actually how I do things.. It's way more easier this way to code. It's like I am leading my code to do something structurally. Each worker has a job. That worker only does one job. I never tried any other design pattern in an OOP language. Just the concurrency way because it is easier to understand "which code does this". I just didn't know about pararellism.

  • @dotuanthanh
    @dotuanthanh2 жыл бұрын

    Nice shirt

  • @claustopke892
    @claustopke8925 ай бұрын

    Where is the video editor? Forgot conpletly to change the camera as the presenter show new slide. Ouch

  • @theprantadutta
    @theprantadutta2 ай бұрын

    Is there any way to tag all programmers here? Every programmer should know this. Honestly, this guy should write dialogues for hollywood.

  • @snnsnn
    @snnsnn3 жыл бұрын

    He should have started with performance parity between the processor and the other components. Processor is way way more faster than any other components eg ram, disk, network, without even considering wire latency. Since it is fast, it can switch tasks quickly while the interacting components can keep doing their own work when the processor attending to another task. Otherwise it is impossible to understand concurrency without paralellism.

  • @metabolic_jam

    @metabolic_jam

    Жыл бұрын

    I think that's a given for any Comp Sci student.

  • @solomontan1524

    @solomontan1524

    Жыл бұрын

    @@metabolic_jam that’s true, but not everyone who wants to learn about concurrency and parallelism is a cs student

  • @gerooq

    @gerooq

    Жыл бұрын

    @@metabolic_jam except not everyone watching this is/was a comp sci student

  • @rodacoram

    @rodacoram

    Жыл бұрын

    Need a deeper stack for that

  • @maxgillman2419
    @maxgillman2419 Жыл бұрын

    What does "Commander" mean? Is that his job title or nickname? Google is not helping me with this haha....

  • @ToddDoucet

    @ToddDoucet

    Жыл бұрын

    I just assumed it somehow was related to Commander Pike in the original Star Trek TV series pilot. We are of that age. . .

  • @BryanChance
    @BryanChance Жыл бұрын

    Who said that concurrency is parallelism?

  • @ahmedelkoussy1769
    @ahmedelkoussy17692 жыл бұрын

    While I know he is knowledgeable and I learned things here, I am kinda surprised by the example in the beginning: As if solving a problem concurrently and not sequentially is an "unexpected discovery" will improve the performance... isn't this obvious? or did I miss something? (I am not joking in this comment and not belittling the talk)

  • @nexovec

    @nexovec

    2 жыл бұрын

    No, it won't automatically do that.

  • @_____case
    @_____case2 жыл бұрын

    Isn't this the guy from the Penn & Teller episode of Letterman?

  • @piyushbansal3734

    @piyushbansal3734

    2 жыл бұрын

    yes

  • @AlbertBalbastreMorte

    @AlbertBalbastreMorte

    7 ай бұрын

    wait what

  • @GameBenchLabs

    @GameBenchLabs

    Ай бұрын

    @@AlbertBalbastreMorte kzread.info/dash/bejne/mKyBrdevYKScqpc.html

  • @adwaitnaik4003
    @adwaitnaik40033 жыл бұрын

    He savagely roasted the folks who can't differentiate between "parallelism" and "concurrency".

  • @kyjo72682

    @kyjo72682

    21 күн бұрын

    There is no difference. Not between the two words. They literally mean the same thing. There is of course difference between the concepts he's describing (parallelization and multi-tasking) but he's using the wrong words to describe them, needlessly sowing confusion.

  • @sabitkondakc9147
    @sabitkondakc91473 жыл бұрын

    did he talk over Rust Programming Language at the end? I couldn't handle that.

  • @Rogueixpresents

    @Rogueixpresents

    2 жыл бұрын

    Beta

  • @rushwuy4960
    @rushwuy49606 ай бұрын

    What about employing AI to identify the optimal concurrency structure of an algorithm/program?

  • @Naeddyr

    @Naeddyr

    6 ай бұрын

    This talk was from eight years ago, long before AI was invented. If you are now typing a response to this to inform me that AI was not in fact invented in the past few years, you make me sad.

  • @kyjo72682

    @kyjo72682

    21 күн бұрын

    @@Naeddyr AI was not invented in the past few years. This applies both to AI in general and LLMs specifically. LLMs are a thing for at least 15 years.

  • @kyjo72682

    @kyjo72682

    21 күн бұрын

    It's not just about the program. It also depends on the machine architecture and the input data. I'd say some optimizations can be done (and have been, although not with LLMs which are a very bad tool for that job) but I doubt that fully optimal structure can be achieved.

  • @hotsauce1868
    @hotsauce18685 ай бұрын

    who's here watching the video are for operating system assignment?

  • @kyjo72682
    @kyjo7268226 күн бұрын

    No. Concurrency and parallelism *are the same thing.* What you call "concurrency" or "composition of independently executable processes" should in fact be called PARALLELIZATION. This is an effort to transform a program - which by default is a single sequence of instructions executed one after another - in such a way that various sub-sequences of it can be efficiently executed by multiple execution units in parallel (concurrently) while minimizing their idle time. I think you needlessly confuse a lot of people with your definitions.

  • @vxcute0

    @vxcute0

    21 күн бұрын

    its not, concurrency involves running multiple virtual/green threads and switching between them so they appear to run at the same time, but parallelism is actually the multiple things are running at the same time in separate cores, you cannot run multiple things on the same core without doing context switches.

  • @kyjo72682

    @kyjo72682

    21 күн бұрын

    @@vxcute0 No. What you are describing is not concurrency. That's called multi-tasking, or time-sharing, or multiplexing (in networks). I.e. dividing a single resource like a processing unit or a communication channel into multiple time-pieces so that during some longer time period it seems as if it was available to multiple users "at once". But this is only emulated concurrency. My point was different. I'm saying that terms "concurrency" and "parallelism" have the exact same meaning. Running multiple tasks at the same time = concurrently = in parallel. (This goes beyond computers. It applies to general planning and scheduling of tasks like in factory lines, or even trivial daily tasks.) What he is describing in the video as "concurrency" should NOT be called concurrency, nor parallelism, but paralleliZATION. An act of designing processes in such a way that their sub-tasks that are independent on each other are not prevented from running in parallel. It doesn't matter in this context whether that parallelism is real (on multiple units) or emulated (on a single unit that pretends to be multiple units).

  • @vxcute0

    @vxcute0

    21 күн бұрын

    @@kyjo72682 I know time-sharing, but in my understanding green threads works the same, also do you have any other reputible resource that defines concurrency as running tasks at the same time ? because this is not the definition I see any were the definition I see is like what rob pike said.

  • @user-kv5sd8fp5n
    @user-kv5sd8fp5n2 жыл бұрын

    Correct me if i'm wrong, the summary of this video is: if something is concurrent this don't mean that its also parallel but if something is parallel it will always be concurrent

  • @victormarciliopeixoto

    @victormarciliopeixoto

    2 жыл бұрын

    you are wrong, he says about sawzall: "its an incredible parallel language but has absolutely no concurrency"

  • @richardchaven

    @richardchaven

    2 жыл бұрын

    "concurrency makes parallelism easy"

  • @akshay-kumar-007

    @akshay-kumar-007

    11 ай бұрын

    Those terms are related, but they do not describe disjoint sets of things. The meanings overlap and vary by situation. In the context of programming, concurrency is the ability of your code to be "composed" into bits of logic that could be run at the same time. Parallelism (when combined with concurrency) is taking said code and running it on a 100-core machine.

  • @maestbobo
    @maestbobo Жыл бұрын

    Terrible production value, can barely read the code on the slides.

  • @dejangegic

    @dejangegic

    Жыл бұрын

    😂

  • @ShopperPlug
    @ShopperPlug2 жыл бұрын

    That is so true, Concurrency is not Parallelism, two very different things, 99% "programmers" wouldn't care since it is irrelevant to them since Concurrency programming gives the illusion of Parallelism. When "professional" programmers need "performance"... thats when "Concurrency" and "Parallelism" needs to be understood exactly what they are. Looking down to the physical hardware of a CPU, it can only then be understood how much is it concurrent vs parallelism. When reading the whole OS and computer architecture, I instantly questioned today's CPU consumer grade architecture, having more cores really doesn't help when needing RAW performance. This is why Intel and AMD have sperate hella expensive CPUs series specifically designed for raw performance in true Parallelism, these CPU lines are sold for web servers and research companies, its sad that consumer grade stuff doesnt have "true Parallelism". The Apple engineers are smart, it makes sense why they use server grade Intel CPUs in their consumer desktop hardware, it also makes sense why Apple ditched Intel and started making their own custom CPUs from ARM.

  • @ZeekWatson
    @ZeekWatson Жыл бұрын

    The word "concurrent" literally means "same time".

  • @shxdow9

    @shxdow9

    Жыл бұрын

    At 1:42 he literally said "[...] as it is intended to be used in computer science"

  • @jonathangjertsen3450

    @jonathangjertsen3450

    4 ай бұрын

    idiot

  • @foo2332
    @foo23323 жыл бұрын

    Am I the only one who finds the example of burning books highly misplaced and disrespectful?

  • @ryanleemartin7758

    @ryanleemartin7758

    3 жыл бұрын

    Yes, yes you are.

  • @Frozander

    @Frozander

    2 жыл бұрын

    It is C++ joke, it would be distasteful if it was real

  • @raianmr2843

    @raianmr2843

    2 жыл бұрын

    [insert that bjarne gigachad quote about people loving to hate the most useful programming languages here]

  • @milahu

    @milahu

    2 жыл бұрын

    "highly misplaced and disrespectful" burn the snowflakes!! or as he said, the "lesser minds" : D

  • @richardchaven

    @richardchaven

    2 жыл бұрын

    It is provocative, but clearly not an endorsement of actual book-burning

  • @user-ll2xw7tn6v
    @user-ll2xw7tn6v6 жыл бұрын

    "Dealing at the same time, doing things at the same time...." Philosophers call this demagogy. concurrency and parallelism is the same, man. Don't try to mix definitions to create new ones, because if you can't explaine smth for 7 years old kid using "only" your hands, you don't understand it good enought yet.

  • @bradconte

    @bradconte

    5 жыл бұрын

    Disciplines usually have precise definitions of words to encapsulate concepts. Math, computer science, etc, all do this. The formal inter-discipline definitions usually doesn't perfectly match the colloquial definitions, which you are alluding to in the dictionary. The formal definition of concurrency in computer science has been around for decades.

  • @kunalbhagawati9136

    @kunalbhagawati9136

    4 жыл бұрын

    Артем Арте, dude, go home. You are drunk and/or high.

  • @crustycock593

    @crustycock593

    3 жыл бұрын

    what the fuck are you talking about

  • @Groostav

    @Groostav

    3 жыл бұрын

    Lets say your right, and hes somehow wrong for trying to distinguish between paralellism and concurrency: What phrases do you suppose people like Rob Pike and the plethora of library/language designers who are reasoning about these problems do? Should they invent new phrases? I think you're a better software developer if you're able to think about this talk when you find yourself speaking with someone who is carefully differentiating between "parallelism" and "concurrency". To me this phrasing becomes very important when we thinking about concurrency in UI design where thread-confinement is a factor: we very much want concurrent decomposition, but not for a throughput increase but for a latency reduction. That is, we want concurrency without parallelism as a way to control for responsiveness, and if you don't understand this, well its good that you don't have my job. Further, to your use of Enstein's maxim [I've never heard the "hand gestures only" variant]: I wonder what you think Rob's use of Gofers is supposed to be if not an attempt to explain something to a six year old? He's trying, I think rather successfully, to explain a very fine point using very elementary components.

  • @ryanleemartin7758

    @ryanleemartin7758

    3 жыл бұрын

    LMAO! Right, it's Rob Pike that doesn't understand parallelism. Good one, Ya almost had me. Hilarious!