Skip to content

Latest commit

 

History

History
5 lines (3 loc) · 469 Bytes

README.md

File metadata and controls

5 lines (3 loc) · 469 Bytes

One Billion Rows Challenge C++ Solution (< 2 seconds)

Overview

This project processes a large dataset containing temperature readings for various locations. The goal is to efficiently parse and analyze 1 billion rows of data, calculating the count, average, minimum, and maximum temperatures for each location. The solution leverages multi-threading and memory-mapped file I/O to achieve high performance, completing the task in approximately 1.35808 seconds.