Skip to content

Commit

Permalink
Change default for the multi-row partitions distribution
Browse files Browse the repository at this point in the history
Make it be 100% with multiplier "1" -> "100:1".
  • Loading branch information
vponomaryov committed Oct 29, 2024
1 parent 150572e commit a64cf9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripting/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ impl Context {
// Parse the 'rows_per_partitions_groups' string parameter into a HashMap
let mut partn_multipliers: HashMap<String, (f64, f64)> = HashMap::new();
if rows_per_partitions_groups.is_empty() {
rows_per_partitions_groups = "95:1,4:2,1:4";
rows_per_partitions_groups = "100:1";
}
let mut summary_percentage: f64 = 0.0;
let mut duplicates_dump: Vec<String> = Vec::new();
Expand Down

0 comments on commit a64cf9a

Please sign in to comment.