Skip to content

Commit

Permalink
Increase chunk size
Browse files Browse the repository at this point in the history
  • Loading branch information
noah-weingarden committed Nov 22, 2023
1 parent 997cc2d commit 5ca5407
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 @@ -17,7 +17,7 @@


# Large input files are automatically split
MAX_INPUT_SPLIT_SIZE = 2**20 # 1 MB
MAX_INPUT_SPLIT_SIZE = 10 * 1024 * 1024 # 10 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 5ca5407

Please sign in to comment.