The 1 Billion Row Challenge in Rust programming language. The challenge is simple Your mission, should you choose to accept it, is to write a program that retrieves temperature measurement values from a text file and calculates the min, mean, and max temperature per weather station. There's just one caveat: the file has 1,000,000,000 rows! That's more than 10 GB of data! With start with naïve approach and improve it to make many times faster!
The One Billion Row Challenge in Rust: Part 1
The One Billion Row Challenge in Rust: Part 1
The One Billion Row Challenge in Rust: Part 1
The 1 Billion Row Challenge in Rust programming language. The challenge is simple Your mission, should you choose to accept it, is to write a program that retrieves temperature measurement values from a text file and calculates the min, mean, and max temperature per weather station. There's just one caveat: the file has 1,000,000,000 rows! That's more than 10 GB of data! With start with naïve approach and improve it to make many times faster!