Splitting input files in load.bety.sh#740
Open
Chris-Schnaufer wants to merge 3 commits intoPecanProject:developfrom
Open
Splitting input files in load.bety.sh#740Chris-Schnaufer wants to merge 3 commits intoPecanProject:developfrom
Chris-Schnaufer wants to merge 3 commits intoPecanProject:developfrom
Conversation
added 2 commits
November 14, 2022 12:57
dlebauer
approved these changes
May 4, 2025
Member
|
@Kooper please review |
robkooper
reviewed
May 4, 2025
| if [ -f "${DUMPDIR}/${T}.csv" ]; then | ||
| echo "\COPY ${T} FROM '${DUMPDIR}/${T}.csv' WITH (DELIMITER ' ', NULL '\\N', ESCAPE '\\', FORMAT CSV, ENCODING 'UTF-8')" >&3 | ||
| T_SIZE=`cat ${DUMPDIR}/${T}.csv | wc -l` | ||
| if [ "${T_SIZE}" -gt "${SPLIT_FILE_MAX}" ]; then |
Member
There was a problem hiding this comment.
can we have SPLIT_FILE_MAX==0 means use the old algorithm, and for that to be the default value?
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Large files on underpowered machines can cause the to appear to database to hang through locking conflicts. One cause is that loading large files in one go uses significant resources, slowing the loading process down. Breaking large source files apart and loading them in a loop resolves this issue