-
-
Save KyMidd/fe22354f8d1b0e912ed8d2873ce17c93 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Number of lines per shard, add 1 to round up fractional shards | |
# Lines aren't duplicated, last shard is slightly short of even with others, which is fine | |
LINES_PER_SHARD=$((ALL_REPOS_LENGTH / SHARD_COUNT)) | |
LINES_PER_SHARD=$((LINES_PER_SHARD + 1)) | |
# Shard the list based on the shard fraction | |
# This outputs files like all_repos_00, all_repos_01, all_repos_02, etc | |
split -l $LINES_PER_SHARD -d all_repos all_repos_ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment