How Fast can Python Parse 1 Billion Rows of Data?

Поделиться
HTML-код
  • Опубликовано: 22 май 2024
  • To try everything Brilliant has to offer-free-for a full 30 days, visit brilliant.org/DougMercer .
    You’ll also get 20% off an annual premium subscription.
    -------------------------------
    Sign up for 1-on-1 coaching at dougmercer.dev
    -------------------------------
    The 1 billion row challenge is a fun challenge exploring how quickly we can parse a large text file and compute some summary statistics. The coding community created some amazingly clever solutions.
    In this video, I walk through some of the top strategies for writing highly performant code in Python. I start with the simplest possible approach, and work my way through JIT compilation, multiprocessing, and memory mapping. By the end, I have a pure Python implementation that is only one order of magnitude slower than the highly optimized Java challenge winner.
    On top of that, I show two much simpler, but just as performant solutions that use the polars dataframe library and duckdb (in memory SQL database). In practice, you should use these, cause they are incredibly fast and easy to use.
    If you want to take a stab at speeding things up further, you can find the code here github.com/dougmercer-yt/1brc.
    References
    ------------------
    Main challenge - github.com/gunnarmorling/1brc
    Ifnesi - github.com/ifnesi/1brc/tree/main
    Booty - github.com/booty/ruby-1-billion/
    Danny van Kooten C solution blog post - www.dannyvankooten.com/blog/2...
    Awesome duckdb blog post - rmoff.net/2024/01/03/1%EF%B8%...
    pypy vs Cpython duel blog post - jszafran.dev/posts/how-pypy-i...
    Chapters
    ----------------
    0:00 Intro
    1:09 Let's start simple
    2:55 Let's make it fast
    10:48 Third party libraries
    13:17 But what about Java or C?
    14:17 Sponsor
    16:04 Outro
    Music
    ----------
    "4" by HOME, released under CC BY 3.0 DEED, home96.bandcamp.com/album/res...
    Go buy their music!
    Disclosure
    -----------------
    This video was sponsored by Brilliant.
    #python #datascience #pypy #polars #duckdb #1brc

Комментарии • 374

  • @dougmercer
    @dougmercer  Месяц назад +10

    To try everything Brilliant has to offer-free-for a full 30 days, visit brilliant.org/DougMercer .
    You’ll also get 20% off an annual premium subscription.

  • @eddie_dane
    @eddie_dane Месяц назад +314

    Are mustaches the new hoodies for programmers now?

    • @dougmercer
      @dougmercer  Месяц назад +28

      I grew mine at start of COVID ironically and never got rid of it ¯\_(ツ)_/¯

    • @raniwishahy1904
      @raniwishahy1904 Месяц назад +29

      Prime mentioned

    • @dougmercer
      @dougmercer  Месяц назад +14

      @@raniwishahy1904 blazingly fast!

    • @ApexFunplayer
      @ApexFunplayer Месяц назад +1

      Thighhighs bruh.

    • @knut-olaihelgesen3608
      @knut-olaihelgesen3608 26 дней назад

      Why not annotate the return type of your functions? Those are the most important once. Because it return a sequence, annotating the elements of that sequence in the return type will be golden for the rest of the program

  • @guinea_horn
    @guinea_horn Месяц назад +483

    C *can't* be slower than Java, can it? The slowest C implementation would be to implement the entire JVM and then write bad Java code

    • @dougmercer
      @dougmercer  Месяц назад +114

      From some comments on Reddit, they speculate the Java implementation performed better C because Java has a JIT. www.reddit.com/r/Python/comments/1c4ln3x/comment/kzshq27/
      Alternatively, since the challenge started in Java community, more people worked together to find more optimizations.

    • @alfiegordon9013
      @alfiegordon9013 Месяц назад +50

      You would be SHOCKED how much slow linked libraries make a lot of code
      It's why LuaJIT FFI C is as much as 25% faster than native C, because it doesn't have to do linking

    • @stefanalecu9532
      @stefanalecu9532 Месяц назад +60

      ​@@dougmercerto my knowledge, Java hasn't broken the 1s barrier, while the fastest C solution is 0.5s, so C isn't losing its job any time soon

    • @dougmercer
      @dougmercer  Месяц назад +31

      Who got down to 0.5 seconds in C?

    • @mayur9876
      @mayur9876 Месяц назад +82

      Jit has a runtime cost. No way java beats C in terms of code execution. To me this sounds a C skill issue😅

  • @danieljakob1307
    @danieljakob1307 Месяц назад +208

    The Summoning Salt homage at 8:26 is brilliant. Fantastic video!

    • @dougmercer
      @dougmercer  Месяц назад +13

      Thanks =] I had way too much fun with that, haha

    • @ric8248
      @ric8248 Месяц назад +7

      It would have been great to play the musical theme right there!

    • @dougmercer
      @dougmercer  Месяц назад +17

      Summoning Salt does use the track I played there sometimes ("4" by HOME).
      Love his music choices =]

  • @joker345172
    @joker345172 Месяц назад +56

    8:24 Amazing trick! It reminds me of computer graphics class where we had to find a way to improve the DDA Line algorithm... No one could do it. Then, the professor showed us the Bresenham algorithm. It's such a simple concept - instead of working with floats, work with integers! - but it saves soooo much time. It goes to show that sometimes the data type you're working with can have a huge effect on how fast your code is.
    Drawing a parallel to Machine Learning, this is also why new GPUs have FP8 and FP16 as big selling points. Training with FP32, which is still the standard for a lot of applications, is just dog slow compared to using FP16 or even FP8.

    • @dougmercer
      @dougmercer  Месяц назад +3

      Very true! (Also, super cool algorithm -- I never worked with computer graphics so I just read up on bresenham's algorithm)

    • @Deltax64
      @Deltax64 29 дней назад +1

      Half true - the main benefit of FP8/FP16 is reduced memory footprint, not so much the fact that individual operations are faster.

    • @mnxs
      @mnxs 23 дня назад +1

      ​@@Deltax64should individual instructions not be slightly faster on smaller data? I don't actually know how floating point ops are implemented in hardware, I've only learnt a bit about integer arithmetic hardware, and in those cases I'd think bigger data sizes would mean slightly slower performance since certain ops needs to have partial results cascade or certain ops indeed needing multiple micro-ops. However, mostly it depends on the complexity of the arithmetic circuitry.
      But yes, the smaller data size is likely the biggest winner. So much of GPU processing is memory bound, plus you can fit larger data sets into memory with better cache performance when you have smaller data units. (I'm wondering if the practical implementation of ops with these smaller data types really just do a conversion to f32, compute, then covert back down. Would simplify things, if nothing else.)

    • @Deltax64
      @Deltax64 23 дня назад +2

      @@mnxs
      > @Deltax64 should individual instructions not be slightly faster on smaller data? I don't actually know how floating point ops are implemented in hardware,
      Yes, they *can* be faster, just depends on the chip. But like you say, sometimes they're implemented internally by widening and converting back -- so may be the exact same!

    • @AbeDillon
      @AbeDillon 11 часов назад

      ​@@Deltax64 OP never claimed that individual operations were faster (though that's almost generally true. It's true for every piece of silicon I know of that can handle smaller FPs). They just claimed that using different types can make a big difference and gave the use of small FP formats in ML as an example. That's not "half true" that's fully true. No correction needed.
      It's also not generally true that memory footprint and/or bandwidth is the bottleneck. Cerebras builds systems where the compute resources and memory bandwidth are almost perfectly balanced for sparse matrix multiplication in FP16. That means if they add support for Block FP16, they'll be compute-bound.
      Eventually, though, I don't know how they're going to maintain that balance, since logic density typically scales way better than memory bandwidth with each new process node.

  • @BosonCollider
    @BosonCollider Месяц назад +94

    The actual lessons from this is:
    1: use duckdb
    2: otherwise, use polars
    3: use pypy more, and push back against libraries that are incompatible with it

    • @dougmercer
      @dougmercer  Месяц назад +13

      Yup, absolutely

    • @seantparsons
      @seantparsons Месяц назад +6

      The lesson I took from this is that you should probably just write it in Java in the first place.

    • @squishy-tomato
      @squishy-tomato Месяц назад +9

      introducing sql makes it not worth using duckdb over polars imo, unless you absolutely need those 2s

  • @smol.bird42
    @smol.bird42 Месяц назад +32

    your editing has so much taste, great video bro

    • @dougmercer
      @dougmercer  Месяц назад +1

      That is such a nice compliment! Thanks =]

  • @otty4000
    @otty4000 Месяц назад +15

    wow this was a really great video. Its impressive to explain code/libraries differences that quickly and clearly.

  • @gharren
    @gharren Месяц назад +94

    As we all know, Python is the fastest programming language there is. By the time your program has done it's job, the C++ developer is still busy fixing segfaults.

    • @Danielm103
      @Danielm103 Месяц назад +8

      Yeah, no not really. I write with both languages, “How fast is python at..”, it not really a question, because I drop down into C/C++ and write an optimized module.

    • @michal4561
      @michal4561 Месяц назад +3

      ​@@Danielm103 so you can write the things needed in c++ while keeping the develop time for the general case fastly implemented?

    • @Danielm103
      @Danielm103 Месяц назад

      @@michal4561 This is what makes Python amazing. If you follow the paradigm “premature optimization is the root of all evil.” You can happily code along in Python until something becomes a problem performance wise, then look for an optimized module, I.e. similar to how numpy does all the heavy number crunching in C. I do a lot of heavy computations in my work, so I write the stuff that needs to be fast in C++ and call it from python

    • @phitc4242
      @phitc4242 Месяц назад

      ​@michal4561 he's built different. a gigachad so to say. he does the shit you guys using regular python don't want to do - writing real optimized code. check what language your favorite python modules are written in - most of the time in C/C++. and python is just a wrapper for those two. Without those things written in C/C++ (or even assembly) python would never in a billion lifespans of the universe be as fast as it is today.
      we have to be honest here and accept that fact. and be thankful for a moment.
      Also, I have nothing against a fast python, I just want to make sure we all have a reality check here. And I love C.

    • @hevad
      @hevad 29 дней назад +4

      Yes, but once you put it in production, your Python implementation continues to drag on every job it runs.
      Also, writing the optimized Python implementation seems to take just as long than a reasonable C++ implementation; if not longer.

  • @mathmaniac43
    @mathmaniac43 Месяц назад +12

    What did you not like about the index variables in booty's orginal code? I find named variable indexes more readable than "magic numbers". I would have probably used an enum with incrementing values instead.

    • @dougmercer
      @dougmercer  Месяц назад +10

      You're right. I've since changed my mind.
      When refactoring, I got a bit fast and loose with timing and making multiple changes at once. I thought that removing them helped performance, but I was mistaken. They definitely help maintainability and should have been kept

  • @FirroLP
    @FirroLP Месяц назад +15

    Dude, your production quality is so good it's criminal. Had to tell you

    • @dougmercer
      @dougmercer  Месяц назад

      Thanks man, that's such a nice compliment. I really appreciate it =]

  • @shadamethyst1258
    @shadamethyst1258 Месяц назад +73

    I'm impressed you did not do any profiling, nor any statistical test to rule out measurement fluctuations

    • @dougmercer
      @dougmercer  Месяц назад +28

      There definitely are a good deal of fluctuations --- it's largely why I used language like "10ish seconds" and waited to see reasonably large deltas in performance before declaring an improvement. Things definitely get tricky to measure at this speed!

    • @f1shyv1shy35
      @f1shyv1shy35 Месяц назад

      Why not use something like hyperfine?

    • @micmaxian
      @micmaxian Месяц назад +4

      I think this would have blown up the scope of the video and also made it harder for non stats people to understand. I liked the fun ish measurements! Really good video, definitely subscribing and looking forward to more fun and informative content in the future Doug!

  • @50shmekles
    @50shmekles 26 дней назад +2

    This is one of the most well-done, detailed and thorough yet clear, concise and to the point videos ever. Thank you for introducing me to new concepts and libraries!

    • @dougmercer
      @dougmercer  25 дней назад

      Thanks! Glad it was helpful!

  • @skanderghamgui5039
    @skanderghamgui5039 Месяц назад +72

    I had a project last year where I had to automate a manual process using Python to extract data from an Excel file and auto-fill an XML file. After I finished the project, I reduced the process from 3 months of human work to a 20-minute code run, which made me and my boss very happy. I wish I had seen this video last year; we could have been even happier. Nevertheless, it's great to know that I can achieve such high levels of Python performance. I will ensure better time management for my future projects.
    Thanks.

    • @dougmercer
      @dougmercer  Месяц назад +11

      3 months to 20 minutes is a great speed up!
      How frequently do you need to extract the data? One of my favorite XKCD comics is "Is it worth the time?" xkcd.com/1205/
      Odds are, 20 minutes is good enough =]

    • @skanderghamgui5039
      @skanderghamgui5039 Месяц назад +11

      ​@@dougmercer the company I worked for needed that data often almost on every project they accept so yeah I saved them a ton of time! That was my end of study project during a 6 month internship which I used to succeed with high honors from the university.

  • @fatcats7727
    @fatcats7727 Месяц назад +3

    Just wanted to say, all of your videos are incredibly clean and well edited, and althought the algorithm isn’t picking it up rn, your efforts will not go unnoticed!

  • @artlenski8115
    @artlenski8115 Месяц назад +7

    Highly optimised C with proper compiler specifiers taking almost double the time of Java implementation, even if GC is turned off.. hard to believe.

    • @garette8672
      @garette8672 Месяц назад +1

      how could it possibly be hard to believe that more people happened to try to optimize the java implementation.. not a crazy concept and surely plausible.

  • @richardrubin2192
    @richardrubin2192 Месяц назад +3

    This is great - thanks, Doug!

  • @nullzeon
    @nullzeon Месяц назад +4

    how am I just finding out about this channel, editing, knowledge, this video was fantastic!

    • @dougmercer
      @dougmercer  Месяц назад +1

      Thanks! Glad you enjoyed it =]

  • @joaoguerreiro9403
    @joaoguerreiro9403 5 дней назад +1

    Damn, this was an instant follow! Hope to see more computer science content 🙏🏼 Great video :)

  • @thahrimdon
    @thahrimdon 24 дня назад +1

    This is amazing! I was in it with you for the long haul. Had me smiling and frowning the whole way! Great video!

    • @dougmercer
      @dougmercer  23 дня назад

      Hahaha awesome =] thanks!

  • @MakeDataUseful
    @MakeDataUseful Месяц назад +5

    Great video, thanks for taking the time to create 🤙

  • @tzacks_
    @tzacks_ Месяц назад +16

    in other words, getting performance out of python means rewriting the code in C or using a library written in C :)

    • @dougmercer
      @dougmercer  Месяц назад +4

      PyPy is written in RPython, which targets C. A lot of compilers target C ¯\_(ツ)_/¯.

  • @mutatedllama
    @mutatedllama Месяц назад +1

    Amazing video, thanks for posting. Learning about polars and duckdb gave me a real-world takeaway that I could bring to my job. Liked, subscribed and saved!

    • @dougmercer
      @dougmercer  Месяц назад +1

      Awesome! Glad to hear =]

  • @rgndn_bhat
    @rgndn_bhat 26 дней назад +2

    Nice one, Doug. My Cpython implementation finished in 64 seconds on M2 MacBook air, almost the same approach - memory mapped, multi processing and chunks

    • @dougmercer
      @dougmercer  25 дней назад

      That's pretty good! So close to sub 1 minute mark
      Is it possible to release the GIL and do multithreading? That would probably save time.

    • @masterhacker7065
      @masterhacker7065 2 дня назад

      ​@@dougmercerCould u just brute force with say 32 cores from a threadripper as it seems to benefit massively from more cores?

    • @dougmercer
      @dougmercer  2 дня назад

      @@masterhacker7065 for the purpose of the original challenge, the evaluation platform was 8 cores and 64 GB RAM of a particularly sized Hetzner system. For my video, I allowed using all cores on my laptop (didn't feel like paying for cloud compute for a silly RUclips video ¯\_(ツ)_/¯)

  • @AntonioZL
    @AntonioZL Месяц назад +4

    My main takeaway from this video is that Python is much faster than I thought, and I say this as a Python back-end developer. 9 minutes with the most trivial implementation against 3-ish from Java? I'll take that. I definitely expected 20+ minutes lol

    • @dougmercer
      @dougmercer  Месяц назад

      I was shocked when the PyPy + pure python approach broke the 10 second mark...

  • @jamesborden7105
    @jamesborden7105 29 дней назад +3

    Practically speaking, I prefer the polars implementation over the duckdb because I'd rather chain function calls instead of manipulating text when doing data analysis in Python. But maybe a library like pypika would solve this?

  • @danklynn
    @danklynn Месяц назад

    Excellent editing and presentation. Thanks!

  • @weaselontheclock6695
    @weaselontheclock6695 Месяц назад +1

    Nice video, keep it up. Would love to have seen more language comparisons

    • @dougmercer
      @dougmercer  Месяц назад +1

      Good point. A few people have asked about Rust and Go... Will try to do next time!

    • @weaselontheclock6695
      @weaselontheclock6695 Месяц назад +1

      Looking forward to it! Was my first time watching I'm already subscribed :), fantastic quality man

  • @KieranG
    @KieranG 27 дней назад +1

    Hey man, this is great content and I’m surprised it hasn’t been pushed to my feed earlier. Keep it up
    Also 8k subs and a Brilliant sponsorship? Cool shit lolol

    • @dougmercer
      @dougmercer  27 дней назад

      Thanks! =] And yeah, I was thankful -- I got two different sponsors around 4k subscribers and turned down a few others. I'll take it as a sign that I'm doing something right ¯\_(ツ)_/¯

  • @Dan_Diaconescu
    @Dan_Diaconescu Месяц назад

    Amazing video my dude, keep it up!

  • @vitorsilva-or1dj
    @vitorsilva-or1dj Месяц назад +2

    thanks for the video!

    • @dougmercer
      @dougmercer  Месяц назад

      Thanks for watching and commenting =]

  • @Sugar3Glider
    @Sugar3Glider 24 дня назад

    Convert to Lat/Long, z becomes temperature, translate locations into chosen format and youre gooden. Just need to set the display parameters.

  • @dearheart2
    @dearheart2 Месяц назад

    Was interesting. It reminds me of back at the university. I was engineering all kind of algorithms. At that time there was no python.

  • @anon_y_mousse
    @anon_y_mousse Месяц назад +2

    Personally, I consider writing fast code to be a matter of experience. If you know the correct methodologies for doing things, then writing a fast solution should be second nature. Take for instance Danny's naive implementation in C, which in the linked article, he states that it took 8 minutes. His justification for writing it that way is that C doesn't have a native hash table implementation, but if you use C and aren't implementing it yourself or have previously implemented it yourself, then you should at the very least know where to get an adequate third-party library. This is also why anyone who's newly getting into programming should only use C if they want to be a good programmer because you'll have to learn how to do so much on your own until you learn what libraries you should use or have your own. Since my computer has lower specs than Danny's, I'm going to test my own library and see how it compares.

  • @user-pg9nf2vq8s
    @user-pg9nf2vq8s 16 дней назад +1

    i would never use python, but i like watching how people optimize the hell out of something.

    • @dougmercer
      @dougmercer  16 дней назад

      There's something Zen about it 🧘

  • @Websitedr
    @Websitedr Месяц назад +2

    I'm honestly more impressed by that duckdb implementation I might actually try that on something. 1 billion lines sub 10 seconds nobody should be complaining about it being 'too slow'

    • @dougmercer
      @dougmercer  Месяц назад

      Yeah I'm definitely going to use Duckdb more often after this. Seems incredibly powerful for data thats big enough to be a pain, but not big enough to need to be distributed across multiple systems

  • @Finnnicus
    @Finnnicus Месяц назад +1

    great production value doug! you'll get many more views if you keep it up

  • @aquacruisedb
    @aquacruisedb Месяц назад +3

    I have no idea what any of this means, and I thought a python was a snake and rust a problem.. BUT, strangely it was entertaining to watch, and very satisfying to see the run times come down!

    • @dougmercer
      @dougmercer  Месяц назад +1

      Hah! Great comment. Thanks for watching =]

    • @aquacruisedb
      @aquacruisedb Месяц назад +1

      @@dougmercer It's a testament to your presentation skills that a non-programmer made it to the end tbh. I'm just scratching my head as to why youtube put it in my feed, but I'm not complaining!

    • @dougmercer
      @dougmercer  Месяц назад +1

      @@aquacruisedb the universe is sending you signs to learn to program! Or buy a snake... Or check your car's undercarriage for rust...

  • @TiagoBonetti
    @TiagoBonetti Месяц назад +2

    The SummoningSalt reference was fire!

    • @dougmercer
      @dougmercer  Месяц назад

      Thanks =]

    • @pwhiteOO
      @pwhiteOO 25 дней назад

      lol I thought I was gonna be the only one to spot that.

  • @randypittman279
    @randypittman279 Месяц назад +3

    Does file I/O chunking not really matter for the pure python implementations? That is, is there no gain in reading large chunks of the file into RAM rather than reading line-by-line? Rightly or wrongly (premature optimization) I always have a voice at the back of my head telling me to minimize I/O operations. Especially if the data is cold and on spinning platters!
    Super cool video. Switching to bytes and doing your own int parsing were new ideas to me!

    • @dougmercer
      @dougmercer  Месяц назад +2

      It might be possible to speed it up more with chunking! I didn't try because I couldn't really wrap my head around a good way of doing it.
      If you want to give it a shot, try forking this repo! github.com/dougmercer-yt/1brc
      (if you don't feel like generating 13GB of data, you're welcome to send me a gist or link to a fork and I'll try running it).

  • @frd85
    @frd85 Месяц назад +1

    informative video with nice summoning salt vibes. good job.

    • @dougmercer
      @dougmercer  Месяц назад

      Thanks =] (and sorry if summoning salt music is stuck in your head now)

  • @Wurstfinger-rl1zi
    @Wurstfinger-rl1zi 29 дней назад +2

    this shit is actual python wizardry

  • @darrenzou2225
    @darrenzou2225 Месяц назад +2

    The fastest is of course muti-universe read, which can read all 1 billion rows simultaneously and do it in constant time

    • @dougmercer
      @dougmercer  Месяц назад

      At least until causality is deprecated. Then we can get the answer before running the code!

  • @tsgraphics1
    @tsgraphics1 Месяц назад +8

    Can you make a video comparing the performance of Mojo?

    • @dougmercer
      @dougmercer  Месяц назад +3

      I plan to some day, but am waiting on a v1 release.

  • @GLOCKSURU
    @GLOCKSURU Месяц назад

    What is the font/theme you use in the images of code? It is so nice.

    • @dougmercer
      @dougmercer  Месяц назад

      I use Anonymous Pro font (fonts.google.com/specimen/Anonymous+Pro) and nord-base16 colors when syntax highlighting with pygments (github.com/idleberg/base16-pygments). Nord style is pretty close to nord-base16 though and is more common.
      (One minor caveat about the colors: the mapping between tokens and colors is out of date for that repo, so I fixed the colors for nord-base16 on a personal fork).

  • @TheFwip
    @TheFwip Месяц назад +1

    Pendantic nit: at 8:00, you say "casting it as an integer instead of a float."
    This should be "parsing," as casting is (usually) used to refer to things that have no runtime cost - e.g telling the compiler "now pretend these four bytes are an int32."
    Otherwise, very good video. Curious also which Java runtime you used.

    • @dougmercer
      @dougmercer  Месяц назад

      I used openjdk 21.0.2 because I wanted to brew install it, but the actual challenge winner used 21.0.2 graal

    • @TheFwip
      @TheFwip Месяц назад

      @@dougmercer thanks!

  • @andydataguy
    @andydataguy Месяц назад +1

    Great video!

    • @dougmercer
      @dougmercer  Месяц назад

      Thanks Andy! Much appreciated =]

  • @andersondantas2010
    @andersondantas2010 Месяц назад +1

    [14.5s using rust]
    Hi , I did the challenge myself and that was my best time on a M1 with 8GB of RAM. To be honest I used some external dependencies but still enjoyed the challenge haha (first time coding rust). If you don't mind I'd like to discuss some items from your solutions:
    1. Have you tested parsing the numbers byte-per-byte?
    2. How can your code account for number under the 10 degree mark as they have less than the original digits you parser expects?
    3. Have you tried tweaking the chunk size to closer to the cache size? I had my best results reading chunks of 188kb
    As I have less memory than the whole file size, mmap didn't gave me the great performance other people had so I stayed with the manual file handling

    • @dougmercer
      @dougmercer  Месяц назад +1

      That seems like a pretty great time! Both my laptop and the official challenge workstation had 64GB of RAM, so I expect that your approach would be even faster on those systems.
      1. I did not try parsing byte by byte . Do you have a gist that I could look at to get a sense of how you did it in rust?
      2. Numbers in the file can either be -##.#, -#.#, #.#, or ##.#. Even if the temperature is ~0 degrees, it'll be 0.2 instead of just, say, .2, so these four cases are exhaustive. we first check if there is a minus sign. If there is, we effectively shift forward one character. Then, we check where the period is. If the period is the character after the current character, then we know that the number after the potential minus sign is of the form #.#. otherwise, we know it is of the form ##.#.
      3. I did not try to mess with chunk size. Another community member submitted a solution to the GitHub that was interesting . Its almost as fast as the doug_booty4 approach and does not use mmap. It had a chunk size parameter and that did affect performance. (Whereas doug_booty4 gets down to like 9.7s on my system, his got to about 10.1). I'm not sure if using a different chunk size for the doug_booty approach would help. It may!

    • @andersondantas2010
      @andersondantas2010 Месяц назад

      @@dougmercer although the chained ifs/elsifs might look like unoptmized, the compiler ends up converting those to jump tables so the processing time is constant

    • @dougmercer
      @dougmercer  Месяц назад

      @@andersondantas2010 ah, did you reply with a second comment containing a link? RUclips might have caught it in a filter, but I don't see anything in my "held for review" comments. if so, maybe just comment back your GitHub username and I'll try to find the gist/GitHub on there ¯\_(ツ)_/¯

    • @dougmercer
      @dougmercer  Месяц назад +1

      @@andersondantas2010 I did try this approach. It was almost as fast, but the approach I listed in the video tends to be slightly faster. github.com/dougmercer-yt/1brc/blob/main/src%2Fdoug_booty4_alternate.py#L8-L18

  • @6IGNITION9
    @6IGNITION9 Месяц назад +1

    Great video. How do you animate the code?

    • @dougmercer
      @dougmercer  Месяц назад +1

      My current code animation process is a bit of a pain. I made a custom Pygments formatter to create a file that I can copy/paste into my video editor (Davinci Resolve) that makes all the text+ objects be colored appropriately, and then I manually move things around or fade in/fade out.
      In the past I've used manim. That also was kind of a pain.
      I just started working on a new approach, but it's gonna be awhile before I even know if it's a good idea or not

  • @marlan__
    @marlan__ Месяц назад

    Is polars multi processed? Is that something it does automatically or could we see the same improvements by running that multiprocessed too?

    • @dougmercer
      @dougmercer  Месяц назад +1

      I believe it is multithreaded in rust, which saturates all the cores. So, I wouldn't expect multiprocessing it in Python would help

  • @joseduarte9823
    @joseduarte9823 13 дней назад

    Depending on how large the total sum actually is, using an incremental mean may yield better performance since python won’t need to upgrade the number to a big int

    • @dougmercer
      @dougmercer  13 дней назад

      Neat idea... It's worth a shot! Feel free to fork the repo and give it a try

  • @wanfuse
    @wanfuse Месяц назад +1

    try Cython and serializing the code perhaps? seen this sort if things make a big difference , also profiling the code, also 13GB, if you don't want to bother with chunking then read into memory ahead of time. If nothing else it tells you whether your I/O bound or not

    • @dougmercer
      @dougmercer  Месяц назад

      I would def be interested in seeing a Cython version! I do think it's possible to beat this implementation if you can do multithreading instead of multiprocessing... I don't have time to implement it but you're welcome to try!

  • @sharjeel_mazhar
    @sharjeel_mazhar Месяц назад +1

    Great video sir! 🔥 I've a video request for you. Can you please make a video about coding time critical parts in let's say c++ and then call it from python to save time. There could be many use cases, where we want to do something and python takes forever and the same task can fly through using c++. I hope you understand what I'm tryna say?
    Putting simply: Extending Python with C++ or any other language for that matter let's say Java

    • @dougmercer
      @dougmercer  Месяц назад

      I don't have a video entirely dedicated to that, but I do have one titled "Compiled Python is FAST" which includes discussions of Cython, which can let you include plain C or C++ very easily.
      There other options for making c extension libraries tho
      Hope that helps!

  • @mrjson3039
    @mrjson3039 Месяц назад

    First time channel watcher here. Amazing video, thanks for this superb piece of content Mister *checks notes* "Python Jack Black"

    • @dougmercer
      @dougmercer  Месяц назад

      HAHAHAHA oh man. I guess I'll take it

  • @VorpalForceField
    @VorpalForceField Месяц назад

    Very Cool ..!! Thank You for sharing .. Cheers :)

  • @ericcartmansh
    @ericcartmansh Месяц назад +2

    Shocked to see the final java result

    • @dougmercer
      @dougmercer  Месяц назад +1

      Me too! Apparently someone's Golang solution got down to 1.1 seconds github.com/dhartunian/1brcgo

  • @seansingh4421
    @seansingh4421 Месяц назад

    ChemE here not programmer, so would an llm inference server be faster and use comparatively lower resources if it was implemented in C++ than Python ?

    • @dougmercer
      @dougmercer  Месяц назад +1

      Hmm. There's a lot of moving parts to the question.
      Generally a server side ML workflow would be accelerated by GPUs (Nvidia graphics cards) or some other purpose built chips (e.g. tensor processing units, TPU).
      Code is structured so that they can do as much processing on these purpose built chips as possible, as they are faster or more energy efficient. In the case of Nvidia GPUs, machine learning languages like pytorch effectively marshall the data to the GPU and then execute CUDA code, Nvidias framework for doing computation of the GPU. Once there, python or C is somewhat out of the loop, or at the very least not a significant bottle neck.

  • @CottidaeSEA
    @CottidaeSEA 11 дней назад +1

    I shit on Python a lot for being slow, but honestly, 8-10 seconds to read 1 billion rows is sufficient in most scenarios.

  • @anneallison6402
    @anneallison6402 21 день назад +1

    How do you do the code animations?

    • @dougmercer
      @dougmercer  21 день назад

      I've used two different approaches for animating code.
      1. In my early videos I used the `manim` library. The community edition has a Code object.
      2. In recent videos, I created a custom Pygments formatter that outputs the syntax highlighted code as a Davinci Resolve Fusion composition.
      Both approaches have a lot of problems.
      I'm currently writing my own animation library. I may make a video about it soon (but I would probably not be open sourcing the code)
      Another option you may find useful is reveal.js . That let's you write code animations in JavaScript, and even has an 'autoanimate" feature that works OK. However, since that's more for live presentations, you would need to screen record if you wanted to make a video

  • @V1ewSh0t
    @V1ewSh0t Месяц назад +1

    @dougmercer I have an idea, what if you use the GPU instead of just the CPU? the GPU is historically faster when running repeating computations (As far as I know) I could be completely wrong about this and if I am, please tell me. But I feel as this could be worth a try! (Great video btw!)

    • @dougmercer
      @dougmercer  Месяц назад +1

      It's a good idea! I saw this submission that uses cuDF + Dask to get 4.5 seconds on their machine github.com/gunnarmorling/1brc/discussions/487

  • @Almondz_
    @Almondz_ 29 дней назад

    What application do you use for the code block display?

    • @dougmercer
      @dougmercer  28 дней назад

      Hah, so... It's a bit complicated.
      My current approach for animating code is to use a custom Pygments formatter to create a Davinci Resolve Fusion setting file that I can copy/paste into my video editor, then edit it in Davinci Resolve.
      This approach has a lot of flaws. (Very hard to find which text+ node has the token I want, very slow to render.
      In my old videos , I animated code using the python library `manim`. This also had a lot of flaws (inconsistent behavior, difficult to preview what I'm doing, difficult to deal with things at token level).
      I'm currently working on making my own text animation library similar to manim, but more tailored to what I need for my videos. I've made good progress, but it's still a WIP.
      There are other off the shelf options that might work for you depending on what you're trying to accomplish (e.g., reveal.js)

    • @Almondz_
      @Almondz_ 28 дней назад +1

      @@dougmercer Oh, that's really cool! Do you have a way I can contact you?

    • @dougmercer
      @dougmercer  28 дней назад

      @Almondz_ sure, check my channel's "about" section for my email

  • @incremental_failure
    @incremental_failure Месяц назад

    Numba comparison would've been interesting, probably combined with numpy in the compiled function.

    • @dougmercer
      @dougmercer  Месяц назад +1

      Hmmm, I'm not sure of the top of my head how I'd do it. I worry that file I/O would make it hard to only use valid Numba.
      That said, I am a big fan of Numba! I did another video (Compiled Python is FAST) and it showed how awesome Numba can be

  • @KaranBulani
    @KaranBulani Месяц назад

    multi threading and multiprocessing is not supported in python correct? due to global interpreter lock. how did he do at 3:56

    • @dougmercer
      @dougmercer  Месяц назад +1

      Python fully supports multiprocessing. You just basically have to pay the overhead of serializing/deserializing data between the parent and child processes.
      Multi*threading* does not work well because of GIL

  • @wlockuz4467
    @wlockuz4467 Месяц назад +6

    When I see videos like this, I feel like I know nothing about programming. I have been a software engineer for over 3 years now.

    • @dougmercer
      @dougmercer  Месяц назад +3

      It's never to late to learn new stuff!
      Play with a new library or start a project that's way different than your usual work
      I used to only know Excel, visual basic, and Matlab. Over time, I found excuses to experiment with Python, Linux, git, and docker and I became a much better developer because of them.
      Three years is still super early in your career. Continuous learning and intellectual curiosity is the most important skill a dev can have.

  • @DarkZeros
    @DarkZeros Месяц назад +5

    Nobody has actually tried on the C side. Because I am sure it can beat java or at least, get same results

    • @dougmercer
      @dougmercer  Месяц назад

      Give it a shot! Info for the C implementation is here www.dannyvankooten.com/blog/2024/1brc/

    • @DarkZeros
      @DarkZeros Месяц назад +1

      @@dougmercer Thanks! I might do! (Looks like a small enough problem to give a try)

  • @why_tf_you_do_tis7941
    @why_tf_you_do_tis7941 Месяц назад +2

    Honestly great video, i recently saw theprimeagen's stream on the GO implementation of this and thought to myself how fast can it be done in python and just cause i was bored i tried doing it on my own, and one night+3 restarts(i read the entire file in memory and my swap setup is sh~t so it bricked my computer oops~)+pandas,xarray,numpy and dask implementations later i gave up at cause i dont have that long of an attention span. but this video and just seeing more approaches to this problem i might try again (definitely not pure python tho)

    • @dougmercer
      @dougmercer  Месяц назад +1

      Prime got me interested in it too!
      It's definitely a fun problem. Without PyPy, Python would really struggle.
      At some point, I'd like to try a language I'm not familiar with and see how far I can get.
      Thanks for watching and commenting!

  • @__python__
    @__python__ Месяц назад

    Thanks @dougmercer for this video, but in the polars variation, the speed cannot be solely ascribed to the Python language, as you are likely aware of the underlying programming language employed by polars.

    • @dougmercer
      @dougmercer  Месяц назад

      I do say that Polars is implemented in rust, and put it in the "Python-ish" section for that reason

  • @oliviarojas7023
    @oliviarojas7023 Месяц назад +1

    Yo Doug... the repo is only showing in your recent commits... not sure if that was intentional, but it took me an extra click to get there haha... about .05 extra seconds, and I think we can do better.

    • @dougmercer
      @dougmercer  Месяц назад

      Oh hmm, I think I put it under my dougmercer-yt organization instead of my dougmercer user. Sorry for the confusion, but glad you found it =]
      Oh, and good luck! I'd love for someone to get this down to like 5 seconds.

    • @oliviarojas7023
      @oliviarojas7023 Месяц назад +1

      Oh I can't beat that haha.... I was being stupid about the extra time it took to get to your repo.... I was just goofin though ;].... love your channel btw..... just found you and you are my new go to... low level is a great name for what I was looking for! Cheers

    • @oliviarojas7023
      @oliviarojas7023 Месяц назад +1

      Oh shit I was thinking of another channel I recently ran into @lowlevellearning ... yall both got the chops though.... Doug mercer is a good name too hahaha sorry

    • @dougmercer
      @dougmercer  Месяц назад

      LLL is great too =]

  • @DareDevilPhil
    @DareDevilPhil 29 дней назад +1

    I feel like this should be a single core challenge for purity. I'm still watching though, see if I change my mind by the end.

    • @dougmercer
      @dougmercer  29 дней назад

      So, did you change your mind by the end?

    • @DareDevilPhil
      @DareDevilPhil 29 дней назад +1

      @@dougmercer can't say I did :)

    • @dougmercer
      @dougmercer  29 дней назад

      @@DareDevilPhil hahaha fair enough =]

  • @irfanfauzi8704
    @irfanfauzi8704 Месяц назад +1

    This is great. But did I miss numpy in your vids ?

    • @dougmercer
      @dougmercer  Месяц назад +1

      It wouldn't help with this problem, because so much of the work is IO + dealing with scalars

    • @irfanfauzi8704
      @irfanfauzi8704 Месяц назад

      Interesting. I should learn more. Thanks for replying

  • @poutineausyropderable7108
    @poutineausyropderable7108 Месяц назад

    Tbh, The usage of global variable clearly defined as constant is for code readability.
    Replacing constant with magic number is not worth the performance boost, especially when in a strongly type language, the compiler will optimise it.

    • @dougmercer
      @dougmercer  Месяц назад +1

      Yeah, in hindsight I agree.
      It doesn't seem to make any difference in performance-- I was mistaken. A community member submitted what i'd call a "well engineered" version of the code that had a proper CLI, a few debugging options, and reintroduced the globals. It was almost as fast as the fastest version I had (but still a fraction of a second slower cause he didn't use mmap)

  • @Bernarditete
    @Bernarditete Месяц назад +1

    I would love to see a Mojo implementation

    • @dougmercer
      @dougmercer  Месяц назад +1

      I do plan to try Mojo in some future videos.
      I have two requirements before covering them: language is open sourced (recently done) and they have a stable v1 release (hopefully sometime soon)

  • @nikilragav
    @nikilragav 14 дней назад

    are you allowed to use numpy or gpu (torch, cupy, etc)

    • @dougmercer
      @dougmercer  14 дней назад

      You could use numpy, but I don't think it would help (the bottleneck is reading the data in).
      I did see some use Dask + cuDF (CUDA) and that was very fast. However, it wasn't allowed in the challenge because the evaluation system didn't have a GPU

    • @nikilragav
      @nikilragav 14 дней назад

      @@dougmercer ah. Reminds me of another challenge I saw where IO is the bottleneck. Even there I'm wondering if writing the content to the GPU memory and back is too slow

  • @overloader7900
    @overloader7900 26 дней назад +1

    back in c i use characters in single quotes instead of ascii numbers, like '-' instead of 45, thats more obvious

    • @dougmercer
      @dougmercer  25 дней назад

      Yeah. I tried to do something like that, but b"abc"[0] returns a number whereas b"abc"[:1] returns b"a".
      I could have used ord(b"a") but I was trying to inline as much as possible to be safe ¯\_(ツ)_/¯

  • @cottawalla
    @cottawalla 14 дней назад

    I couldn't get your opening "performance critical python" out of my head and so missed the entire rest of the video.

  • @willymcnamara1429
    @willymcnamara1429 24 дня назад +1

    interesting video! thank you Doug 🤝 🐍

  • @themanwhobeateinstein
    @themanwhobeateinstein Месяц назад +1

    Which Java exactly was it, I need to know so I can use it

    • @dougmercer
      @dougmercer  Месяц назад

      github.com/gunnarmorling/1brc?tab=readme-ov-file#results check out the top result. JDK 21.0.2-graal

    • @themanwhobeateinstein
      @themanwhobeateinstein Месяц назад +1

      @@dougmercer Thanks 👍

  • @bryanbischof4351
    @bryanbischof4351 Месяц назад

    The cultural impact of summoningsalt on nerds is unmatched

  • @gagers78
    @gagers78 Месяц назад +1

    Using ctypes and optimized c code you can write a shared library that runs the c code in python getting the speed of c whilst pretending it's still python. That would be my attempt

    • @dougmercer
      @dougmercer  Месяц назад

      I mean... technically ctypes is a built in library... ¯\_(ツ)_/¯

  • @priteshsingh4055
    @priteshsingh4055 Месяц назад +1

    amazing video

  • @BraxtonMeyer
    @BraxtonMeyer Месяц назад

    which font are you using.

  • @jz8741
    @jz8741 Месяц назад

    Pardon my ignorance, but I thought because of the GIL python couldn't do multi threading. Can anyone tell me what I'm missing?

    • @dougmercer
      @dougmercer  Месяц назад

      This used multiprocessing, not multi threading.
      Multiprocessing creates a separate python process for each worker and serializes/deserializes the data moved between the child processes and the main one

  • @vlc-cosplayer
    @vlc-cosplayer 19 дней назад

    Me, approaching this as an engineer:
    - Read a random subset of the data
    - Do the computation on that
    - Yeah that's close enough lmao, interpolation will take care of missing values

    • @dougmercer
      @dougmercer  19 дней назад

      Hah! Working smarter not harder 🚀

    • @vlc-cosplayer
      @vlc-cosplayer 19 дней назад

      @@dougmercer I remembered a video I watched about HyperLogLog. When working with extremely large datasets, a fast approximation may be more desirable than getting the correct answer, but only after a long time. 👀
      It'd be interesting to measure how good an approximation you can get using only a fraction of the data. E.g., would using 10% of the data get 90% of the way to the correct answer? You probably don't need 100% accuracy all the time. In fact, your data may not even be 100% accurate to begin with!
      To put the cost of precision in perspective, getting 99% uptime is relatively easy (that's 80 hours of downtime/year), but every additional 9 after that becomes exponentially more expensive. 99.9% is 8 hours. 99.99% is only 1 hour, 99.999% is only 5 minutes, go to the bathroom and you'll miss that. 💀

  • @12346798Mann
    @12346798Mann Месяц назад

    I have a csv file with 1.4gb and 11 million rows. The data comes from around 60.000 XML files, which are compressed with gz. My shitty python script first unzips the files and parses combines it to a single CSV. It's slow and eats memory, but it's good enough because it's not live

  • @user-yp7eq7tm4k
    @user-yp7eq7tm4k Месяц назад

    Great video

  • @Pritam252
    @Pritam252 19 дней назад

    Does this video's measurements get affected by Disk speed?

    • @Pritam252
      @Pritam252 19 дней назад

      (I guess every experiment will always have some slight noise)

    • @dougmercer
      @dougmercer  19 дней назад

      Oh definitely. The fact that I have a lot of RAM and have a solid state drive also make this much faster than if I had very little RAM and only a HDD.
      I also had some background processes running, which add a bit of noise to the measurements
      That said, I think my system is roughly on par specs wise with the challenge's evaluation system

  • @this-one
    @this-one 19 дней назад

    Would it count as Python if we write it as a module in C?

    • @dougmercer
      @dougmercer  19 дней назад +1

      I'm no philosopher, but this gives me ship of theseus vibes. so... maybe technically but I don't feel good about it

  • @BrianStDenis-pj1tq
    @BrianStDenis-pj1tq Месяц назад +1

    Great video. I'd like to know how Java is faster than C.

    • @dougmercer
      @dougmercer  Месяц назад

      Thanks!
      I'm not 100% sure (I'm admittedly not qualified to speculate on Java/C performance optimization). The thoughts I've saw are
      1. Many people focused on Java (since original challenge language), fewer focused on C. So the Java implementation is super well optimized and the C could have left some potential improvements missing
      2. The JVM JIT helped out
      ¯\_(ツ)_/¯

  • @mahdirostami7034
    @mahdirostami7034 18 дней назад

    8:53 I cannot believe writing a parser would gain any performance considering the default one is probably implemented in C. I assume this is a case of pypy optimizing while running and I'm wondering if running this same script with cpython would result in worse performance.

    • @dougmercer
      @dougmercer  17 дней назад +1

      I expect that the custom parser would have worse performance in plain CPython, but I didn't test it

  • @Markyroson
    @Markyroson Месяц назад

    I wonder how Pybind11 would do. I’ve personally seen orders of magnitude improvements with data processing vs pure python.

    • @dougmercer
      @dougmercer  Месяц назад

      I do feel that using pybind11 would be considered Python-ish (not pure Python). But you're welcome to try if you'd like to fork the repo in the video description =]

  • @timonix2
    @timonix2 Месяц назад

    I really thought that reading the 1 billion line file would be the past that takes the longest. Like order of magnitude line than the logic of the code. But I guess not

    • @dougmercer
      @dougmercer  Месяц назад +1

      I was surprised it got as low as it did... I guess solid state disk + lots of RAM help ¯\_(ツ)_/¯
      Members of the Go community got down to 1.1 second, which is wild

  • @kiffeeify
    @kiffeeify Месяц назад +1

    The root cause is the CSV file. try doing this without parsing strings to floats e.g. with parquet or even uncompressed arrow arrays:D

    • @dougmercer
      @dougmercer  Месяц назад

      I did at the end with duckdb and got about 5ish seconds. Definitely helped compared to 9, but still some work to do to achieve Java speeds

  • @rushcoc9605
    @rushcoc9605 18 дней назад +1

    😮😅can you tell me how to measure how much time it take which part of code just by looking how ?

    • @dougmercer
      @dougmercer  17 дней назад +1

      1. A bit of intuition
      2. A bit of being totally wrong (removing the constants that indicated which column was min, max, count, sum didnt speed up performance... I was trying too many things at once and accidentally bundled that change in with something else)
      3. I used a lot of time.perf_counter() to measure that time that certain operations took and A/B tested them
      Normally, in CPython, I would typically profile using something like PyInstrument or other similar line-level profilers

  • @guilhermewxs1840
    @guilhermewxs1840 Месяц назад +1

    look at what they do to mimic a fraction of our power 😂

    • @dougmercer
      @dougmercer  Месяц назад +2

      True, but...
      1. Python and Java/C etc all used the same sort of tricks (memory mapping, parallelism, custom parsing). Other languages just have a bit of an advantage over python because of proper threading. They also implemented custom hash functions which I did not have the patience for
      2. In preproduction, I saw a lot of people writing C/Rust etc that took like 30 seconds. So, this problem wasn't just "compiled language go brrr" like some other things are. It did require implementing several tricks to break the 10 second mark even for "fast" languages

  • @ardenthebibliophile
    @ardenthebibliophile Месяц назад +2

    Wouldve loved to see a pandas attempt just as a benchmark

    • @dougmercer
      @dougmercer  Месяц назад

      It's bad... haha. You can try running the pandas version here, github.com/Butch78/1BillionRowChallenge/blob/main/python_1brc%2Fmain.py

    • @ardenthebibliophile
      @ardenthebibliophile Месяц назад

      @@dougmercer not particularly interested in downloading and running it myself. Is the result posted somewhere? Hard to find from the git repo alone

    • @dougmercer
      @dougmercer  Месяц назад

      @@ardenthebibliophile I will run it later after I settle in

    • @ardenthebibliophile
      @ardenthebibliophile Месяц назад +1

      @@dougmercer I really appreciate it.
      Also, I am a recent viewer of the channel, saw you discuss on Reddit. I very much appreciate your editing style. Well done

    • @dougmercer
      @dougmercer  Месяц назад +2

      @@ardenthebibliophile Thanks so much! I appreciate it =]
      On the topic of pandas-- I just ran three trials that took around 2:30s flat.
      Few caveats being:
      * I have a bunch of chrome windows open and am doing some other tasks (whereas with the full video I did 5 trials, take average of middle three, with no other user stuff running besides the terminal and background processes).
      * I didn't bother to format the output in the correct format (but that doesn't take more than a fraction of a second anyways)
      So, quite a big jump between 150s for pandas to ~11-12s for polars.
      Hope that helps! (and thanks again for the nice comments!)

  • @alexnolfi3730
    @alexnolfi3730 17 дней назад +1

    did you test out pandas to see how much slower it was than polars?

    • @dougmercer
      @dougmercer  17 дней назад +1

      It's way slower
      Using the pandas implementation in here github.com/Butch78/1BillionRowChallenge/blob/main/python_1brc%2Fmain.py takes about 150s, whereas the polars implementation takes 11-12s

  • @capability-snob
    @capability-snob Месяц назад +1

    I know this is wild but I wonder if we can do better than boyer-moore for finding the semicolon

    • @dougmercer
      @dougmercer  Месяц назад +1

      Hmm, I'm not sure! If you want to give it a whirl, you can fork the code here github.com/dougmercer-yt/1brc

  • @DepressedMusicEnjoyer
    @DepressedMusicEnjoyer День назад

    As much as I like the video the 6 times slower not being a problem kinda drives me crazy as a person doing low level coding 😭
    Like yeah you’re right for a lot of stuff it doesn’t matter, but then imagine 5 vs 30 fps, and then if it’s nested within another thing you may get exponentially slower.
    I have been trying to make a 480mhz mcus cpu do rendering and it’s difficult to get 30 fps ish and well if using python would mean 6 times slower I woudlnt be happy no matter how much easier my code would be to understand

    • @dougmercer
      @dougmercer  23 часа назад

      That's fair. Some things are worth squeezing all the performance out
      It will be nice when PyPy supports sub-interpreters or no-GIL... it will eventually be possible to close the gap more

  • @jackkraus6948
    @jackkraus6948 Месяц назад

    Doing some data processing in python which takes 26 minutes to run so this may be beneficial for me lol (most of it is pymongo but still)

    • @dougmercer
      @dougmercer  Месяц назад +1

      I've never done anything with pymongo (or mongodb in general), but good luck!

  • @MartialBoniou
    @MartialBoniou Месяц назад

    I filter a 7GB of amazon books TSV data in 5 or 6 seconds in AWK (mawk or GNU awk; on an outdated macbook air M1). Otherwise, +1 for DuckDB (not sponsored)

    • @dougmercer
      @dougmercer  Месяц назад +1

      I do think filtering is an easier task than aggregating. These folks seemed to have a hard time getting a particularly fast awk implementation github.com/gunnarmorling/1brc/discussions/171 . I am not an awk wizard though so I can't really assess how good their code is