blockSize - a new config paramter for max size of the block#272
Merged
Conversation
sonalgoyal
requested changes
May 19, 2022
| } | ||
|
|
||
|
|
||
| public long getblockSize() { |
Member
There was a problem hiding this comment.
camel casing is missing - getBlockSize, same for setter
Member
There was a problem hiding this comment.
this will break the json parsing - please also test one end to end case with 120l records and set block size in args. Use debug logs to verify
Contributor
Author
There was a problem hiding this comment.
Changed to Camel Case.
Ran with examples/febrl120k/config.json. Output attached. Appropriate block size was selected.
| public static long getMaxBlockSize(long totalCount) { | ||
| public static final long MIN_SIZE = 8L; | ||
| public static long getMaxBlockSize(long totalCount, long blockSizeFromConfig) { | ||
| long maxSize = 8; |
Member
There was a problem hiding this comment.
shouldnt this be set to the min size var ?
| if (maxSize > 100) maxSize = 100; | ||
| LOG.debug("**Block size found **"); | ||
| if (maxSize > blockSizeFromConfig) maxSize = blockSizeFromConfig; | ||
| if (maxSize <= 8) maxSize = 8; |
Contributor
Author
|
Output: |
Contributor
Author
|
Output: |
sonalgoyal
requested changes
May 23, 2022
| maxSize = (long) (0.001 * totalCount); | ||
| LOG.debug("**Block size found **" + maxSize); | ||
| if (maxSize > 100) maxSize = 100; | ||
| LOG.debug("**Block size found **"); |
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.
No description provided.