Skip to content

Commit

Permalink
Merge pull request #74 from eecs485staff/increase-max-input-split-size
Browse files Browse the repository at this point in the history
Increase max file size to 2 MB
  • Loading branch information
awdeorio authored Mar 13, 2024
2 parents 8cf2165 + e02df80 commit 44326de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion madoop/mapreduce.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@


# Large input files are automatically split
MAX_INPUT_SPLIT_SIZE = 2**20 # 1 MB
MAX_INPUT_SPLIT_SIZE = 2**21 # 2 MB

# The number of reducers is dynamically determined by the number of unique keys
# but will not be more than num_reducers
Expand Down

0 comments on commit 44326de

Please sign in to comment.