1 BILLION row challenge in Go - 2.5 Seconds!

Поділитися
Вставка
  • Опубліковано 16 тра 2024
  • In this video we look at how we can aggregate 1 billion rows of weather station data in as little time as possible. We start with a naive approach and optimize to go from 1m30 seconds to 2.5 seconds. Using the power of memory mapped files, a custom hash map implementation, and multiple Goroutines.
    Implementation: github.com/duanebester/1brc-go
    Thanks to Ben Hoyt
    benhoyt.com/writings/go-1brc/
    00:00 Intro
    00:54 Simple Implementation
    09:55 Advanced - Using mmap
    15:01 Custom integer parsing
    22:12 Parallel processing
    34:16 Custom hashmap
    42:48 Results
  • Розваги

КОМЕНТАРІ • 17

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

    Hello Duane! This is some amazing stuff man! Keep making these and enlightening us! Thanks a lot!

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

    Thank you for blessing us🙏

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

    As always, banger video! 🤤

  • @cariyaputta
    @cariyaputta 18 днів тому +1

    Thanks for sharing.

  • @ashersamuel958
    @ashersamuel958 27 днів тому +2

    Great content, but the autopilot is taking the fun out of it

    • @duanebester
      @duanebester  27 днів тому +1

      Great point. Will disable going forward!

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

    Nice video. However, you are calculating the average while you are meant to keep track of the mean of all the values. That means having an array in the struct to keep track of all the values seen. Subscribed!

    • @duanebester
      @duanebester  Місяць тому +6

      I think “mean” in this case is the arithmetic mean, which is the same as the average; summing the numbers in the set and dividing by total count (per station). My output matches the baseline output so I feel pretty confident in the implementation

  • @renkinjutsu01
    @renkinjutsu01 26 днів тому +1

    It takes me 1 minute just to cat the file to /dev/null

    • @duanebester
      @duanebester  26 днів тому

      Yep the aggregation calculations are what increases the time drastically

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