diff --git a/compactor/src/components/divide_initial/multiple_branches.rs b/compactor/src/components/divide_initial/multiple_branches.rs index a1b57bbfa9..31322fd70b 100644 --- a/compactor/src/components/divide_initial/multiple_branches.rs +++ b/compactor/src/components/divide_initial/multiple_branches.rs @@ -49,14 +49,32 @@ impl DivideInitial for MultipleBranchesDivideInitial { .collect::>(); let mut branches = Vec::with_capacity(start_level_files.len()); - let mut chains: Vec>; + let mut chains = Vec::with_capacity(start_level_files.len()); if start_level == CompactionLevel::Initial { - // The splitting & merging of chains in this block is what makes use of the vertical split performed by - // high_l0_overlap_split. Without this chain based grouping, compactions would generally undo the work - // started by splitting in high_l0_overlap_split. - // split start_level_files into chains of overlapping files. This can happen based on min_time/max_time - // without regard for max_l0_created_at because there are no overlaps between chains. - chains = split_into_chains(start_level_files); + // L0 files can be highly overlapping, requiring 'vertical splitting' (see high_l0_overlap_split). + // Achieving `vertical splitting` requires we tweak the grouping here for two reasons: + // 1) Allow the large highly overlapped groups of L0s to remain in a single branch, so they trigger the split + // 2) Prevent the output of a prior split from being grouped together to undo the previous veritacal split. + + // Both of these objectives need to consider the L0s as a chains of overlapping files. The chains are + // each a set of L0s that overlap each other, but do not overlap the other chains. + // Chains can be created based on min_time/max_time without regard for max_l0_created_at because there + // are no overlaps between chains. + let initial_chains = split_into_chains(start_level_files); + + // Reason 1) above - keep the large groups of L0s in a single branch to facilitate later splitting. + for chain in initial_chains { + let this_chain_bytes: usize = + chain.iter().map(|f| f.file_size_bytes as usize).sum(); + if this_chain_bytes > 2 * max_total_file_size_to_group { + // This is a very large set of overlapping L0s, its needs vertical splitting, so keep the branch intact + // to trigger the split. + branches.push(chain); + } else { + chains.push(chain); + } + } + // If the chains are smaller than the max compact size, combine them to get better compaction group sizes. // This combining of chains must happen based on max_l0_created_at (it can only join adjacent chains, when // sorted by max_l0_created_at). @@ -65,6 +83,11 @@ impl DivideInitial for MultipleBranchesDivideInitial { chains = vec![start_level_files]; } + // Reason 2) above - ensure the grouping in branches doesn't undo the vertical splitting. + // Assume we start with 30 files (A,B,C,...), that were each split into 3 files (A1, A2, A3, B1, ..). If we create branches + // from sorting all files by max_l0_created_at we'd undo the vertical splitting (A1-A3 would get compacted back into one file). + // Currently the contents of each chain is more like A1, B1, C1, so by grouping chains together we can preserve the previous + // vertical splitting. for chain in chains { let start_level_files = order_files(chain, start_level); @@ -183,11 +206,11 @@ mod tests { #[should_panic( expected = "Size of a file 50 is larger than the max size limit to compact. Please adjust the settings" )] - fn test_divide_size_limit_too_sall() { + fn test_divide_size_limit_too_small() { let round_info = RoundInfo::ManySmallFiles { start_level: CompactionLevel::Initial, max_num_files_to_group: 10, - max_total_file_size_to_group: 10, + max_total_file_size_to_group: 40, }; let divide = MultipleBranchesDivideInitial::new(); diff --git a/compactor/src/components/round_info_source/mod.rs b/compactor/src/components/round_info_source/mod.rs index c90b99d31f..271c768108 100644 --- a/compactor/src/components/round_info_source/mod.rs +++ b/compactor/src/components/round_info_source/mod.rs @@ -72,11 +72,12 @@ impl LevelBasedRoundInfo { } /// Returns true if number of files of the given start_level and - /// their overlapped files in next level is over limit + /// their overlapped files in next level is over limit, and if those + /// files are sufficiently small. /// /// over the limit means that the maximum number of files that a subsequent compaction /// branch may choose to compact in a single plan would exceed `max_num_files_per_plan` - pub fn too_many_files_to_compact( + pub fn too_many_small_files_to_compact( &self, files: &[ParquetFile], start_level: CompactionLevel, @@ -86,6 +87,10 @@ impl LevelBasedRoundInfo { .filter(|f| f.compaction_level == start_level) .collect::>(); let num_start_level = start_level_files.len(); + let size_start_level: usize = start_level_files + .iter() + .map(|f| f.file_size_bytes as usize) + .sum(); let next_level_files = files .iter() @@ -97,6 +102,14 @@ impl LevelBasedRoundInfo { // plan, run a pre-phase to reduce the number of files first let num_overlapped_files = get_num_overlapped_files(start_level_files, next_level_files); if num_start_level + num_overlapped_files > self.max_num_files_per_plan { + if size_start_level / num_start_level + > self.max_total_file_size_per_plan / self.max_num_files_per_plan + { + // Average start level file size is more than the average implied by max bytes & files per plan. + // Even though there are "many files", this is not "many small files". + // There isn't much (perhaps not any) file reduction to be done, so don't try. + return false; + } return true; } @@ -113,7 +126,7 @@ impl RoundInfoSource for LevelBasedRoundInfo { ) -> Result { let start_level = get_start_level(files); - if self.too_many_files_to_compact(files, start_level) { + if self.too_many_small_files_to_compact(files, start_level) { return Ok(RoundInfo::ManySmallFiles { start_level, max_num_files_to_group: self.max_num_files_per_plan, @@ -200,7 +213,7 @@ mod tests { use crate::components::round_info_source::LevelBasedRoundInfo; #[test] - fn test_too_many_files_to_compact() { + fn test_too_many_small_files_to_compact() { // L0 files let f1 = ParquetFileBuilder::new(1) .with_time_range(0, 100) @@ -229,18 +242,20 @@ mod tests { // f1 and f2 are not over limit assert!(!round_info - .too_many_files_to_compact(&[f1.clone(), f2.clone()], CompactionLevel::Initial)); + .too_many_small_files_to_compact(&[f1.clone(), f2.clone()], CompactionLevel::Initial)); // f1, f2 and f3 are not over limit - assert!(!round_info.too_many_files_to_compact( + assert!(!round_info.too_many_small_files_to_compact( &[f1.clone(), f2.clone(), f3.clone()], CompactionLevel::Initial )); // f1, f2 and f4 are over limit - assert!(round_info.too_many_files_to_compact( + assert!(round_info.too_many_small_files_to_compact( &[f1.clone(), f2.clone(), f4.clone()], CompactionLevel::Initial )); // f1, f2, f3 and f4 are over limit - assert!(round_info.too_many_files_to_compact(&[f1, f2, f3, f4], CompactionLevel::Initial)); + assert!( + round_info.too_many_small_files_to_compact(&[f1, f2, f3, f4], CompactionLevel::Initial) + ); } } diff --git a/compactor/tests/layouts/backfill.rs b/compactor/tests/layouts/backfill.rs index d55e924b68..054ad482b1 100644 --- a/compactor/tests/layouts/backfill.rs +++ b/compactor/tests/layouts/backfill.rs @@ -21,7 +21,7 @@ async fn random_backfill_empty_partition() { let setup = layout_setup_builder() .await .with_max_desired_file_size_bytes(MAX_DESIRED_FILE_SIZE) - .with_max_num_files_per_plan(200) + .with_max_num_files_per_plan(20) .build() .await; @@ -137,2149 +137,303 @@ async fn random_backfill_empty_partition() { - "L0.49[76,932] 1.05us |-----------------------------------L0.49------------------------------------| " - "L0.50[42,986] 1.05us |---------------------------------------L0.50----------------------------------------| " - "L0.51[0,1] 999ns |L0.51| " - - "**** Simulation run 0, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" + - "**** Simulation run 0, type=compact(ManySmallFiles). 1 Input Files, 10mb total:" - "L0, all files 10mb " - - "L0.1[76,932] 1us |------------------------------------------L0.1------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[76,356] 1us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1us 4mb |-------------L0.?-------------| " - - "L0.?[671,932] 1us 3mb |----------L0.?-----------| " - - "**** Simulation run 1, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" + - "L0.51[0,1] 999ns |-----------------------------------------L0.51------------------------------------------|" + - "**** 1 Output Files (parquet_file_id not yet assigned), 10mb total:" - "L0, all files 10mb " - - "L0.2[42,986] 1us |------------------------------------------L0.2------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[42,356] 1us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1us 3mb |-----------L0.?------------| " - - "L0.?[671,986] 1us 3mb |------------L0.?------------| " - - "**** Simulation run 2, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.3[173,950] 1us |------------------------------------------L0.3------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[173,356] 1us 2mb |-------L0.?--------| " - - "L0.?[357,670] 1us 4mb |---------------L0.?---------------| " - - "L0.?[671,950] 1us 4mb |-------------L0.?-------------| " - - "**** Simulation run 3, type=split(HighL0OverlapSingleFile)(split_times=[356]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.4[50,629] 1us |------------------------------------------L0.4------------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[50,356] 1us 5mb |--------------------L0.?---------------------| " - - "L0.?[357,629] 1us 5mb |------------------L0.?------------------| " - - "**** Simulation run 4, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.5[76,932] 1us |------------------------------------------L0.5------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[76,356] 1us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1us 4mb |-------------L0.?-------------| " - - "L0.?[671,932] 1us 3mb |----------L0.?-----------| " - - "**** Simulation run 5, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.6[42,986] 1us |------------------------------------------L0.6------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[42,356] 1us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1us 3mb |-----------L0.?------------| " - - "L0.?[671,986] 1us 3mb |------------L0.?------------| " - - "**** Simulation run 6, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.7[173,950] 1.01us |------------------------------------------L0.7------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[173,356] 1.01us 2mb |-------L0.?--------| " - - "L0.?[357,670] 1.01us 4mb |---------------L0.?---------------| " - - "L0.?[671,950] 1.01us 4mb |-------------L0.?-------------| " - - "**** Simulation run 7, type=split(HighL0OverlapSingleFile)(split_times=[356]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.8[50,629] 1.01us |------------------------------------------L0.8------------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[50,356] 1.01us 5mb |--------------------L0.?---------------------| " - - "L0.?[357,629] 1.01us 5mb |------------------L0.?------------------| " - - "**** Simulation run 8, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.9[76,932] 1.01us |------------------------------------------L0.9------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[76,356] 1.01us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.01us 4mb |-------------L0.?-------------| " - - "L0.?[671,932] 1.01us 3mb |----------L0.?-----------| " - - "**** Simulation run 9, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.10[42,986] 1.01us |-----------------------------------------L0.10------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[42,356] 1.01us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.01us 3mb |-----------L0.?------------| " - - "L0.?[671,986] 1.01us 3mb |------------L0.?------------| " - - "**** Simulation run 10, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.11[173,950] 1.01us |-----------------------------------------L0.11------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[173,356] 1.01us 2mb |-------L0.?--------| " - - "L0.?[357,670] 1.01us 4mb |---------------L0.?---------------| " - - "L0.?[671,950] 1.01us 4mb |-------------L0.?-------------| " - - "**** Simulation run 11, type=split(HighL0OverlapSingleFile)(split_times=[356]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.12[50,629] 1.01us |-----------------------------------------L0.12------------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[50,356] 1.01us 5mb |--------------------L0.?---------------------| " - - "L0.?[357,629] 1.01us 5mb |------------------L0.?------------------| " - - "**** Simulation run 12, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.13[76,932] 1.01us |-----------------------------------------L0.13------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[76,356] 1.01us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.01us 4mb |-------------L0.?-------------| " - - "L0.?[671,932] 1.01us 3mb |----------L0.?-----------| " - - "**** Simulation run 13, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.14[42,986] 1.01us |-----------------------------------------L0.14------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[42,356] 1.01us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.01us 3mb |-----------L0.?------------| " - - "L0.?[671,986] 1.01us 3mb |------------L0.?------------| " - - "**** Simulation run 14, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.15[173,950] 1.01us |-----------------------------------------L0.15------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[173,356] 1.01us 2mb |-------L0.?--------| " - - "L0.?[357,670] 1.01us 4mb |---------------L0.?---------------| " - - "L0.?[671,950] 1.01us 4mb |-------------L0.?-------------| " - - "**** Simulation run 15, type=split(HighL0OverlapSingleFile)(split_times=[356]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.16[50,629] 1.01us |-----------------------------------------L0.16------------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[50,356] 1.01us 5mb |--------------------L0.?---------------------| " - - "L0.?[357,629] 1.01us 5mb |------------------L0.?------------------| " - - "**** Simulation run 16, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.17[76,932] 1.02us |-----------------------------------------L0.17------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[76,356] 1.02us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.02us 4mb |-------------L0.?-------------| " - - "L0.?[671,932] 1.02us 3mb |----------L0.?-----------| " - - "**** Simulation run 17, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.18[42,986] 1.02us |-----------------------------------------L0.18------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[42,356] 1.02us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.02us 3mb |-----------L0.?------------| " - - "L0.?[671,986] 1.02us 3mb |------------L0.?------------| " - - "**** Simulation run 18, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.19[173,950] 1.02us |-----------------------------------------L0.19------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[173,356] 1.02us 2mb |-------L0.?--------| " - - "L0.?[357,670] 1.02us 4mb |---------------L0.?---------------| " - - "L0.?[671,950] 1.02us 4mb |-------------L0.?-------------| " - - "**** Simulation run 19, type=split(HighL0OverlapSingleFile)(split_times=[356]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.20[50,629] 1.02us |-----------------------------------------L0.20------------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[50,356] 1.02us 5mb |--------------------L0.?---------------------| " - - "L0.?[357,629] 1.02us 5mb |------------------L0.?------------------| " - - "**** Simulation run 20, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.21[76,932] 1.02us |-----------------------------------------L0.21------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[76,356] 1.02us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.02us 4mb |-------------L0.?-------------| " - - "L0.?[671,932] 1.02us 3mb |----------L0.?-----------| " - - "**** Simulation run 21, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.22[42,986] 1.02us |-----------------------------------------L0.22------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[42,356] 1.02us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.02us 3mb |-----------L0.?------------| " - - "L0.?[671,986] 1.02us 3mb |------------L0.?------------| " - - "**** Simulation run 22, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.23[173,950] 1.02us |-----------------------------------------L0.23------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[173,356] 1.02us 2mb |-------L0.?--------| " - - "L0.?[357,670] 1.02us 4mb |---------------L0.?---------------| " - - "L0.?[671,950] 1.02us 4mb |-------------L0.?-------------| " - - "**** Simulation run 23, type=split(HighL0OverlapSingleFile)(split_times=[356]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.24[50,629] 1.02us |-----------------------------------------L0.24------------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[50,356] 1.02us 5mb |--------------------L0.?---------------------| " - - "L0.?[357,629] 1.02us 5mb |------------------L0.?------------------| " - - "**** Simulation run 24, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.25[76,932] 1.02us |-----------------------------------------L0.25------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[76,356] 1.02us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.02us 4mb |-------------L0.?-------------| " - - "L0.?[671,932] 1.02us 3mb |----------L0.?-----------| " - - "**** Simulation run 25, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.26[42,986] 1.02us |-----------------------------------------L0.26------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[42,356] 1.02us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.02us 3mb |-----------L0.?------------| " - - "L0.?[671,986] 1.02us 3mb |------------L0.?------------| " - - "**** Simulation run 26, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.27[173,950] 1.03us |-----------------------------------------L0.27------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[173,356] 1.03us 2mb |-------L0.?--------| " - - "L0.?[357,670] 1.03us 4mb |---------------L0.?---------------| " - - "L0.?[671,950] 1.03us 4mb |-------------L0.?-------------| " - - "**** Simulation run 27, type=split(HighL0OverlapSingleFile)(split_times=[356]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.28[50,629] 1.03us |-----------------------------------------L0.28------------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[50,356] 1.03us 5mb |--------------------L0.?---------------------| " - - "L0.?[357,629] 1.03us 5mb |------------------L0.?------------------| " - - "**** Simulation run 28, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.29[76,932] 1.03us |-----------------------------------------L0.29------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[76,356] 1.03us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.03us 4mb |-------------L0.?-------------| " - - "L0.?[671,932] 1.03us 3mb |----------L0.?-----------| " - - "**** Simulation run 29, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.30[42,986] 1.03us |-----------------------------------------L0.30------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[42,356] 1.03us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.03us 3mb |-----------L0.?------------| " - - "L0.?[671,986] 1.03us 3mb |------------L0.?------------| " - - "**** Simulation run 30, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.31[173,950] 1.03us |-----------------------------------------L0.31------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[173,356] 1.03us 2mb |-------L0.?--------| " - - "L0.?[357,670] 1.03us 4mb |---------------L0.?---------------| " - - "L0.?[671,950] 1.03us 4mb |-------------L0.?-------------| " - - "**** Simulation run 31, type=split(HighL0OverlapSingleFile)(split_times=[356]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.32[50,629] 1.03us |-----------------------------------------L0.32------------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[50,356] 1.03us 5mb |--------------------L0.?---------------------| " - - "L0.?[357,629] 1.03us 5mb |------------------L0.?------------------| " - - "**** Simulation run 32, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.33[76,932] 1.03us |-----------------------------------------L0.33------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[76,356] 1.03us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.03us 4mb |-------------L0.?-------------| " - - "L0.?[671,932] 1.03us 3mb |----------L0.?-----------| " - - "**** Simulation run 33, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.34[42,986] 1.03us |-----------------------------------------L0.34------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[42,356] 1.03us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.03us 3mb |-----------L0.?------------| " - - "L0.?[671,986] 1.03us 3mb |------------L0.?------------| " - - "**** Simulation run 34, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.35[173,950] 1.03us |-----------------------------------------L0.35------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[173,356] 1.03us 2mb |-------L0.?--------| " - - "L0.?[357,670] 1.03us 4mb |---------------L0.?---------------| " - - "L0.?[671,950] 1.03us 4mb |-------------L0.?-------------| " - - "**** Simulation run 35, type=split(HighL0OverlapSingleFile)(split_times=[356]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.36[50,629] 1.03us |-----------------------------------------L0.36------------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[50,356] 1.03us 5mb |--------------------L0.?---------------------| " - - "L0.?[357,629] 1.03us 5mb |------------------L0.?------------------| " - - "**** Simulation run 36, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.37[76,932] 1.04us |-----------------------------------------L0.37------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[76,356] 1.04us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.04us 4mb |-------------L0.?-------------| " - - "L0.?[671,932] 1.04us 3mb |----------L0.?-----------| " - - "**** Simulation run 37, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.38[42,986] 1.04us |-----------------------------------------L0.38------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[42,356] 1.04us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.04us 3mb |-----------L0.?------------| " - - "L0.?[671,986] 1.04us 3mb |------------L0.?------------| " - - "**** Simulation run 38, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.39[173,950] 1.04us |-----------------------------------------L0.39------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[173,356] 1.04us 2mb |-------L0.?--------| " - - "L0.?[357,670] 1.04us 4mb |---------------L0.?---------------| " - - "L0.?[671,950] 1.04us 4mb |-------------L0.?-------------| " - - "**** Simulation run 39, type=split(HighL0OverlapSingleFile)(split_times=[356]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.40[50,629] 1.04us |-----------------------------------------L0.40------------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[50,356] 1.04us 5mb |--------------------L0.?---------------------| " - - "L0.?[357,629] 1.04us 5mb |------------------L0.?------------------| " - - "**** Simulation run 40, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.41[76,932] 1.04us |-----------------------------------------L0.41------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[76,356] 1.04us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.04us 4mb |-------------L0.?-------------| " - - "L0.?[671,932] 1.04us 3mb |----------L0.?-----------| " - - "**** Simulation run 41, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.42[42,986] 1.04us |-----------------------------------------L0.42------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[42,356] 1.04us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.04us 3mb |-----------L0.?------------| " - - "L0.?[671,986] 1.04us 3mb |------------L0.?------------| " - - "**** Simulation run 42, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.43[173,950] 1.04us |-----------------------------------------L0.43------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[173,356] 1.04us 2mb |-------L0.?--------| " - - "L0.?[357,670] 1.04us 4mb |---------------L0.?---------------| " - - "L0.?[671,950] 1.04us 4mb |-------------L0.?-------------| " - - "**** Simulation run 43, type=split(HighL0OverlapSingleFile)(split_times=[356]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.44[50,629] 1.04us |-----------------------------------------L0.44------------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[50,356] 1.04us 5mb |--------------------L0.?---------------------| " - - "L0.?[357,629] 1.04us 5mb |------------------L0.?------------------| " - - "**** Simulation run 44, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.45[76,932] 1.04us |-----------------------------------------L0.45------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[76,356] 1.04us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.04us 4mb |-------------L0.?-------------| " - - "L0.?[671,932] 1.04us 3mb |----------L0.?-----------| " - - "**** Simulation run 45, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.46[42,986] 1.05us |-----------------------------------------L0.46------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[42,356] 1.05us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.05us 3mb |-----------L0.?------------| " - - "L0.?[671,986] 1.05us 3mb |------------L0.?------------| " - - "**** Simulation run 46, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.47[173,950] 1.05us |-----------------------------------------L0.47------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[173,356] 1.05us 2mb |-------L0.?--------| " - - "L0.?[357,670] 1.05us 4mb |---------------L0.?---------------| " - - "L0.?[671,950] 1.05us 4mb |-------------L0.?-------------| " - - "**** Simulation run 47, type=split(HighL0OverlapSingleFile)(split_times=[356]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.48[50,629] 1.05us |-----------------------------------------L0.48------------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[50,356] 1.05us 5mb |--------------------L0.?---------------------| " - - "L0.?[357,629] 1.05us 5mb |------------------L0.?------------------| " - - "**** Simulation run 48, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.49[76,932] 1.05us |-----------------------------------------L0.49------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[76,356] 1.05us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.05us 4mb |-------------L0.?-------------| " - - "L0.?[671,932] 1.05us 3mb |----------L0.?-----------| " - - "**** Simulation run 49, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.50[42,986] 1.05us |-----------------------------------------L0.50------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[42,356] 1.05us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.05us 3mb |-----------L0.?------------| " - - "L0.?[671,986] 1.05us 3mb |------------L0.?------------| " + - "L0.?[0,1] 999ns |------------------------------------------L0.?------------------------------------------|" - "Committing partition 1:" - - " Soft Deleting 50 files: L0.1, L0.2, L0.3, L0.4, L0.5, L0.6, L0.7, L0.8, L0.9, L0.10, L0.11, L0.12, L0.13, L0.14, L0.15, L0.16, L0.17, L0.18, L0.19, L0.20, L0.21, L0.22, L0.23, L0.24, L0.25, L0.26, L0.27, L0.28, L0.29, L0.30, L0.31, L0.32, L0.33, L0.34, L0.35, L0.36, L0.37, L0.38, L0.39, L0.40, L0.41, L0.42, L0.43, L0.44, L0.45, L0.46, L0.47, L0.48, L0.49, L0.50" - - " Creating 138 files" - - "**** Simulation run 50, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[329, 658]). 81 Input Files, 300mb total:" - - "L0 " - - "L0.51[0,1] 999ns 10mb |L0.51| " - - "L0.52[76,356] 1us 3mb |---------L0.52---------| " - - "L0.53[357,670] 1us 4mb |----------L0.53-----------| " - - "L0.54[671,932] 1us 3mb |--------L0.54--------| " - - "L0.55[42,356] 1us 3mb |----------L0.55-----------| " - - "L0.56[357,670] 1us 3mb |----------L0.56-----------| " - - "L0.57[671,986] 1us 3mb |----------L0.57-----------| " - - "L0.58[173,356] 1us 2mb |----L0.58-----| " - - "L0.59[357,670] 1us 4mb |----------L0.59-----------| " - - "L0.60[671,950] 1us 4mb |---------L0.60---------| " - - "L0.61[50,356] 1us 5mb |----------L0.61----------| " - - "L0.62[357,629] 1us 5mb |--------L0.62---------| " - - "L0.63[76,356] 1us 3mb |---------L0.63---------| " - - "L0.64[357,670] 1us 4mb |----------L0.64-----------| " - - "L0.65[671,932] 1us 3mb |--------L0.65--------| " - - "L0.66[42,356] 1us 3mb |----------L0.66-----------| " - - "L0.67[357,670] 1us 3mb |----------L0.67-----------| " - - "L0.68[671,986] 1us 3mb |----------L0.68-----------| " - - "L0.69[173,356] 1.01us 2mb |----L0.69-----| " - - "L0.70[357,670] 1.01us 4mb |----------L0.70-----------| " - - "L0.71[671,950] 1.01us 4mb |---------L0.71---------| " - - "L0.72[50,356] 1.01us 5mb |----------L0.72----------| " - - "L0.73[357,629] 1.01us 5mb |--------L0.73---------| " - - "L0.74[76,356] 1.01us 3mb |---------L0.74---------| " - - "L0.75[357,670] 1.01us 4mb |----------L0.75-----------| " - - "L0.76[671,932] 1.01us 3mb |--------L0.76--------| " - - "L0.77[42,356] 1.01us 3mb |----------L0.77-----------| " - - "L0.78[357,670] 1.01us 3mb |----------L0.78-----------| " - - "L0.79[671,986] 1.01us 3mb |----------L0.79-----------| " - - "L0.80[173,356] 1.01us 2mb |----L0.80-----| " - - "L0.81[357,670] 1.01us 4mb |----------L0.81-----------| " - - "L0.82[671,950] 1.01us 4mb |---------L0.82---------| " - - "L0.83[50,356] 1.01us 5mb |----------L0.83----------| " - - "L0.84[357,629] 1.01us 5mb |--------L0.84---------| " - - "L0.85[76,356] 1.01us 3mb |---------L0.85---------| " - - "L0.86[357,670] 1.01us 4mb |----------L0.86-----------| " - - "L0.87[671,932] 1.01us 3mb |--------L0.87--------| " - - "L0.88[42,356] 1.01us 3mb |----------L0.88-----------| " - - "L0.89[357,670] 1.01us 3mb |----------L0.89-----------| " - - "L0.90[671,986] 1.01us 3mb |----------L0.90-----------| " - - "L0.91[173,356] 1.01us 2mb |----L0.91-----| " - - "L0.92[357,670] 1.01us 4mb |----------L0.92-----------| " - - "L0.93[671,950] 1.01us 4mb |---------L0.93---------| " - - "L0.94[50,356] 1.01us 5mb |----------L0.94----------| " - - "L0.95[357,629] 1.01us 5mb |--------L0.95---------| " - - "L0.96[76,356] 1.02us 3mb |---------L0.96---------| " - - "L0.97[357,670] 1.02us 4mb |----------L0.97-----------| " - - "L0.98[671,932] 1.02us 3mb |--------L0.98--------| " - - "L0.99[42,356] 1.02us 3mb |----------L0.99-----------| " - - "L0.100[357,670] 1.02us 3mb |----------L0.100----------| " - - "L0.101[671,986] 1.02us 3mb |----------L0.101----------| " - - "L0.102[173,356] 1.02us 2mb |----L0.102----| " - - "L0.103[357,670] 1.02us 4mb |----------L0.103----------| " - - "L0.104[671,950] 1.02us 4mb |--------L0.104---------| " - - "L0.105[50,356] 1.02us 5mb |---------L0.105----------| " - - "L0.106[357,629] 1.02us 5mb |--------L0.106--------| " - - "L0.107[76,356] 1.02us 3mb |--------L0.107---------| " - - "L0.108[357,670] 1.02us 4mb |----------L0.108----------| " - - "L0.109[671,932] 1.02us 3mb |-------L0.109--------| " - - "L0.110[42,356] 1.02us 3mb |----------L0.110----------| " - - "L0.111[357,670] 1.02us 3mb |----------L0.111----------| " - - "L0.112[671,986] 1.02us 3mb |----------L0.112----------| " - - "L0.113[173,356] 1.02us 2mb |----L0.113----| " - - "L0.114[357,670] 1.02us 4mb |----------L0.114----------| " - - "L0.115[671,950] 1.02us 4mb |--------L0.115---------| " - - "L0.116[50,356] 1.02us 5mb |---------L0.116----------| " - - "L0.117[357,629] 1.02us 5mb |--------L0.117--------| " - - "L0.118[76,356] 1.02us 3mb |--------L0.118---------| " - - "L0.119[357,670] 1.02us 4mb |----------L0.119----------| " - - "L0.120[671,932] 1.02us 3mb |-------L0.120--------| " - - "L0.121[42,356] 1.02us 3mb |----------L0.121----------| " - - "L0.122[357,670] 1.02us 3mb |----------L0.122----------| " - - "L0.123[671,986] 1.02us 3mb |----------L0.123----------| " - - "L0.124[173,356] 1.03us 2mb |----L0.124----| " - - "L0.125[357,670] 1.03us 4mb |----------L0.125----------| " - - "L0.126[671,950] 1.03us 4mb |--------L0.126---------| " - - "L0.127[50,356] 1.03us 5mb |---------L0.127----------| " - - "L0.128[357,629] 1.03us 5mb |--------L0.128--------| " - - "L0.129[76,356] 1.03us 3mb |--------L0.129---------| " - - "L0.130[357,670] 1.03us 4mb |----------L0.130----------| " - - "L0.131[671,932] 1.03us 3mb |-------L0.131--------| " - - "**** 3 Output Files (parquet_file_id not yet assigned), 300mb total:" - - "L1 " - - "L1.?[0,329] 1.03us 100mb |------------L1.?------------| " - - "L1.?[330,658] 1.03us 100mb |-----------L1.?------------| " - - "L1.?[659,986] 1.03us 100mb |-----------L1.?------------| " - - "Committing partition 1:" - - " Soft Deleting 81 files: L0.51, L0.52, L0.53, L0.54, L0.55, L0.56, L0.57, L0.58, L0.59, L0.60, L0.61, L0.62, L0.63, L0.64, L0.65, L0.66, L0.67, L0.68, L0.69, L0.70, L0.71, L0.72, L0.73, L0.74, L0.75, L0.76, L0.77, L0.78, L0.79, L0.80, L0.81, L0.82, L0.83, L0.84, L0.85, L0.86, L0.87, L0.88, L0.89, L0.90, L0.91, L0.92, L0.93, L0.94, L0.95, L0.96, L0.97, L0.98, L0.99, L0.100, L0.101, L0.102, L0.103, L0.104, L0.105, L0.106, L0.107, L0.108, L0.109, L0.110, L0.111, L0.112, L0.113, L0.114, L0.115, L0.116, L0.117, L0.118, L0.119, L0.120, L0.121, L0.122, L0.123, L0.124, L0.125, L0.126, L0.127, L0.128, L0.129, L0.130, L0.131" - - " Creating 3 files" - - "**** Simulation run 51, type=split(ReduceOverlap)(split_times=[658]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.133[357,670] 1.03us |-----------------------------------------L0.133-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,658] 1.03us 3mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[659,670] 1.03us 130kb |L0.?|" - - "**** Simulation run 52, type=split(ReduceOverlap)(split_times=[329]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.132[42,356] 1.03us |-----------------------------------------L0.132-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,329] 1.03us 3mb |--------------------------------------L0.?--------------------------------------| " - - "L0.?[330,356] 1.03us 293kb |L0.?-| " - - "**** Simulation run 53, type=split(ReduceOverlap)(split_times=[658]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.136[357,670] 1.03us |-----------------------------------------L0.136-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,658] 1.03us 4mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[659,670] 1.03us 158kb |L0.?|" - - "**** Simulation run 54, type=split(ReduceOverlap)(split_times=[329]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.135[173,356] 1.03us |-----------------------------------------L0.135-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,329] 1.03us 2mb |-----------------------------------L0.?-----------------------------------| " - - "L0.?[330,356] 1.03us 356kb |---L0.?---| " - - "**** Simulation run 55, type=split(ReduceOverlap)(split_times=[329]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.138[50,356] 1.03us |-----------------------------------------L0.138-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,329] 1.03us 5mb |--------------------------------------L0.?--------------------------------------| " - - "L0.?[330,356] 1.03us 478kb |L0.?-| " - - "**** Simulation run 56, type=split(ReduceOverlap)(split_times=[658]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.141[357,670] 1.03us |-----------------------------------------L0.141-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,658] 1.03us 4mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[659,670] 1.03us 144kb |L0.?|" - - "**** Simulation run 57, type=split(ReduceOverlap)(split_times=[329]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.140[76,356] 1.03us |-----------------------------------------L0.140-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,329] 1.03us 3mb |-------------------------------------L0.?--------------------------------------| " - - "L0.?[330,356] 1.03us 323kb |-L0.?-| " - - "**** Simulation run 58, type=split(ReduceOverlap)(split_times=[658]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.144[357,670] 1.03us |-----------------------------------------L0.144-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,658] 1.03us 3mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[659,670] 1.03us 130kb |L0.?|" - - "**** Simulation run 59, type=split(ReduceOverlap)(split_times=[329]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.143[42,356] 1.03us |-----------------------------------------L0.143-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,329] 1.03us 3mb |--------------------------------------L0.?--------------------------------------| " - - "L0.?[330,356] 1.03us 293kb |L0.?-| " - - "**** Simulation run 60, type=split(ReduceOverlap)(split_times=[658]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.147[357,670] 1.03us |-----------------------------------------L0.147-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,658] 1.03us 4mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[659,670] 1.03us 158kb |L0.?|" - - "**** Simulation run 61, type=split(ReduceOverlap)(split_times=[329]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.146[173,356] 1.03us |-----------------------------------------L0.146-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,329] 1.03us 2mb |-----------------------------------L0.?-----------------------------------| " - - "L0.?[330,356] 1.03us 356kb |---L0.?---| " - - "**** Simulation run 62, type=split(ReduceOverlap)(split_times=[329]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.149[50,356] 1.03us |-----------------------------------------L0.149-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,329] 1.03us 5mb |--------------------------------------L0.?--------------------------------------| " - - "L0.?[330,356] 1.03us 478kb |L0.?-| " - - "**** Simulation run 63, type=split(ReduceOverlap)(split_times=[658]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.152[357,670] 1.04us |-----------------------------------------L0.152-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,658] 1.04us 4mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[659,670] 1.04us 144kb |L0.?|" - - "**** Simulation run 64, type=split(ReduceOverlap)(split_times=[329]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.151[76,356] 1.04us |-----------------------------------------L0.151-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,329] 1.04us 3mb |-------------------------------------L0.?--------------------------------------| " - - "L0.?[330,356] 1.04us 323kb |-L0.?-| " - - "**** Simulation run 65, type=split(ReduceOverlap)(split_times=[658]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.155[357,670] 1.04us |-----------------------------------------L0.155-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,658] 1.04us 3mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[659,670] 1.04us 130kb |L0.?|" - - "**** Simulation run 66, type=split(ReduceOverlap)(split_times=[329]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.154[42,356] 1.04us |-----------------------------------------L0.154-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,329] 1.04us 3mb |--------------------------------------L0.?--------------------------------------| " - - "L0.?[330,356] 1.04us 293kb |L0.?-| " - - "**** Simulation run 67, type=split(ReduceOverlap)(split_times=[658]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.158[357,670] 1.04us |-----------------------------------------L0.158-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,658] 1.04us 4mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[659,670] 1.04us 158kb |L0.?|" - - "**** Simulation run 68, type=split(ReduceOverlap)(split_times=[329]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.157[173,356] 1.04us |-----------------------------------------L0.157-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,329] 1.04us 2mb |-----------------------------------L0.?-----------------------------------| " - - "L0.?[330,356] 1.04us 356kb |---L0.?---| " - - "**** Simulation run 69, type=split(ReduceOverlap)(split_times=[329]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.160[50,356] 1.04us |-----------------------------------------L0.160-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,329] 1.04us 5mb |--------------------------------------L0.?--------------------------------------| " - - "L0.?[330,356] 1.04us 478kb |L0.?-| " - - "**** Simulation run 70, type=split(ReduceOverlap)(split_times=[658]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.163[357,670] 1.04us |-----------------------------------------L0.163-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,658] 1.04us 4mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[659,670] 1.04us 144kb |L0.?|" - - "**** Simulation run 71, type=split(ReduceOverlap)(split_times=[329]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.162[76,356] 1.04us |-----------------------------------------L0.162-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,329] 1.04us 3mb |-------------------------------------L0.?--------------------------------------| " - - "L0.?[330,356] 1.04us 323kb |-L0.?-| " - - "**** Simulation run 72, type=split(ReduceOverlap)(split_times=[658]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.169[357,670] 1.04us |-----------------------------------------L0.169-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,658] 1.04us 4mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[659,670] 1.04us 158kb |L0.?|" - - "**** Simulation run 73, type=split(ReduceOverlap)(split_times=[329]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.168[173,356] 1.04us |-----------------------------------------L0.168-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,329] 1.04us 2mb |-----------------------------------L0.?-----------------------------------| " - - "L0.?[330,356] 1.04us 356kb |---L0.?---| " - - "**** Simulation run 74, type=split(ReduceOverlap)(split_times=[329]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.171[50,356] 1.04us |-----------------------------------------L0.171-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,329] 1.04us 5mb |--------------------------------------L0.?--------------------------------------| " - - "L0.?[330,356] 1.04us 478kb |L0.?-| " - - "**** Simulation run 75, type=split(ReduceOverlap)(split_times=[658]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.174[357,670] 1.04us |-----------------------------------------L0.174-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,658] 1.04us 4mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[659,670] 1.04us 144kb |L0.?|" - - "**** Simulation run 76, type=split(ReduceOverlap)(split_times=[329]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.173[76,356] 1.04us |-----------------------------------------L0.173-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,329] 1.04us 3mb |-------------------------------------L0.?--------------------------------------| " - - "L0.?[330,356] 1.04us 323kb |-L0.?-| " - - "**** Simulation run 77, type=split(ReduceOverlap)(split_times=[658]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.177[357,670] 1.05us |-----------------------------------------L0.177-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,658] 1.05us 3mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[659,670] 1.05us 130kb |L0.?|" - - "**** Simulation run 78, type=split(ReduceOverlap)(split_times=[329]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.176[42,356] 1.05us |-----------------------------------------L0.176-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,329] 1.05us 3mb |--------------------------------------L0.?--------------------------------------| " - - "L0.?[330,356] 1.05us 293kb |L0.?-| " - - "**** Simulation run 79, type=split(ReduceOverlap)(split_times=[658]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.180[357,670] 1.05us |-----------------------------------------L0.180-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,658] 1.05us 4mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[659,670] 1.05us 158kb |L0.?|" - - "**** Simulation run 80, type=split(ReduceOverlap)(split_times=[658]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.166[357,670] 1.04us |-----------------------------------------L0.166-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,658] 1.04us 3mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[659,670] 1.04us 130kb |L0.?|" - - "**** Simulation run 81, type=split(ReduceOverlap)(split_times=[329]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.165[42,356] 1.04us |-----------------------------------------L0.165-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,329] 1.04us 3mb |--------------------------------------L0.?--------------------------------------| " - - "L0.?[330,356] 1.04us 293kb |L0.?-| " - - "**** Simulation run 82, type=split(ReduceOverlap)(split_times=[329]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.179[173,356] 1.05us |-----------------------------------------L0.179-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,329] 1.05us 2mb |-----------------------------------L0.?-----------------------------------| " - - "L0.?[330,356] 1.05us 356kb |---L0.?---| " - - "**** Simulation run 83, type=split(ReduceOverlap)(split_times=[329]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.182[50,356] 1.05us |-----------------------------------------L0.182-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,329] 1.05us 5mb |--------------------------------------L0.?--------------------------------------| " - - "L0.?[330,356] 1.05us 478kb |L0.?-| " - - "**** Simulation run 84, type=split(ReduceOverlap)(split_times=[658]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.185[357,670] 1.05us |-----------------------------------------L0.185-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,658] 1.05us 4mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[659,670] 1.05us 144kb |L0.?|" - - "**** Simulation run 85, type=split(ReduceOverlap)(split_times=[329]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.184[76,356] 1.05us |-----------------------------------------L0.184-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,329] 1.05us 3mb |-------------------------------------L0.?--------------------------------------| " - - "L0.?[330,356] 1.05us 323kb |-L0.?-| " - - "**** Simulation run 86, type=split(ReduceOverlap)(split_times=[658]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.188[357,670] 1.05us |-----------------------------------------L0.188-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,658] 1.05us 3mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[659,670] 1.05us 130kb |L0.?|" - - "**** Simulation run 87, type=split(ReduceOverlap)(split_times=[329]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.187[42,356] 1.05us |-----------------------------------------L0.187-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,329] 1.05us 3mb |--------------------------------------L0.?--------------------------------------| " - - "L0.?[330,356] 1.05us 293kb |L0.?-| " - - "Committing partition 1:" - - " Soft Deleting 37 files: L0.132, L0.133, L0.135, L0.136, L0.138, L0.140, L0.141, L0.143, L0.144, L0.146, L0.147, L0.149, L0.151, L0.152, L0.154, L0.155, L0.157, L0.158, L0.160, L0.162, L0.163, L0.165, L0.166, L0.168, L0.169, L0.171, L0.173, L0.174, L0.176, L0.177, L0.179, L0.180, L0.182, L0.184, L0.185, L0.187, L0.188" - - " Creating 74 files" - - "**** Simulation run 88, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[319, 638]). 5 Input Files, 206mb total:" - - "L0 " - - "L0.195[42,329] 1.03us 3mb |---------------L0.195----------------| " - - "L0.196[330,356] 1.03us 293kb |L0.196| " - - "L0.193[357,658] 1.03us 3mb |----------------L0.193-----------------| " - - "L1 " - - "L1.190[0,329] 1.03us 100mb|------------------L1.190-------------------| " - - "L1.191[330,658] 1.03us 100mb |------------------L1.191------------------| " - - "**** 3 Output Files (parquet_file_id not yet assigned), 206mb total:" - - "L1 " - - "L1.?[0,319] 1.03us 100mb |------------------L1.?-------------------| " - - "L1.?[320,638] 1.03us 100mb |------------------L1.?-------------------| " - - "L1.?[639,658] 1.03us 7mb |L1.?|" - - "Committing partition 1:" - - " Soft Deleting 5 files: L1.190, L1.191, L0.193, L0.195, L0.196" - - " Creating 3 files" - - "**** Simulation run 89, type=split(ReduceOverlap)(split_times=[638]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.197[357,658] 1.03us |-----------------------------------------L0.197-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,638] 1.03us 4mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[639,658] 1.03us 264kb |L0.?|" - - "**** Simulation run 90, type=split(ReduceOverlap)(split_times=[319]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.199[173,329] 1.03us |-----------------------------------------L0.199-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,319] 1.03us 2mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[320,329] 1.03us 132kb |L0.?|" - - "**** Simulation run 91, type=split(ReduceOverlap)(split_times=[319]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.201[50,329] 1.03us |-----------------------------------------L0.201-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,319] 1.03us 5mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[320,329] 1.03us 177kb |L0.?|" - - "**** Simulation run 92, type=split(ReduceOverlap)(split_times=[638]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.203[357,658] 1.03us |-----------------------------------------L0.203-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,638] 1.03us 3mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[639,658] 1.03us 239kb |L0.?|" - - "**** Simulation run 93, type=split(ReduceOverlap)(split_times=[319]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.205[76,329] 1.03us |-----------------------------------------L0.205-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,319] 1.03us 3mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[320,329] 1.03us 120kb |L0.?|" - - "**** Simulation run 94, type=split(ReduceOverlap)(split_times=[638]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.207[357,658] 1.03us |-----------------------------------------L0.207-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,638] 1.03us 3mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[639,658] 1.03us 217kb |L0.?|" - - "**** Simulation run 95, type=split(ReduceOverlap)(split_times=[319]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.209[42,329] 1.03us |-----------------------------------------L0.209-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,319] 1.03us 3mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[320,329] 1.03us 108kb |L0.?|" - - "**** Simulation run 96, type=split(ReduceOverlap)(split_times=[638]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.211[357,658] 1.03us |-----------------------------------------L0.211-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,638] 1.03us 4mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[639,658] 1.03us 264kb |L0.?|" - - "**** Simulation run 97, type=split(ReduceOverlap)(split_times=[319]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.213[173,329] 1.03us |-----------------------------------------L0.213-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,319] 1.03us 2mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[320,329] 1.03us 132kb |L0.?|" - - "**** Simulation run 98, type=split(ReduceOverlap)(split_times=[319]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.215[50,329] 1.03us |-----------------------------------------L0.215-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,319] 1.03us 5mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[320,329] 1.03us 177kb |L0.?|" - - "**** Simulation run 99, type=split(ReduceOverlap)(split_times=[638]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.217[357,658] 1.04us |-----------------------------------------L0.217-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,638] 1.04us 3mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[639,658] 1.04us 239kb |L0.?|" - - "**** Simulation run 100, type=split(ReduceOverlap)(split_times=[319]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.219[76,329] 1.04us |-----------------------------------------L0.219-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,319] 1.04us 3mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[320,329] 1.04us 120kb |L0.?|" - - "**** Simulation run 101, type=split(ReduceOverlap)(split_times=[638]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.221[357,658] 1.04us |-----------------------------------------L0.221-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,638] 1.04us 3mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[639,658] 1.04us 217kb |L0.?|" - - "**** Simulation run 102, type=split(ReduceOverlap)(split_times=[319]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.223[42,329] 1.04us |-----------------------------------------L0.223-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,319] 1.04us 3mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[320,329] 1.04us 108kb |L0.?|" - - "**** Simulation run 103, type=split(ReduceOverlap)(split_times=[638]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.225[357,658] 1.04us |-----------------------------------------L0.225-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,638] 1.04us 4mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[639,658] 1.04us 264kb |L0.?|" - - "**** Simulation run 104, type=split(ReduceOverlap)(split_times=[319]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.227[173,329] 1.04us |-----------------------------------------L0.227-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,319] 1.04us 2mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[320,329] 1.04us 132kb |L0.?|" - - "**** Simulation run 105, type=split(ReduceOverlap)(split_times=[319]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.229[50,329] 1.04us |-----------------------------------------L0.229-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,319] 1.04us 5mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[320,329] 1.04us 177kb |L0.?|" - - "**** Simulation run 106, type=split(ReduceOverlap)(split_times=[638]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.231[357,658] 1.04us |-----------------------------------------L0.231-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,638] 1.04us 3mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[639,658] 1.04us 239kb |L0.?|" - - "**** Simulation run 107, type=split(ReduceOverlap)(split_times=[319]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.233[76,329] 1.04us |-----------------------------------------L0.233-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,319] 1.04us 3mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[320,329] 1.04us 120kb |L0.?|" - - "**** Simulation run 108, type=split(ReduceOverlap)(split_times=[638]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.251[357,658] 1.04us |-----------------------------------------L0.251-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,638] 1.04us 3mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[639,658] 1.04us 217kb |L0.?|" - - "**** Simulation run 109, type=split(ReduceOverlap)(split_times=[319]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.253[42,329] 1.04us |-----------------------------------------L0.253-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,319] 1.04us 3mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[320,329] 1.04us 108kb |L0.?|" - - "**** Simulation run 110, type=split(ReduceOverlap)(split_times=[638]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.235[357,658] 1.04us |-----------------------------------------L0.235-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,638] 1.04us 4mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[639,658] 1.04us 264kb |L0.?|" - - "**** Simulation run 111, type=split(ReduceOverlap)(split_times=[319]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.237[173,329] 1.04us |-----------------------------------------L0.237-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,319] 1.04us 2mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[320,329] 1.04us 132kb |L0.?|" - - "**** Simulation run 112, type=split(ReduceOverlap)(split_times=[319]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.239[50,329] 1.04us |-----------------------------------------L0.239-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,319] 1.04us 5mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[320,329] 1.04us 177kb |L0.?|" - - "**** Simulation run 113, type=split(ReduceOverlap)(split_times=[638]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.241[357,658] 1.04us |-----------------------------------------L0.241-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,638] 1.04us 3mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[639,658] 1.04us 239kb |L0.?|" - - "**** Simulation run 114, type=split(ReduceOverlap)(split_times=[319]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.243[76,329] 1.04us |-----------------------------------------L0.243-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,319] 1.04us 3mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[320,329] 1.04us 120kb |L0.?|" - - "**** Simulation run 115, type=split(ReduceOverlap)(split_times=[638]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.245[357,658] 1.05us |-----------------------------------------L0.245-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,638] 1.05us 3mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[639,658] 1.05us 217kb |L0.?|" - - "**** Simulation run 116, type=split(ReduceOverlap)(split_times=[319]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.247[42,329] 1.05us |-----------------------------------------L0.247-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,319] 1.05us 3mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[320,329] 1.05us 108kb |L0.?|" - - "**** Simulation run 117, type=split(ReduceOverlap)(split_times=[638]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.249[357,658] 1.05us |-----------------------------------------L0.249-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,638] 1.05us 4mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[639,658] 1.05us 264kb |L0.?|" - - "**** Simulation run 118, type=split(ReduceOverlap)(split_times=[319]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.255[173,329] 1.05us |-----------------------------------------L0.255-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,319] 1.05us 2mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[320,329] 1.05us 132kb |L0.?|" - - "**** Simulation run 119, type=split(ReduceOverlap)(split_times=[319]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.257[50,329] 1.05us |-----------------------------------------L0.257-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,319] 1.05us 5mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[320,329] 1.05us 177kb |L0.?|" - - "**** Simulation run 120, type=split(ReduceOverlap)(split_times=[638]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.259[357,658] 1.05us |-----------------------------------------L0.259-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,638] 1.05us 3mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[639,658] 1.05us 239kb |L0.?|" - - "**** Simulation run 121, type=split(ReduceOverlap)(split_times=[319]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.261[76,329] 1.05us |-----------------------------------------L0.261-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,319] 1.05us 3mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[320,329] 1.05us 120kb |L0.?|" - - "**** Simulation run 122, type=split(ReduceOverlap)(split_times=[638]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.263[357,658] 1.05us |-----------------------------------------L0.263-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,638] 1.05us 3mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[639,658] 1.05us 217kb |L0.?|" - - "**** Simulation run 123, type=split(ReduceOverlap)(split_times=[319]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.265[42,329] 1.05us |-----------------------------------------L0.265-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,319] 1.05us 3mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[320,329] 1.05us 108kb |L0.?|" - - "Committing partition 1:" - - " Soft Deleting 35 files: L0.197, L0.199, L0.201, L0.203, L0.205, L0.207, L0.209, L0.211, L0.213, L0.215, L0.217, L0.219, L0.221, L0.223, L0.225, L0.227, L0.229, L0.231, L0.233, L0.235, L0.237, L0.239, L0.241, L0.243, L0.245, L0.247, L0.249, L0.251, L0.253, L0.255, L0.257, L0.259, L0.261, L0.263, L0.265" - - " Creating 70 files" - - "**** Simulation run 124, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[920]). 3 Input Files, 104mb total:" - - "L0 " - - "L0.194[659,670] 1.03us 130kb|L0.194| " - - "L0.134[671,986] 1.03us 3mb |---------------------------------------L0.134---------------------------------------| " - - "L1 " - - "L1.192[659,986] 1.03us 100mb|-----------------------------------------L1.192-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 104mb total:" - - "L1 " - - "L1.?[659,920] 1.03us 83mb|--------------------------------L1.?---------------------------------| " - - "L1.?[921,986] 1.03us 21mb |-----L1.?------| " - - "Committing partition 1:" - - " Soft Deleting 3 files: L0.134, L1.192, L0.194" - - " Creating 2 files" - - "**** Simulation run 125, type=split(ReduceOverlap)(split_times=[920]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.137[671,950] 1.03us |-----------------------------------------L0.137-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[671,920] 1.03us 3mb |-------------------------------------L0.?-------------------------------------| " - - "L0.?[921,950] 1.03us 398kb |-L0.?--| " - - "**** Simulation run 126, type=split(ReduceOverlap)(split_times=[920]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.142[671,932] 1.03us |-----------------------------------------L0.142-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[671,920] 1.03us 3mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[921,932] 1.03us 145kb |L0.?|" - - "**** Simulation run 127, type=split(ReduceOverlap)(split_times=[920]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.145[671,986] 1.03us |-----------------------------------------L0.145-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[671,920] 1.03us 3mb |--------------------------------L0.?---------------------------------| " - - "L0.?[921,986] 1.03us 720kb |------L0.?------| " - - "**** Simulation run 128, type=split(ReduceOverlap)(split_times=[920]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.148[671,950] 1.03us |-----------------------------------------L0.148-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[671,920] 1.03us 3mb |-------------------------------------L0.?-------------------------------------| " - - "L0.?[921,950] 1.03us 398kb |-L0.?--| " - - "**** Simulation run 129, type=split(ReduceOverlap)(split_times=[920]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.153[671,932] 1.04us |-----------------------------------------L0.153-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[671,920] 1.04us 3mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[921,932] 1.04us 145kb |L0.?|" - - "**** Simulation run 130, type=split(ReduceOverlap)(split_times=[920]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.156[671,986] 1.04us |-----------------------------------------L0.156-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[671,920] 1.04us 3mb |--------------------------------L0.?---------------------------------| " - - "L0.?[921,986] 1.04us 720kb |------L0.?------| " - - "**** Simulation run 131, type=split(ReduceOverlap)(split_times=[920]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.159[671,950] 1.04us |-----------------------------------------L0.159-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[671,920] 1.04us 3mb |-------------------------------------L0.?-------------------------------------| " - - "L0.?[921,950] 1.04us 398kb |-L0.?--| " - - "**** Simulation run 132, type=split(ReduceOverlap)(split_times=[920]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.164[671,932] 1.04us |-----------------------------------------L0.164-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[671,920] 1.04us 3mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[921,932] 1.04us 145kb |L0.?|" - - "**** Simulation run 133, type=split(ReduceOverlap)(split_times=[920]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.167[671,986] 1.04us |-----------------------------------------L0.167-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[671,920] 1.04us 3mb |--------------------------------L0.?---------------------------------| " - - "L0.?[921,986] 1.04us 720kb |------L0.?------| " - - "**** Simulation run 134, type=split(ReduceOverlap)(split_times=[920]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.170[671,950] 1.04us |-----------------------------------------L0.170-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[671,920] 1.04us 3mb |-------------------------------------L0.?-------------------------------------| " - - "L0.?[921,950] 1.04us 398kb |-L0.?--| " - - "**** Simulation run 135, type=split(ReduceOverlap)(split_times=[920]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.175[671,932] 1.04us |-----------------------------------------L0.175-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[671,920] 1.04us 3mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[921,932] 1.04us 145kb |L0.?|" - - "**** Simulation run 136, type=split(ReduceOverlap)(split_times=[920]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.178[671,986] 1.05us |-----------------------------------------L0.178-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[671,920] 1.05us 3mb |--------------------------------L0.?---------------------------------| " - - "L0.?[921,986] 1.05us 720kb |------L0.?------| " - - "**** Simulation run 137, type=split(ReduceOverlap)(split_times=[920]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.181[671,950] 1.05us |-----------------------------------------L0.181-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[671,920] 1.05us 3mb |-------------------------------------L0.?-------------------------------------| " - - "L0.?[921,950] 1.05us 398kb |-L0.?--| " - - "**** Simulation run 138, type=split(ReduceOverlap)(split_times=[920]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.186[671,932] 1.05us |-----------------------------------------L0.186-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[671,920] 1.05us 3mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[921,932] 1.05us 145kb |L0.?|" - - "**** Simulation run 139, type=split(ReduceOverlap)(split_times=[920]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.189[671,986] 1.05us |-----------------------------------------L0.189-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[671,920] 1.05us 3mb |--------------------------------L0.?---------------------------------| " - - "L0.?[921,986] 1.05us 720kb |------L0.?------| " - - "Committing partition 1:" - - " Soft Deleting 15 files: L0.137, L0.142, L0.145, L0.148, L0.153, L0.156, L0.159, L0.164, L0.167, L0.170, L0.175, L0.178, L0.181, L0.186, L0.189" - - " Creating 30 files" - - "**** Simulation run 140, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[308, 616]). 11 Input Files, 299mb total:" - - "L0 " - - "L0.272[173,319] 1.03us 2mb |---L0.272---| " - - "L0.273[320,329] 1.03us 132kb |L0.273| " - - "L0.200[330,356] 1.03us 356kb |L0.200| " - - "L0.270[357,638] 1.03us 4mb |---------L0.270----------| " - - "L0.271[639,658] 1.03us 264kb |L0.271| " - - "L0.198[659,670] 1.03us 158kb |L0.198| " - - "L0.342[671,920] 1.03us 3mb |--------L0.342--------| " - - "L1 " - - "L1.267[0,319] 1.03us 100mb|-----------L1.267------------| " - - "L1.268[320,638] 1.03us 100mb |-----------L1.268------------| " - - "L1.269[639,658] 1.03us 7mb |L1.269| " - - "L1.340[659,920] 1.03us 83mb |--------L1.340---------| " - - "**** 3 Output Files (parquet_file_id not yet assigned), 299mb total:" - - "L1 " - - "L1.?[0,308] 1.03us 100mb |------------L1.?------------| " - - "L1.?[309,616] 1.03us 100mb |------------L1.?------------| " - - "L1.?[617,920] 1.03us 99mb |-----------L1.?------------| " - - "Committing partition 1:" - - " Soft Deleting 11 files: L0.198, L0.200, L1.267, L1.268, L1.269, L0.270, L0.271, L0.272, L0.273, L1.340, L0.342" - - " Creating 3 files" - - "**** Simulation run 141, type=split(ReduceOverlap)(split_times=[616]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.139[357,629] 1.03us |-----------------------------------------L0.139-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[357,616] 1.03us 4mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[617,629] 1.03us 231kb |L0.?|" - - "**** Simulation run 142, type=split(ReduceOverlap)(split_times=[308]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.274[50,319] 1.03us |-----------------------------------------L0.274-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,308] 1.03us 4mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[309,319] 1.03us 195kb |L0.?|" - - "**** Simulation run 143, type=split(ReduceOverlap)(split_times=[616]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.276[357,638] 1.03us |-----------------------------------------L0.276-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,616] 1.03us 3mb |--------------------------------------L0.?--------------------------------------| " - - "L0.?[617,638] 1.03us 263kb |L0.?| " - - "**** Simulation run 144, type=split(ReduceOverlap)(split_times=[308]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.278[76,319] 1.03us |-----------------------------------------L0.278-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,308] 1.03us 3mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[309,319] 1.03us 132kb |L0.?|" - - "**** Simulation run 145, type=split(ReduceOverlap)(split_times=[616]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.280[357,638] 1.03us |-----------------------------------------L0.280-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,616] 1.03us 3mb |--------------------------------------L0.?--------------------------------------| " - - "L0.?[617,638] 1.03us 239kb |L0.?| " - - "**** Simulation run 146, type=split(ReduceOverlap)(split_times=[308]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.282[42,319] 1.03us |-----------------------------------------L0.282-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,308] 1.03us 3mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[309,319] 1.03us 119kb |L0.?|" - - "**** Simulation run 147, type=split(ReduceOverlap)(split_times=[616]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.284[357,638] 1.03us |-----------------------------------------L0.284-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,616] 1.03us 3mb |--------------------------------------L0.?--------------------------------------| " - - "L0.?[617,638] 1.03us 290kb |L0.?| " - - "**** Simulation run 148, type=split(ReduceOverlap)(split_times=[308]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.286[173,319] 1.03us |-----------------------------------------L0.286-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,308] 1.03us 2mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[309,319] 1.03us 145kb |L0.?| " - - "**** Simulation run 149, type=split(ReduceOverlap)(split_times=[616]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.150[357,629] 1.03us |-----------------------------------------L0.150-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[357,616] 1.03us 4mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[617,629] 1.03us 231kb |L0.?|" - - "**** Simulation run 150, type=split(ReduceOverlap)(split_times=[308]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.288[50,319] 1.03us |-----------------------------------------L0.288-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,308] 1.03us 4mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[309,319] 1.03us 195kb |L0.?|" - - "**** Simulation run 151, type=split(ReduceOverlap)(split_times=[616]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.290[357,638] 1.04us |-----------------------------------------L0.290-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,616] 1.04us 3mb |--------------------------------------L0.?--------------------------------------| " - - "L0.?[617,638] 1.04us 263kb |L0.?| " - - "**** Simulation run 152, type=split(ReduceOverlap)(split_times=[308]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.292[76,319] 1.04us |-----------------------------------------L0.292-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,308] 1.04us 3mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[309,319] 1.04us 132kb |L0.?|" - - "**** Simulation run 153, type=split(ReduceOverlap)(split_times=[616]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.294[357,638] 1.04us |-----------------------------------------L0.294-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,616] 1.04us 3mb |--------------------------------------L0.?--------------------------------------| " - - "L0.?[617,638] 1.04us 239kb |L0.?| " - - "**** Simulation run 154, type=split(ReduceOverlap)(split_times=[308]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.296[42,319] 1.04us |-----------------------------------------L0.296-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,308] 1.04us 3mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[309,319] 1.04us 119kb |L0.?|" - - "**** Simulation run 155, type=split(ReduceOverlap)(split_times=[616]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.298[357,638] 1.04us |-----------------------------------------L0.298-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,616] 1.04us 3mb |--------------------------------------L0.?--------------------------------------| " - - "L0.?[617,638] 1.04us 290kb |L0.?| " - - "**** Simulation run 156, type=split(ReduceOverlap)(split_times=[308]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.300[173,319] 1.04us |-----------------------------------------L0.300-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,308] 1.04us 2mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[309,319] 1.04us 145kb |L0.?| " - - "**** Simulation run 157, type=split(ReduceOverlap)(split_times=[616]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.161[357,629] 1.04us |-----------------------------------------L0.161-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[357,616] 1.04us 4mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[617,629] 1.04us 231kb |L0.?|" - - "**** Simulation run 158, type=split(ReduceOverlap)(split_times=[308]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.302[50,319] 1.04us |-----------------------------------------L0.302-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,308] 1.04us 4mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[309,319] 1.04us 195kb |L0.?|" - - "**** Simulation run 159, type=split(ReduceOverlap)(split_times=[616]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.304[357,638] 1.04us |-----------------------------------------L0.304-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,616] 1.04us 3mb |--------------------------------------L0.?--------------------------------------| " - - "L0.?[617,638] 1.04us 263kb |L0.?| " - - "**** Simulation run 160, type=split(ReduceOverlap)(split_times=[308]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.306[76,319] 1.04us |-----------------------------------------L0.306-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,308] 1.04us 3mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[309,319] 1.04us 132kb |L0.?|" - - "**** Simulation run 161, type=split(ReduceOverlap)(split_times=[616]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.308[357,638] 1.04us |-----------------------------------------L0.308-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,616] 1.04us 3mb |--------------------------------------L0.?--------------------------------------| " - - "L0.?[617,638] 1.04us 239kb |L0.?| " - - "**** Simulation run 162, type=split(ReduceOverlap)(split_times=[308]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.310[42,319] 1.04us |-----------------------------------------L0.310-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,308] 1.04us 3mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[309,319] 1.04us 119kb |L0.?|" - - "**** Simulation run 163, type=split(ReduceOverlap)(split_times=[616]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.312[357,638] 1.04us |-----------------------------------------L0.312-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,616] 1.04us 3mb |--------------------------------------L0.?--------------------------------------| " - - "L0.?[617,638] 1.04us 290kb |L0.?| " - - "**** Simulation run 164, type=split(ReduceOverlap)(split_times=[308]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.314[173,319] 1.04us |-----------------------------------------L0.314-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,308] 1.04us 2mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[309,319] 1.04us 145kb |L0.?| " - - "**** Simulation run 165, type=split(ReduceOverlap)(split_times=[616]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.172[357,629] 1.04us |-----------------------------------------L0.172-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[357,616] 1.04us 4mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[617,629] 1.04us 231kb |L0.?|" - - "**** Simulation run 166, type=split(ReduceOverlap)(split_times=[308]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.316[50,319] 1.04us |-----------------------------------------L0.316-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,308] 1.04us 4mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[309,319] 1.04us 195kb |L0.?|" - - "**** Simulation run 167, type=split(ReduceOverlap)(split_times=[616]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.318[357,638] 1.04us |-----------------------------------------L0.318-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,616] 1.04us 3mb |--------------------------------------L0.?--------------------------------------| " - - "L0.?[617,638] 1.04us 263kb |L0.?| " - - "**** Simulation run 168, type=split(ReduceOverlap)(split_times=[308]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.320[76,319] 1.04us |-----------------------------------------L0.320-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,308] 1.04us 3mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[309,319] 1.04us 132kb |L0.?|" - - "**** Simulation run 169, type=split(ReduceOverlap)(split_times=[616]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.322[357,638] 1.05us |-----------------------------------------L0.322-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,616] 1.05us 3mb |--------------------------------------L0.?--------------------------------------| " - - "L0.?[617,638] 1.05us 239kb |L0.?| " - - "**** Simulation run 170, type=split(ReduceOverlap)(split_times=[308]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.328[173,319] 1.05us |-----------------------------------------L0.328-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,308] 1.05us 2mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[309,319] 1.05us 145kb |L0.?| " - - "**** Simulation run 171, type=split(ReduceOverlap)(split_times=[616]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.183[357,629] 1.05us |-----------------------------------------L0.183-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[357,616] 1.05us 4mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[617,629] 1.05us 231kb |L0.?|" - - "**** Simulation run 172, type=split(ReduceOverlap)(split_times=[308]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.330[50,319] 1.05us |-----------------------------------------L0.330-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,308] 1.05us 4mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[309,319] 1.05us 195kb |L0.?|" - - "**** Simulation run 173, type=split(ReduceOverlap)(split_times=[616]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.332[357,638] 1.05us |-----------------------------------------L0.332-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,616] 1.05us 3mb |--------------------------------------L0.?--------------------------------------| " - - "L0.?[617,638] 1.05us 263kb |L0.?| " - - "**** Simulation run 174, type=split(ReduceOverlap)(split_times=[308]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.334[76,319] 1.05us |-----------------------------------------L0.334-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,308] 1.05us 3mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[309,319] 1.05us 132kb |L0.?|" - - "**** Simulation run 175, type=split(ReduceOverlap)(split_times=[616]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.336[357,638] 1.05us |-----------------------------------------L0.336-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,616] 1.05us 3mb |--------------------------------------L0.?--------------------------------------| " - - "L0.?[617,638] 1.05us 239kb |L0.?| " - - "**** Simulation run 176, type=split(ReduceOverlap)(split_times=[308]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.338[42,319] 1.05us |-----------------------------------------L0.338-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,308] 1.05us 3mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[309,319] 1.05us 119kb |L0.?|" - - "**** Simulation run 177, type=split(ReduceOverlap)(split_times=[308]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.324[42,319] 1.05us |-----------------------------------------L0.324-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,308] 1.05us 3mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[309,319] 1.05us 119kb |L0.?|" - - "**** Simulation run 178, type=split(ReduceOverlap)(split_times=[616]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.326[357,638] 1.05us |-----------------------------------------L0.326-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,616] 1.05us 3mb |--------------------------------------L0.?--------------------------------------| " - - "L0.?[617,638] 1.05us 290kb |L0.?| " - - "Committing partition 1:" - - " Soft Deleting 38 files: L0.139, L0.150, L0.161, L0.172, L0.183, L0.274, L0.276, L0.278, L0.280, L0.282, L0.284, L0.286, L0.288, L0.290, L0.292, L0.294, L0.296, L0.298, L0.300, L0.302, L0.304, L0.306, L0.308, L0.310, L0.312, L0.314, L0.316, L0.318, L0.320, L0.322, L0.324, L0.326, L0.328, L0.330, L0.332, L0.334, L0.336, L0.338" - - " Creating 76 files" - - "**** Simulation run 179, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[973]). 2 Input Files, 21mb total:" - - "L0 " - - "L0.343[921,950] 1.03us 398kb|----------------L0.343----------------| " - - "L1 " - - "L1.341[921,986] 1.03us 21mb|-----------------------------------------L1.341-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 21mb total:" - - "L1 " - - "L1.?[921,973] 1.03us 17mb|---------------------------------L1.?---------------------------------| " - - "L1.?[974,986] 1.03us 4mb |-----L1.?-----| " - - "Committing partition 1:" - - " Soft Deleting 2 files: L1.341, L0.343" - - " Creating 2 files" - - "**** Simulation run 180, type=split(ReduceOverlap)(split_times=[973]). 1 Input Files, 720kb total:" - - "L0, all files 720kb " - - "L0.347[921,986] 1.03us |-----------------------------------------L0.347-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 720kb total:" - - "L0 " - - "L0.?[921,973] 1.03us 576kb|---------------------------------L0.?---------------------------------| " - - "L0.?[974,986] 1.03us 144kb |-----L0.?-----| " - - "**** Simulation run 181, type=split(ReduceOverlap)(split_times=[973]). 1 Input Files, 720kb total:" - - "L0, all files 720kb " - - "L0.353[921,986] 1.04us |-----------------------------------------L0.353-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 720kb total:" - - "L0 " - - "L0.?[921,973] 1.04us 576kb|---------------------------------L0.?---------------------------------| " - - "L0.?[974,986] 1.04us 144kb |-----L0.?-----| " - - "**** Simulation run 182, type=split(ReduceOverlap)(split_times=[973]). 1 Input Files, 720kb total:" - - "L0, all files 720kb " - - "L0.359[921,986] 1.04us |-----------------------------------------L0.359-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 720kb total:" - - "L0 " - - "L0.?[921,973] 1.04us 576kb|---------------------------------L0.?---------------------------------| " - - "L0.?[974,986] 1.04us 144kb |-----L0.?-----| " - - "**** Simulation run 183, type=split(ReduceOverlap)(split_times=[973]). 1 Input Files, 720kb total:" - - "L0, all files 720kb " - - "L0.365[921,986] 1.05us |-----------------------------------------L0.365-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 720kb total:" - - "L0 " - - "L0.?[921,973] 1.05us 576kb|---------------------------------L0.?---------------------------------| " - - "L0.?[974,986] 1.05us 144kb |-----L0.?-----| " - - "**** Simulation run 184, type=split(ReduceOverlap)(split_times=[973]). 1 Input Files, 720kb total:" - - "L0, all files 720kb " - - "L0.371[921,986] 1.05us |-----------------------------------------L0.371-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 720kb total:" - - "L0 " - - "L0.?[921,973] 1.05us 576kb|---------------------------------L0.?---------------------------------| " - - "L0.?[974,986] 1.05us 144kb |-----L0.?-----| " - - "Committing partition 1:" - - " Soft Deleting 5 files: L0.347, L0.353, L0.359, L0.365, L0.371" - - " Creating 10 files" - - "**** Simulation run 185, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[295, 590]). 7 Input Files, 209mb total:" - - "L0 " - - "L0.377[50,308] 1.03us 4mb |--------------L0.377---------------| " - - "L0.378[309,319] 1.03us 195kb |L0.378| " - - "L0.275[320,329] 1.03us 177kb |L0.275| " - - "L0.202[330,356] 1.03us 478kb |L0.202| " - - "L0.375[357,616] 1.03us 4mb |--------------L0.375---------------| " - - "L1 " - - "L1.372[0,308] 1.03us 100mb|------------------L1.372-------------------| " - - "L1.373[309,616] 1.03us 100mb |------------------L1.373------------------| " - - "**** 3 Output Files (parquet_file_id not yet assigned), 209mb total:" - - "L1 " - - "L1.?[0,295] 1.03us 100mb |------------------L1.?-------------------| " - - "L1.?[296,590] 1.03us 100mb |------------------L1.?------------------| " - - "L1.?[591,616] 1.03us 9mb |L1.?|" - - "Committing partition 1:" - - " Soft Deleting 7 files: L0.202, L0.275, L1.372, L1.373, L0.375, L0.377, L0.378" - - " Creating 3 files" - - "**** Simulation run 186, type=split(ReduceOverlap)(split_times=[590]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.379[357,616] 1.03us |-----------------------------------------L0.379-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,590] 1.03us 3mb |-------------------------------------L0.?-------------------------------------| " - - "L0.?[591,616] 1.03us 311kb |-L0.?-| " - - "**** Simulation run 187, type=split(ReduceOverlap)(split_times=[295]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.381[76,308] 1.03us |-----------------------------------------L0.381-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,295] 1.03us 3mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[296,308] 1.03us 156kb |L0.?|" - - "**** Simulation run 188, type=split(ReduceOverlap)(split_times=[590]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.383[357,616] 1.03us |-----------------------------------------L0.383-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,590] 1.03us 2mb |-------------------------------------L0.?-------------------------------------| " - - "L0.?[591,616] 1.03us 282kb |-L0.?-| " - - "**** Simulation run 189, type=split(ReduceOverlap)(split_times=[295]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.385[42,308] 1.03us |-----------------------------------------L0.385-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,295] 1.03us 3mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[296,308] 1.03us 141kb |L0.?|" - - "**** Simulation run 190, type=split(ReduceOverlap)(split_times=[590]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.387[357,616] 1.03us |-----------------------------------------L0.387-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,590] 1.03us 3mb |-------------------------------------L0.?-------------------------------------| " - - "L0.?[591,616] 1.03us 343kb |-L0.?-| " - - "**** Simulation run 191, type=split(ReduceOverlap)(split_times=[295]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.389[173,308] 1.03us |-----------------------------------------L0.389-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,295] 1.03us 2mb |-------------------------------------L0.?--------------------------------------| " - - "L0.?[296,308] 1.03us 171kb |-L0.?-|" - - "**** Simulation run 192, type=split(ReduceOverlap)(split_times=[590]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.391[357,616] 1.03us |-----------------------------------------L0.391-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,590] 1.03us 4mb |-------------------------------------L0.?-------------------------------------| " - - "L0.?[591,616] 1.03us 462kb |-L0.?-| " - - "**** Simulation run 193, type=split(ReduceOverlap)(split_times=[295]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.393[50,308] 1.03us |-----------------------------------------L0.393-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[50,295] 1.03us 4mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[296,308] 1.03us 230kb |L0.?|" - - "**** Simulation run 194, type=split(ReduceOverlap)(split_times=[590]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.395[357,616] 1.04us |-----------------------------------------L0.395-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,590] 1.04us 3mb |-------------------------------------L0.?-------------------------------------| " - - "L0.?[591,616] 1.04us 311kb |-L0.?-| " - - "**** Simulation run 195, type=split(ReduceOverlap)(split_times=[295]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.397[76,308] 1.04us |-----------------------------------------L0.397-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,295] 1.04us 3mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[296,308] 1.04us 156kb |L0.?|" - - "**** Simulation run 196, type=split(ReduceOverlap)(split_times=[590]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.399[357,616] 1.04us |-----------------------------------------L0.399-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,590] 1.04us 2mb |-------------------------------------L0.?-------------------------------------| " - - "L0.?[591,616] 1.04us 282kb |-L0.?-| " - - "**** Simulation run 197, type=split(ReduceOverlap)(split_times=[295]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.401[42,308] 1.04us |-----------------------------------------L0.401-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,295] 1.04us 3mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[296,308] 1.04us 141kb |L0.?|" - - "**** Simulation run 198, type=split(ReduceOverlap)(split_times=[590]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.403[357,616] 1.04us |-----------------------------------------L0.403-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,590] 1.04us 3mb |-------------------------------------L0.?-------------------------------------| " - - "L0.?[591,616] 1.04us 343kb |-L0.?-| " - - "**** Simulation run 199, type=split(ReduceOverlap)(split_times=[295]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.405[173,308] 1.04us |-----------------------------------------L0.405-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,295] 1.04us 2mb |-------------------------------------L0.?--------------------------------------| " - - "L0.?[296,308] 1.04us 171kb |-L0.?-|" - - "**** Simulation run 200, type=split(ReduceOverlap)(split_times=[590]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.407[357,616] 1.04us |-----------------------------------------L0.407-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,590] 1.04us 4mb |-------------------------------------L0.?-------------------------------------| " - - "L0.?[591,616] 1.04us 462kb |-L0.?-| " - - "**** Simulation run 201, type=split(ReduceOverlap)(split_times=[295]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.409[50,308] 1.04us |-----------------------------------------L0.409-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[50,295] 1.04us 4mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[296,308] 1.04us 230kb |L0.?|" - - "**** Simulation run 202, type=split(ReduceOverlap)(split_times=[590]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.411[357,616] 1.04us |-----------------------------------------L0.411-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,590] 1.04us 3mb |-------------------------------------L0.?-------------------------------------| " - - "L0.?[591,616] 1.04us 311kb |-L0.?-| " - - "**** Simulation run 203, type=split(ReduceOverlap)(split_times=[295]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.413[76,308] 1.04us |-----------------------------------------L0.413-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,295] 1.04us 3mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[296,308] 1.04us 156kb |L0.?|" - - "**** Simulation run 204, type=split(ReduceOverlap)(split_times=[590]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.415[357,616] 1.04us |-----------------------------------------L0.415-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,590] 1.04us 2mb |-------------------------------------L0.?-------------------------------------| " - - "L0.?[591,616] 1.04us 282kb |-L0.?-| " - - "**** Simulation run 205, type=split(ReduceOverlap)(split_times=[295]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.417[42,308] 1.04us |-----------------------------------------L0.417-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,295] 1.04us 3mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[296,308] 1.04us 141kb |L0.?|" - - "**** Simulation run 206, type=split(ReduceOverlap)(split_times=[590]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.419[357,616] 1.04us |-----------------------------------------L0.419-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,590] 1.04us 3mb |-------------------------------------L0.?-------------------------------------| " - - "L0.?[591,616] 1.04us 343kb |-L0.?-| " - - "**** Simulation run 207, type=split(ReduceOverlap)(split_times=[295]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.421[173,308] 1.04us |-----------------------------------------L0.421-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,295] 1.04us 2mb |-------------------------------------L0.?--------------------------------------| " - - "L0.?[296,308] 1.04us 171kb |-L0.?-|" - - "**** Simulation run 208, type=split(ReduceOverlap)(split_times=[590]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.423[357,616] 1.04us |-----------------------------------------L0.423-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,590] 1.04us 4mb |-------------------------------------L0.?-------------------------------------| " - - "L0.?[591,616] 1.04us 462kb |-L0.?-| " - - "**** Simulation run 209, type=split(ReduceOverlap)(split_times=[295]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.425[50,308] 1.04us |-----------------------------------------L0.425-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[50,295] 1.04us 4mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[296,308] 1.04us 230kb |L0.?|" - - "**** Simulation run 210, type=split(ReduceOverlap)(split_times=[590]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.427[357,616] 1.04us |-----------------------------------------L0.427-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,590] 1.04us 3mb |-------------------------------------L0.?-------------------------------------| " - - "L0.?[591,616] 1.04us 311kb |-L0.?-| " - - "**** Simulation run 211, type=split(ReduceOverlap)(split_times=[295]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.429[76,308] 1.04us |-----------------------------------------L0.429-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,295] 1.04us 3mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[296,308] 1.04us 156kb |L0.?|" - - "**** Simulation run 212, type=split(ReduceOverlap)(split_times=[590]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.431[357,616] 1.05us |-----------------------------------------L0.431-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,590] 1.05us 2mb |-------------------------------------L0.?-------------------------------------| " - - "L0.?[591,616] 1.05us 282kb |-L0.?-| " - - "**** Simulation run 213, type=split(ReduceOverlap)(split_times=[295]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.447[42,308] 1.05us |-----------------------------------------L0.447-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,295] 1.05us 3mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[296,308] 1.05us 141kb |L0.?|" - - "**** Simulation run 214, type=split(ReduceOverlap)(split_times=[590]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.449[357,616] 1.05us |-----------------------------------------L0.449-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,590] 1.05us 3mb |-------------------------------------L0.?-------------------------------------| " - - "L0.?[591,616] 1.05us 343kb |-L0.?-| " - - "**** Simulation run 215, type=split(ReduceOverlap)(split_times=[295]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.433[173,308] 1.05us |-----------------------------------------L0.433-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,295] 1.05us 2mb |-------------------------------------L0.?--------------------------------------| " - - "L0.?[296,308] 1.05us 171kb |-L0.?-|" - - "**** Simulation run 216, type=split(ReduceOverlap)(split_times=[590]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.435[357,616] 1.05us |-----------------------------------------L0.435-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,590] 1.05us 4mb |-------------------------------------L0.?-------------------------------------| " - - "L0.?[591,616] 1.05us 462kb |-L0.?-| " - - "**** Simulation run 217, type=split(ReduceOverlap)(split_times=[295]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.437[50,308] 1.05us |-----------------------------------------L0.437-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[50,295] 1.05us 4mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[296,308] 1.05us 230kb |L0.?|" - - "**** Simulation run 218, type=split(ReduceOverlap)(split_times=[590]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.439[357,616] 1.05us |-----------------------------------------L0.439-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,590] 1.05us 3mb |-------------------------------------L0.?-------------------------------------| " - - "L0.?[591,616] 1.05us 311kb |-L0.?-| " - - "**** Simulation run 219, type=split(ReduceOverlap)(split_times=[295]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.441[76,308] 1.05us |-----------------------------------------L0.441-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,295] 1.05us 3mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[296,308] 1.05us 156kb |L0.?|" - - "**** Simulation run 220, type=split(ReduceOverlap)(split_times=[590]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.443[357,616] 1.05us |-----------------------------------------L0.443-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,590] 1.05us 2mb |-------------------------------------L0.?-------------------------------------| " - - "L0.?[591,616] 1.05us 282kb |-L0.?-| " - - "**** Simulation run 221, type=split(ReduceOverlap)(split_times=[295]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.445[42,308] 1.05us |-----------------------------------------L0.445-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,295] 1.05us 3mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[296,308] 1.05us 141kb |L0.?|" - - "Committing partition 1:" - - " Soft Deleting 36 files: L0.379, L0.381, L0.383, L0.385, L0.387, L0.389, L0.391, L0.393, L0.395, L0.397, L0.399, L0.401, L0.403, L0.405, L0.407, L0.409, L0.411, L0.413, L0.415, L0.417, L0.419, L0.421, L0.423, L0.425, L0.427, L0.429, L0.431, L0.433, L0.435, L0.437, L0.439, L0.441, L0.443, L0.445, L0.447, L0.449" - - " Creating 72 files" - - "**** Simulation run 222, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[578]). 200 Input Files, 176mb total:" - - "L0 " - - "L0.376[617,629] 1.03us 231kb |L0.376| " - - "L0.468[76,295] 1.03us 3mb |------L0.468------| " - - "L0.469[296,308] 1.03us 156kb |L0.469| " - - "L0.382[309,319] 1.03us 132kb |L0.382| " - - "L0.279[320,329] 1.03us 120kb |L0.279| " - - "L0.206[330,356] 1.03us 323kb |L0.206| " - - "L0.466[357,590] 1.03us 3mb |-------L0.466-------| " - - "L0.467[591,616] 1.03us 311kb |L0.467| " - - "L0.380[617,638] 1.03us 263kb |L0.380| " - - "L0.277[639,658] 1.03us 239kb |L0.277| " - - "L0.204[659,670] 1.03us 144kb |L0.204| " - - "L0.344[671,920] 1.03us 3mb |-------L0.344--------| " - - "L0.345[921,932] 1.03us 145kb |L0.345|" - - "L0.472[42,295] 1.03us 3mb|--------L0.472--------| " - - "L0.473[296,308] 1.03us 141kb |L0.473| " - - "L0.386[309,319] 1.03us 119kb |L0.386| " - - "L0.283[320,329] 1.03us 108kb |L0.283| " - - "L0.210[330,356] 1.03us 293kb |L0.210| " - - "L0.470[357,590] 1.03us 2mb |-------L0.470-------| " - - "L0.471[591,616] 1.03us 282kb |L0.471| " - - "L0.384[617,638] 1.03us 239kb |L0.384| " - - "L0.281[639,658] 1.03us 217kb |L0.281| " - - "L0.208[659,670] 1.03us 130kb |L0.208| " - - "L0.346[671,920] 1.03us 3mb |-------L0.346--------| " - - "L0.453[921,973] 1.03us 576kb |L0.453|" - - "L0.454[974,986] 1.03us 144kb |L0.454|" - - "L0.476[173,295] 1.03us 2mb |-L0.476--| " - - "L0.477[296,308] 1.03us 171kb |L0.477| " - - "L0.390[309,319] 1.03us 145kb |L0.390| " - - "L0.287[320,329] 1.03us 132kb |L0.287| " - - "L0.214[330,356] 1.03us 356kb |L0.214| " - - "L0.474[357,590] 1.03us 3mb |-------L0.474-------| " - - "L0.475[591,616] 1.03us 343kb |L0.475| " - - "L0.388[617,638] 1.03us 290kb |L0.388| " - - "L0.285[639,658] 1.03us 264kb |L0.285| " - - "L0.212[659,670] 1.03us 158kb |L0.212| " - - "L0.348[671,920] 1.03us 3mb |-------L0.348--------| " - - "L0.349[921,950] 1.03us 398kb |L0.349|" - - "L0.480[50,295] 1.03us 4mb|-------L0.480--------| " - - "L0.481[296,308] 1.03us 230kb |L0.481| " - - "L0.394[309,319] 1.03us 195kb |L0.394| " - - "L0.289[320,329] 1.03us 177kb |L0.289| " - - "L0.216[330,356] 1.03us 478kb |L0.216| " - - "L0.478[357,590] 1.03us 4mb |-------L0.478-------| " - - "L0.479[591,616] 1.03us 462kb |L0.479| " - - "L0.392[617,629] 1.03us 231kb |L0.392| " - - "L0.484[76,295] 1.04us 3mb |------L0.484------| " - - "L0.485[296,308] 1.04us 156kb |L0.485| " - - "L0.398[309,319] 1.04us 132kb |L0.398| " - - "L0.293[320,329] 1.04us 120kb |L0.293| " - - "L0.220[330,356] 1.04us 323kb |L0.220| " - - "L0.482[357,590] 1.04us 3mb |-------L0.482-------| " - - "L0.483[591,616] 1.04us 311kb |L0.483| " - - "L0.396[617,638] 1.04us 263kb |L0.396| " - - "L0.291[639,658] 1.04us 239kb |L0.291| " - - "L0.218[659,670] 1.04us 144kb |L0.218| " - - "L0.350[671,920] 1.04us 3mb |-------L0.350--------| " - - "L0.351[921,932] 1.04us 145kb |L0.351|" - - "L0.488[42,295] 1.04us 3mb|--------L0.488--------| " - - "L0.489[296,308] 1.04us 141kb |L0.489| " - - "L0.402[309,319] 1.04us 119kb |L0.402| " - - "L0.297[320,329] 1.04us 108kb |L0.297| " - - "L0.224[330,356] 1.04us 293kb |L0.224| " - - "L0.486[357,590] 1.04us 2mb |-------L0.486-------| " - - "L0.487[591,616] 1.04us 282kb |L0.487| " - - "L0.400[617,638] 1.04us 239kb |L0.400| " - - "L0.295[639,658] 1.04us 217kb |L0.295| " - - "L0.222[659,670] 1.04us 130kb |L0.222| " - - "L0.352[671,920] 1.04us 3mb |-------L0.352--------| " - - "L0.455[921,973] 1.04us 576kb |L0.455|" - - "L0.456[974,986] 1.04us 144kb |L0.456|" - - "L0.492[173,295] 1.04us 2mb |-L0.492--| " - - "L0.493[296,308] 1.04us 171kb |L0.493| " - - "L0.406[309,319] 1.04us 145kb |L0.406| " - - "L0.301[320,329] 1.04us 132kb |L0.301| " - - "L0.228[330,356] 1.04us 356kb |L0.228| " - - "L0.490[357,590] 1.04us 3mb |-------L0.490-------| " - - "L0.491[591,616] 1.04us 343kb |L0.491| " - - "L0.404[617,638] 1.04us 290kb |L0.404| " - - "L0.299[639,658] 1.04us 264kb |L0.299| " - - "L0.226[659,670] 1.04us 158kb |L0.226| " - - "L0.354[671,920] 1.04us 3mb |-------L0.354--------| " - - "L0.355[921,950] 1.04us 398kb |L0.355|" - - "L0.496[50,295] 1.04us 4mb|-------L0.496--------| " - - "L0.497[296,308] 1.04us 230kb |L0.497| " - - "L0.410[309,319] 1.04us 195kb |L0.410| " - - "L0.303[320,329] 1.04us 177kb |L0.303| " - - "L0.230[330,356] 1.04us 478kb |L0.230| " - - "L0.494[357,590] 1.04us 4mb |-------L0.494-------| " - - "L0.495[591,616] 1.04us 462kb |L0.495| " - - "L0.408[617,629] 1.04us 231kb |L0.408| " - - "L0.500[76,295] 1.04us 3mb |------L0.500------| " - - "L0.501[296,308] 1.04us 156kb |L0.501| " - - "L0.414[309,319] 1.04us 132kb |L0.414| " - - "L0.307[320,329] 1.04us 120kb |L0.307| " - - "L0.234[330,356] 1.04us 323kb |L0.234| " - - "L0.498[357,590] 1.04us 3mb |-------L0.498-------| " - - "L0.499[591,616] 1.04us 311kb |L0.499| " - - "L0.412[617,638] 1.04us 263kb |L0.412| " - - "L0.305[639,658] 1.04us 239kb |L0.305| " - - "L0.232[659,670] 1.04us 144kb |L0.232| " - - "L0.356[671,920] 1.04us 3mb |-------L0.356--------| " - - "L0.357[921,932] 1.04us 145kb |L0.357|" - - "L0.504[42,295] 1.04us 3mb|--------L0.504--------| " - - "L0.505[296,308] 1.04us 141kb |L0.505| " - - "L0.418[309,319] 1.04us 119kb |L0.418| " - - "L0.311[320,329] 1.04us 108kb |L0.311| " - - "L0.254[330,356] 1.04us 293kb |L0.254| " - - "L0.502[357,590] 1.04us 2mb |-------L0.502-------| " - - "L0.503[591,616] 1.04us 282kb |L0.503| " - - "L0.416[617,638] 1.04us 239kb |L0.416| " - - "L0.309[639,658] 1.04us 217kb |L0.309| " - - "L0.252[659,670] 1.04us 130kb |L0.252| " - - "L0.358[671,920] 1.04us 3mb |-------L0.358--------| " - - "L0.457[921,973] 1.04us 576kb |L0.457|" - - "L0.458[974,986] 1.04us 144kb |L0.458|" - - "L0.508[173,295] 1.04us 2mb |-L0.508--| " - - "L0.509[296,308] 1.04us 171kb |L0.509| " - - "L0.422[309,319] 1.04us 145kb |L0.422| " - - "L0.315[320,329] 1.04us 132kb |L0.315| " - - "L0.238[330,356] 1.04us 356kb |L0.238| " - - "L0.506[357,590] 1.04us 3mb |-------L0.506-------| " - - "L0.507[591,616] 1.04us 343kb |L0.507| " - - "L0.420[617,638] 1.04us 290kb |L0.420| " - - "L0.313[639,658] 1.04us 264kb |L0.313| " - - "L0.236[659,670] 1.04us 158kb |L0.236| " - - "L0.360[671,920] 1.04us 3mb |-------L0.360--------| " - - "L0.361[921,950] 1.04us 398kb |L0.361|" - - "L0.512[50,295] 1.04us 4mb|-------L0.512--------| " - - "L0.513[296,308] 1.04us 230kb |L0.513| " - - "L0.426[309,319] 1.04us 195kb |L0.426| " - - "L0.317[320,329] 1.04us 177kb |L0.317| " - - "L0.240[330,356] 1.04us 478kb |L0.240| " - - "L0.510[357,590] 1.04us 4mb |-------L0.510-------| " - - "L0.511[591,616] 1.04us 462kb |L0.511| " - - "L0.424[617,629] 1.04us 231kb |L0.424| " - - "L0.516[76,295] 1.04us 3mb |------L0.516------| " - - "L0.517[296,308] 1.04us 156kb |L0.517| " - - "L0.430[309,319] 1.04us 132kb |L0.430| " - - "L0.321[320,329] 1.04us 120kb |L0.321| " - - "L0.244[330,356] 1.04us 323kb |L0.244| " - - "L0.514[357,590] 1.04us 3mb |-------L0.514-------| " - - "L0.515[591,616] 1.04us 311kb |L0.515| " - - "L0.428[617,638] 1.04us 263kb |L0.428| " - - "L0.319[639,658] 1.04us 239kb |L0.319| " - - "L0.242[659,670] 1.04us 144kb |L0.242| " - - "L0.362[671,920] 1.04us 3mb |-------L0.362--------| " - - "L0.363[921,932] 1.04us 145kb |L0.363|" - - "L0.520[42,295] 1.05us 3mb|--------L0.520--------| " - - "L0.521[296,308] 1.05us 141kb |L0.521| " - - "L0.448[309,319] 1.05us 119kb |L0.448| " - - "L0.325[320,329] 1.05us 108kb |L0.325| " - - "L0.248[330,356] 1.05us 293kb |L0.248| " - - "L0.518[357,590] 1.05us 2mb |-------L0.518-------| " - - "L0.519[591,616] 1.05us 282kb |L0.519| " - - "L0.432[617,638] 1.05us 239kb |L0.432| " - - "L0.323[639,658] 1.05us 217kb |L0.323| " - - "L0.246[659,670] 1.05us 130kb |L0.246| " - - "L0.364[671,920] 1.05us 3mb |-------L0.364--------| " - - "L0.459[921,973] 1.05us 576kb |L0.459|" - - "L0.460[974,986] 1.05us 144kb |L0.460|" - - "L0.524[173,295] 1.05us 2mb |-L0.524--| " - - "L0.525[296,308] 1.05us 171kb |L0.525| " - - "L0.434[309,319] 1.05us 145kb |L0.434| " - - "L0.329[320,329] 1.05us 132kb |L0.329| " - - "L0.256[330,356] 1.05us 356kb |L0.256| " - - "L0.522[357,590] 1.05us 3mb |-------L0.522-------| " - - "L0.523[591,616] 1.05us 343kb |L0.523| " - - "L0.450[617,638] 1.05us 290kb |L0.450| " - - "L0.327[639,658] 1.05us 264kb |L0.327| " - - "L0.250[659,670] 1.05us 158kb |L0.250| " - - "L0.366[671,920] 1.05us 3mb |-------L0.366--------| " - - "L0.367[921,950] 1.05us 398kb |L0.367|" - - "L0.528[50,295] 1.05us 4mb|-------L0.528--------| " - - "L0.529[296,308] 1.05us 230kb |L0.529| " - - "L0.438[309,319] 1.05us 195kb |L0.438| " - - "L0.331[320,329] 1.05us 177kb |L0.331| " - - "L0.258[330,356] 1.05us 478kb |L0.258| " - - "L0.526[357,590] 1.05us 4mb |-------L0.526-------| " - - "L0.527[591,616] 1.05us 462kb |L0.527| " - - "L0.436[617,629] 1.05us 231kb |L0.436| " - - "L0.532[76,295] 1.05us 3mb |------L0.532------| " - - "L0.533[296,308] 1.05us 156kb |L0.533| " - - "L0.442[309,319] 1.05us 132kb |L0.442| " - - "L0.335[320,329] 1.05us 120kb |L0.335| " - - "L0.262[330,356] 1.05us 323kb |L0.262| " - - "L0.530[357,590] 1.05us 3mb |-------L0.530-------| " - - "L0.531[591,616] 1.05us 311kb |L0.531| " - - "L0.440[617,638] 1.05us 263kb |L0.440| " - - "L0.333[639,658] 1.05us 239kb |L0.333| " - - "L0.260[659,670] 1.05us 144kb |L0.260| " - - "L0.368[671,920] 1.05us 3mb |-------L0.368--------| " - - "L0.369[921,932] 1.05us 145kb |L0.369|" - - "L0.536[42,295] 1.05us 3mb|--------L0.536--------| " - - "L0.537[296,308] 1.05us 141kb |L0.537| " - - "L0.446[309,319] 1.05us 119kb |L0.446| " - - "L0.339[320,329] 1.05us 108kb |L0.339| " - - "L0.266[330,356] 1.05us 293kb |L0.266| " - - "L0.534[357,590] 1.05us 2mb |-------L0.534-------| " - - "L0.535[591,616] 1.05us 282kb |L0.535| " - - "**** 2 Output Files (parquet_file_id not yet assigned), 176mb total:" - - "L0 " - - "L0.?[42,578] 1.05us 100mb|----------------------L0.?-----------------------| " - - "L0.?[579,986] 1.05us 76mb |----------------L0.?----------------| " - - "Committing partition 1:" - - " Soft Deleting 200 files: L0.204, L0.206, L0.208, L0.210, L0.212, L0.214, L0.216, L0.218, L0.220, L0.222, L0.224, L0.226, L0.228, L0.230, L0.232, L0.234, L0.236, L0.238, L0.240, L0.242, L0.244, L0.246, L0.248, L0.250, L0.252, L0.254, L0.256, L0.258, L0.260, L0.262, L0.266, L0.277, L0.279, L0.281, L0.283, L0.285, L0.287, L0.289, L0.291, L0.293, L0.295, L0.297, L0.299, L0.301, L0.303, L0.305, L0.307, L0.309, L0.311, L0.313, L0.315, L0.317, L0.319, L0.321, L0.323, L0.325, L0.327, L0.329, L0.331, L0.333, L0.335, L0.339, L0.344, L0.345, L0.346, L0.348, L0.349, L0.350, L0.351, L0.352, L0.354, L0.355, L0.356, L0.357, L0.358, L0.360, L0.361, L0.362, L0.363, L0.364, L0.366, L0.367, L0.368, L0.369, L0.376, L0.380, L0.382, L0.384, L0.386, L0.388, L0.390, L0.392, L0.394, L0.396, L0.398, L0.400, L0.402, L0.404, L0.406, L0.408, L0.410, L0.412, L0.414, L0.416, L0.418, L0.420, L0.422, L0.424, L0.426, L0.428, L0.430, L0.432, L0.434, L0.436, L0.438, L0.440, L0.442, L0.446, L0.448, L0.450, L0.453, L0.454, L0.455, L0.456, L0.457, L0.458, L0.459, L0.460, L0.466, L0.467, L0.468, L0.469, L0.470, L0.471, L0.472, L0.473, L0.474, L0.475, L0.476, L0.477, L0.478, L0.479, L0.480, L0.481, L0.482, L0.483, L0.484, L0.485, L0.486, L0.487, L0.488, L0.489, L0.490, L0.491, L0.492, L0.493, L0.494, L0.495, L0.496, L0.497, L0.498, L0.499, L0.500, L0.501, L0.502, L0.503, L0.504, L0.505, L0.506, L0.507, L0.508, L0.509, L0.510, L0.511, L0.512, L0.513, L0.514, L0.515, L0.516, L0.517, L0.518, L0.519, L0.520, L0.521, L0.522, L0.523, L0.524, L0.525, L0.526, L0.527, L0.528, L0.529, L0.530, L0.531, L0.532, L0.533, L0.534, L0.535, L0.536, L0.537" - - " Creating 2 files" - - "**** Simulation run 223, type=compact(ManySmallFiles). 6 Input Files, 4mb total:" - - "L0 " - - "L0.444[617,638] 1.05us 239kb|L0.444| " - - "L0.337[639,658] 1.05us 217kb |L0.337| " - - "L0.264[659,670] 1.05us 130kb |L0.264| " - - "L0.370[671,920] 1.05us 3mb |--------------------------L0.370--------------------------| " - - "L0.461[921,973] 1.05us 576kb |--L0.461--| " - - "L0.462[974,986] 1.05us 144kb |L0.462|" - - "**** 1 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0, all files 4mb " - - "L0.?[617,986] 1.05us |------------------------------------------L0.?------------------------------------------|" - - "Committing partition 1:" - - " Soft Deleting 6 files: L0.264, L0.337, L0.370, L0.444, L0.461, L0.462" + - " Soft Deleting 1 files: L0.51" - " Creating 1 files" - - "**** Simulation run 224, type=split(HighL0OverlapSingleFile)(split_times=[756]). 1 Input Files, 99mb total:" - - "L1, all files 99mb " - - "L1.374[617,920] 1.03us |-----------------------------------------L1.374-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 99mb total:" - - "L1 " - - "L1.?[617,756] 1.03us 45mb|-----------------L1.?------------------| " - - "L1.?[757,920] 1.03us 54mb |---------------------L1.?---------------------| " - - "**** Simulation run 225, type=split(HighL0OverlapSingleFile)(split_times=[526]). 1 Input Files, 100mb total:" - - "L1, all files 100mb " - - "L1.464[296,590] 1.03us |-----------------------------------------L1.464-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" - - "L1 " - - "L1.?[296,526] 1.03us 78mb|--------------------------------L1.?--------------------------------| " - - "L1.?[527,590] 1.03us 22mb |------L1.?-------| " - - "**** Simulation run 226, type=split(HighL0OverlapSingleFile)(split_times=[756]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.540[617,986] 1.05us |-----------------------------------------L0.540-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[617,756] 1.05us 1mb |-------------L0.?--------------| " - - "L0.?[757,986] 1.05us 2mb |------------------------L0.?-------------------------| " - - "**** Simulation run 227, type=split(HighL0OverlapSingleFile)(split_times=[756]). 1 Input Files, 76mb total:" - - "L0, all files 76mb " - - "L0.539[579,986] 1.05us |-----------------------------------------L0.539-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 76mb total:" - - "L0 " - - "L0.?[579,756] 1.05us 33mb|----------------L0.?-----------------| " - - "L0.?[757,986] 1.05us 43mb |----------------------L0.?----------------------| " - - "Committing partition 1:" - - " Soft Deleting 4 files: L1.374, L1.464, L0.539, L0.540" - - " Creating 8 files" - - "**** Simulation run 228, type=split(HighL0OverlapSingleFile)(split_times=[196]). 1 Input Files, 100mb total:" - - "L1, all files 100mb " - - "L1.463[0,295] 1.03us |-----------------------------------------L1.463-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" - - "L1 " - - "L1.?[0,196] 1.03us 67mb |--------------------------L1.?---------------------------| " - - "L1.?[197,295] 1.03us 34mb |-----------L1.?------------| " - - "**** Simulation run 229, type=split(HighL0OverlapSingleFile)(split_times=[392]). 1 Input Files, 78mb total:" - - "L1, all files 78mb " - - "L1.543[296,526] 1.03us |-----------------------------------------L1.543-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 78mb total:" - - "L1 " - - "L1.?[296,392] 1.03us 33mb|---------------L1.?----------------| " - - "L1.?[393,526] 1.03us 46mb |-----------------------L1.?-----------------------| " - - "**** Simulation run 230, type=split(HighL0OverlapSingleFile)(split_times=[196, 392]). 1 Input Files, 100mb total:" + - "**** Simulation run 1, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[514]). 20 Input Files, 200mb total:" + - "L0, all files 10mb " + - "L0.1[76,932] 1us |-------------------------------------L0.1--------------------------------------| " + - "L0.2[42,986] 1us |------------------------------------------L0.2------------------------------------------|" + - "L0.3[173,950] 1us |----------------------------------L0.3----------------------------------| " + - "L0.4[50,629] 1us |------------------------L0.4-------------------------| " + - "L0.5[76,932] 1us |-------------------------------------L0.5--------------------------------------| " + - "L0.6[42,986] 1us |------------------------------------------L0.6------------------------------------------|" + - "L0.7[173,950] 1.01us |----------------------------------L0.7----------------------------------| " + - "L0.8[50,629] 1.01us |------------------------L0.8-------------------------| " + - "L0.9[76,932] 1.01us |-------------------------------------L0.9--------------------------------------| " + - "L0.10[42,986] 1.01us |-----------------------------------------L0.10------------------------------------------|" + - "L0.11[173,950] 1.01us |---------------------------------L0.11----------------------------------| " + - "L0.12[50,629] 1.01us |------------------------L0.12------------------------| " + - "L0.13[76,932] 1.01us |-------------------------------------L0.13-------------------------------------| " + - "L0.14[42,986] 1.01us |-----------------------------------------L0.14------------------------------------------|" + - "L0.15[173,950] 1.01us |---------------------------------L0.15----------------------------------| " + - "L0.16[50,629] 1.01us |------------------------L0.16------------------------| " + - "L0.17[76,932] 1.02us |-------------------------------------L0.17-------------------------------------| " + - "L0.18[42,986] 1.02us |-----------------------------------------L0.18------------------------------------------|" + - "L0.19[173,950] 1.02us |---------------------------------L0.19----------------------------------| " + - "L0.20[50,629] 1.02us |------------------------L0.20------------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 200mb total:" - "L0, all files 100mb " - - "L0.538[42,578] 1.05us |-----------------------------------------L0.538-----------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 100mb total:" - - "L0 " - - "L0.?[42,196] 1.05us 29mb |---------L0.?----------| " - - "L0.?[197,392] 1.05us 36mb |-------------L0.?-------------| " - - "L0.?[393,578] 1.05us 35mb |------------L0.?-------------| " + - "L0.?[42,514] 1.02us |-------------------L0.?--------------------| " + - "L0.?[515,986] 1.02us |-------------------L0.?-------------------| " - "Committing partition 1:" - - " Soft Deleting 3 files: L1.463, L0.538, L1.543" - - " Creating 7 files" - - "**** Simulation run 231, type=split(ReduceOverlap)(split_times=[920, 973]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.546[757,986] 1.05us |-----------------------------------------L0.546-----------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[757,920] 1.05us 2mb |-----------------------------L0.?-----------------------------| " - - "L0.?[921,973] 1.05us 570kb |-------L0.?-------| " - - "L0.?[974,986] 1.05us 153kb |L0.?|" - - "**** Simulation run 232, type=split(ReduceOverlap)(split_times=[590, 616]). 1 Input Files, 33mb total:" - - "L0, all files 33mb " - - "L0.547[579,756] 1.05us |-----------------------------------------L0.547-----------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 33mb total:" - - "L0 " - - "L0.?[579,590] 1.05us 2mb |L0.?| " - - "L0.?[591,616] 1.05us 5mb |---L0.?---| " - - "L0.?[617,756] 1.05us 26mb |--------------------------------L0.?--------------------------------| " - - "**** Simulation run 233, type=split(ReduceOverlap)(split_times=[920, 973]). 1 Input Files, 43mb total:" - - "L0, all files 43mb " - - "L0.548[757,986] 1.05us |-----------------------------------------L0.548-----------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 43mb total:" - - "L0 " - - "L0.?[757,920] 1.05us 31mb|-----------------------------L0.?-----------------------------| " - - "L0.?[921,973] 1.05us 10mb |-------L0.?-------| " - - "L0.?[974,986] 1.05us 3mb |L0.?|" - - "**** Simulation run 234, type=split(ReduceOverlap)(split_times=[526]). 1 Input Files, 35mb total:" - - "L0, all files 35mb " - - "L0.555[393,578] 1.05us |-----------------------------------------L0.555-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 35mb total:" - - "L0 " - - "L0.?[393,526] 1.05us 25mb|-----------------------------L0.?-----------------------------| " - - "L0.?[527,578] 1.05us 10mb |---------L0.?---------| " - - "**** Simulation run 235, type=split(ReduceOverlap)(split_times=[295]). 1 Input Files, 36mb total:" - - "L0, all files 36mb " - - "L0.554[197,392] 1.05us |-----------------------------------------L0.554-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 36mb total:" - - "L0 " - - "L0.?[197,295] 1.05us 18mb|-------------------L0.?--------------------| " - - "L0.?[296,392] 1.05us 18mb |-------------------L0.?-------------------| " - - "Committing partition 1:" - - " Soft Deleting 5 files: L0.546, L0.547, L0.548, L0.554, L0.555" - - " Creating 13 files" - - "**** Simulation run 236, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[196, 392]). 8 Input Files, 269mb total:" - - "L0 " - - "L0.553[42,196] 1.05us 29mb |---------L0.553---------| " - - "L0.567[197,295] 1.05us 18mb |----L0.567----| " - - "L0.568[296,392] 1.05us 18mb |----L0.568----| " - - "L0.565[393,526] 1.05us 25mb |-------L0.565-------| " - - "L1 " - - "L1.549[0,196] 1.03us 67mb|------------L1.549-------------| " - - "L1.550[197,295] 1.03us 34mb |----L1.550----| " - - "L1.551[296,392] 1.03us 33mb |----L1.551----| " - - "L1.552[393,526] 1.03us 46mb |-------L1.552-------| " - - "**** 3 Output Files (parquet_file_id not yet assigned), 269mb total:" - - "L1 " - - "L1.?[0,196] 1.05us 100mb |-------------L1.?--------------| " - - "L1.?[197,392] 1.05us 100mb |-------------L1.?--------------| " - - "L1.?[393,526] 1.05us 69mb |--------L1.?--------| " - - "Committing partition 1:" - - " Soft Deleting 8 files: L1.549, L1.550, L1.551, L1.552, L0.553, L0.565, L0.567, L0.568" - - " Creating 3 files" - - "**** Simulation run 237, type=split(CompactAndSplitOutput(TotalSizeLessThanMaxCompactSize))(split_times=[718, 909]). 17 Input Files, 241mb total:" - - "L0 " - - "L0.558[974,986] 1.05us 153kb |L0.558|" - - "L0.564[974,986] 1.05us 3mb |L0.564|" - - "L0.557[921,973] 1.05us 570kb |-L0.557-| " - - "L0.563[921,973] 1.05us 10mb |-L0.563-| " - - "L0.556[757,920] 1.05us 2mb |-----------L0.556------------| " - - "L0.562[757,920] 1.05us 31mb |-----------L0.562------------| " - - "L0.561[617,756] 1.05us 26mb |---------L0.561----------| " - - "L0.545[617,756] 1.05us 1mb |---------L0.545----------| " - - "L0.560[591,616] 1.05us 5mb |L0.560| " - - "L0.559[579,590] 1.05us 2mb |L0.559| " - - "L0.566[527,578] 1.05us 10mb|-L0.566-| " - - "L1 " - - "L1.544[527,590] 1.03us 22mb|--L1.544--| " - - "L1.452[974,986] 1.03us 4mb |L1.452|" - - "L1.465[591,616] 1.03us 9mb |L1.465| " - - "L1.541[617,756] 1.03us 45mb |---------L1.541----------| " - - "L1.542[757,920] 1.03us 54mb |-----------L1.542------------| " - - "L1.451[921,973] 1.03us 17mb |-L1.451-| " - - "**** 3 Output Files (parquet_file_id not yet assigned), 241mb total:" - - "L1 " - - "L1.?[527,718] 1.05us 100mb|---------------L1.?----------------| " - - "L1.?[719,909] 1.05us 100mb |---------------L1.?----------------| " - - "L1.?[910,986] 1.05us 41mb |----L1.?----| " - - "Committing partition 1:" - - " Soft Deleting 17 files: L1.451, L1.452, L1.465, L1.541, L1.542, L1.544, L0.545, L0.556, L0.557, L0.558, L0.559, L0.560, L0.561, L0.562, L0.563, L0.564, L0.566" - - " Creating 3 files" - - "**** Simulation run 238, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[391, 585]). 3 Input Files, 269mb total:" - - "L1 " - - "L1.570[197,392] 1.05us 100mb|------------L1.570-------------| " - - "L1.571[393,526] 1.05us 69mb |-------L1.571-------| " - - "L1.572[527,718] 1.05us 100mb |------------L1.572------------| " - - "**** 3 Output Files (parquet_file_id not yet assigned), 269mb total:" - - "L2 " - - "L2.?[197,391] 1.05us 100mb|-------------L2.?--------------| " - - "L2.?[392,585] 1.05us 100mb |-------------L2.?--------------| " - - "L2.?[586,718] 1.05us 69mb |--------L2.?--------| " - - "Committing partition 1:" - - " Soft Deleting 3 files: L1.570, L1.571, L1.572" - - " Upgrading 1 files level to CompactionLevel::L2: L1.569" - - " Creating 3 files" - - "**** Simulation run 239, type=split(CompactAndSplitOutput(TotalSizeLessThanMaxCompactSize))(split_times=[909]). 2 Input Files, 141mb total:" - - "L1 " - - "L1.574[910,986] 1.05us 41mb |--------L1.574---------| " - - "L1.573[719,909] 1.05us 100mb|----------------------------L1.573----------------------------| " - - "**** 2 Output Files (parquet_file_id not yet assigned), 141mb total:" - - "L2 " - - "L2.?[719,909] 1.05us 100mb|-----------------------------L2.?-----------------------------| " - - "L2.?[910,986] 1.05us 41mb |---------L2.?----------| " - - "Committing partition 1:" - - " Soft Deleting 2 files: L1.573, L1.574" + - " Soft Deleting 20 files: L0.1, L0.2, L0.3, L0.4, L0.5, L0.6, L0.7, L0.8, L0.9, L0.10, L0.11, L0.12, L0.13, L0.14, L0.15, L0.16, L0.17, L0.18, L0.19, L0.20" - " Creating 2 files" - - "**** Final Output Files (3.9gb written)" + - "**** Simulation run 2, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[514]). 20 Input Files, 200mb total:" + - "L0, all files 10mb " + - "L0.21[76,932] 1.02us |-------------------------------------L0.21-------------------------------------| " + - "L0.22[42,986] 1.02us |-----------------------------------------L0.22------------------------------------------|" + - "L0.23[173,950] 1.02us |---------------------------------L0.23----------------------------------| " + - "L0.24[50,629] 1.02us |------------------------L0.24------------------------| " + - "L0.25[76,932] 1.02us |-------------------------------------L0.25-------------------------------------| " + - "L0.26[42,986] 1.02us |-----------------------------------------L0.26------------------------------------------|" + - "L0.27[173,950] 1.03us |---------------------------------L0.27----------------------------------| " + - "L0.28[50,629] 1.03us |------------------------L0.28------------------------| " + - "L0.29[76,932] 1.03us |-------------------------------------L0.29-------------------------------------| " + - "L0.30[42,986] 1.03us |-----------------------------------------L0.30------------------------------------------|" + - "L0.31[173,950] 1.03us |---------------------------------L0.31----------------------------------| " + - "L0.32[50,629] 1.03us |------------------------L0.32------------------------| " + - "L0.33[76,932] 1.03us |-------------------------------------L0.33-------------------------------------| " + - "L0.34[42,986] 1.03us |-----------------------------------------L0.34------------------------------------------|" + - "L0.35[173,950] 1.03us |---------------------------------L0.35----------------------------------| " + - "L0.36[50,629] 1.03us |------------------------L0.36------------------------| " + - "L0.37[76,932] 1.04us |-------------------------------------L0.37-------------------------------------| " + - "L0.38[42,986] 1.04us |-----------------------------------------L0.38------------------------------------------|" + - "L0.39[173,950] 1.04us |---------------------------------L0.39----------------------------------| " + - "L0.40[50,629] 1.04us |------------------------L0.40------------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 200mb total:" + - "L0, all files 100mb " + - "L0.?[42,514] 1.04us |-------------------L0.?--------------------| " + - "L0.?[515,986] 1.04us |-------------------L0.?-------------------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.21, L0.22, L0.23, L0.24, L0.25, L0.26, L0.27, L0.28, L0.29, L0.30, L0.31, L0.32, L0.33, L0.34, L0.35, L0.36, L0.37, L0.38, L0.39, L0.40" + - " Creating 2 files" + - "**** Simulation run 3, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[797]). 10 Input Files, 100mb total:" + - "L0, all files 10mb " + - "L0.41[76,932] 1.04us |-------------------------------------L0.41-------------------------------------| " + - "L0.42[42,986] 1.04us |-----------------------------------------L0.42------------------------------------------|" + - "L0.43[173,950] 1.04us |---------------------------------L0.43----------------------------------| " + - "L0.44[50,629] 1.04us |------------------------L0.44------------------------| " + - "L0.45[76,932] 1.04us |-------------------------------------L0.45-------------------------------------| " + - "L0.46[42,986] 1.05us |-----------------------------------------L0.46------------------------------------------|" + - "L0.47[173,950] 1.05us |---------------------------------L0.47----------------------------------| " + - "L0.48[50,629] 1.05us |------------------------L0.48------------------------| " + - "L0.49[76,932] 1.05us |-------------------------------------L0.49-------------------------------------| " + - "L0.50[42,986] 1.05us |-----------------------------------------L0.50------------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[42,797] 1.05us 80mb |--------------------------------L0.?---------------------------------| " + - "L0.?[798,986] 1.05us 20mb |-----L0.?------| " + - "Committing partition 1:" + - " Soft Deleting 10 files: L0.41, L0.42, L0.43, L0.44, L0.45, L0.46, L0.47, L0.48, L0.49, L0.50" + - " Creating 2 files" + - "**** Simulation run 4, type=split(HighL0OverlapSingleFile)(split_times=[670]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.54[515,986] 1.02us |-----------------------------------------L0.54------------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[515,670] 1.02us 33mb|-----------L0.?------------| " + - "L0.?[671,986] 1.02us 67mb |---------------------------L0.?---------------------------| " + - "**** Simulation run 5, type=split(HighL0OverlapSingleFile)(split_times=[356]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.53[42,514] 1.02us |-----------------------------------------L0.53------------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[42,356] 1.02us 67mb |--------------------------L0.?---------------------------| " + - "L0.?[357,514] 1.02us 33mb |-----------L0.?------------| " + - "**** Simulation run 6, type=split(HighL0OverlapSingleFile)(split_times=[670]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.56[515,986] 1.04us |-----------------------------------------L0.56------------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[515,670] 1.04us 33mb|-----------L0.?------------| " + - "L0.?[671,986] 1.04us 67mb |---------------------------L0.?---------------------------| " + - "**** Simulation run 7, type=split(HighL0OverlapSingleFile)(split_times=[356]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.55[42,514] 1.04us |-----------------------------------------L0.55------------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[42,356] 1.04us 67mb |--------------------------L0.?---------------------------| " + - "L0.?[357,514] 1.04us 33mb |-----------L0.?------------| " + - "**** Simulation run 8, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 80mb total:" + - "L0, all files 80mb " + - "L0.57[42,797] 1.05us |-----------------------------------------L0.57------------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 80mb total:" + - "L0 " + - "L0.?[42,356] 1.05us 33mb |---------------L0.?----------------| " + - "L0.?[357,670] 1.05us 33mb |---------------L0.?----------------| " + - "L0.?[671,797] 1.05us 14mb |----L0.?-----| " + - "Committing partition 1:" + - " Soft Deleting 5 files: L0.53, L0.54, L0.55, L0.56, L0.57" + - " Creating 11 files" + - "**** Simulation run 9, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[357, 714]). 6 Input Files, 277mb total:" + - "L0 " + - "L0.52[0,1] 999ns 10mb |L0.52| " + - "L0.61[42,356] 1.02us 67mb |----------L0.61-----------| " + - "L0.62[357,514] 1.02us 33mb |---L0.62----| " + - "L0.59[515,670] 1.02us 33mb |---L0.59----| " + - "L0.60[671,986] 1.02us 67mb |----------L0.60-----------| " + - "L0.65[42,356] 1.04us 67mb |----------L0.65-----------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 277mb total:" + - "L1 " + - "L1.?[0,357] 1.04us 100mb |-------------L1.?-------------| " + - "L1.?[358,714] 1.04us 100mb |-------------L1.?-------------| " + - "L1.?[715,986] 1.04us 77mb |---------L1.?---------| " + - "Committing partition 1:" + - " Soft Deleting 6 files: L0.52, L0.59, L0.60, L0.61, L0.62, L0.65" + - " Creating 3 files" + - "**** Simulation run 10, type=split(ReduceOverlap)(split_times=[714]). 1 Input Files, 67mb total:" + - "L0, all files 67mb " + - "L0.64[671,986] 1.04us |-----------------------------------------L0.64------------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 67mb total:" + - "L0 " + - "L0.?[671,714] 1.04us 9mb |---L0.?---| " + - "L0.?[715,986] 1.04us 58mb |-----------------------------------L0.?------------------------------------| " + - "**** Simulation run 11, type=split(ReduceOverlap)(split_times=[357]). 1 Input Files, 33mb total:" + - "L0, all files 33mb " + - "L0.66[357,514] 1.04us |-----------------------------------------L0.66------------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 33mb total:" + - "L0 " + - "L0.?[357,357] 1.04us 0b |L0.?| " + - "L0.?[358,514] 1.04us 33mb|-----------------------------------------L0.?------------------------------------------| " + - "**** Simulation run 12, type=split(ReduceOverlap)(split_times=[714]). 1 Input Files, 14mb total:" + - "L0, all files 14mb " + - "L0.69[671,797] 1.05us |-----------------------------------------L0.69------------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 14mb total:" + - "L0 " + - "L0.?[671,714] 1.05us 5mb |------------L0.?------------| " + - "L0.?[715,797] 1.05us 9mb |--------------------------L0.?--------------------------| " + - "**** Simulation run 13, type=split(ReduceOverlap)(split_times=[357]). 1 Input Files, 33mb total:" + - "L0, all files 33mb " + - "L0.68[357,670] 1.05us |-----------------------------------------L0.68------------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 33mb total:" + - "L0 " + - "L0.?[357,357] 1.05us 0b |L0.?| " + - "L0.?[358,670] 1.05us 33mb|-----------------------------------------L0.?------------------------------------------| " + - "Committing partition 1:" + - " Soft Deleting 4 files: L0.64, L0.66, L0.68, L0.69" + - " Creating 8 files" + - "**** Simulation run 14, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[260, 520]). 6 Input Files, 276mb total:" + - "L0 " + - "L0.75[357,357] 1.04us 0b |L0.75| " + - "L0.76[358,514] 1.04us 33mb |------L0.76------| " + - "L0.63[515,670] 1.04us 33mb |------L0.63------| " + - "L0.73[671,714] 1.04us 9mb |L0.73|" + - "L1 " + - "L1.70[0,357] 1.04us 100mb|-------------------L1.70-------------------| " + - "L1.71[358,714] 1.04us 100mb |------------------L1.71-------------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 276mb total:" + - "L1 " + - "L1.?[0,260] 1.04us 100mb |-------------L1.?-------------| " + - "L1.?[261,520] 1.04us 100mb |-------------L1.?-------------| " + - "L1.?[521,714] 1.04us 75mb |---------L1.?---------| " + - "Committing partition 1:" + - " Soft Deleting 6 files: L0.63, L1.70, L1.71, L0.73, L0.75, L0.76" + - " Creating 3 files" + - "**** Simulation run 15, type=split(ReduceOverlap)(split_times=[520]). 1 Input Files, 33mb total:" + - "L0, all files 33mb " + - "L0.80[358,670] 1.05us |-----------------------------------------L0.80------------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 33mb total:" + - "L0 " + - "L0.?[358,520] 1.05us 17mb|--------------------L0.?--------------------| " + - "L0.?[521,670] 1.05us 16mb |------------------L0.?------------------| " + - "**** Simulation run 16, type=split(ReduceOverlap)(split_times=[260]). 1 Input Files, 33mb total:" + - "L0, all files 33mb " + - "L0.67[42,356] 1.05us |-----------------------------------------L0.67------------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 33mb total:" + - "L0 " + - "L0.?[42,260] 1.05us 23mb |----------------------------L0.?----------------------------| " + - "L0.?[261,356] 1.05us 10mb |----------L0.?-----------| " + - "Committing partition 1:" + - " Soft Deleting 2 files: L0.67, L0.80" + - " Creating 4 files" + - "**** Simulation run 17, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[917]). 2 Input Files, 134mb total:" + - "L0 " + - "L0.74[715,986] 1.04us 58mb|-----------------------------------------L0.74------------------------------------------|" + - "L1 " + - "L1.72[715,986] 1.04us 77mb|-----------------------------------------L1.72------------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 134mb total:" + - "L1 " + - "L1.?[715,917] 1.04us 100mb|------------------------------L1.?-------------------------------| " + - "L1.?[918,986] 1.04us 34mb |--------L1.?--------| " + - "Committing partition 1:" + - " Soft Deleting 2 files: L1.72, L0.74" + - " Creating 2 files" + - "**** Simulation run 18, type=split(ReduceOverlap)(split_times=[917]). 1 Input Files, 20mb total:" + - "L0, all files 20mb " + - "L0.58[798,986] 1.05us |-----------------------------------------L0.58------------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 20mb total:" + - "L0 " + - "L0.?[798,917] 1.05us 13mb|-------------------------L0.?-------------------------| " + - "L0.?[918,986] 1.05us 7mb |-------------L0.?-------------| " + - "Committing partition 1:" + - " Soft Deleting 1 files: L0.58" + - " Creating 2 files" + - "**** Simulation run 19, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[208, 416]). 6 Input Files, 251mb total:" + - "L0 " + - "L0.86[42,260] 1.05us 23mb |---------------L0.86---------------| " + - "L0.87[261,356] 1.05us 10mb |----L0.87-----| " + - "L0.79[357,357] 1.05us 0b |L0.79| " + - "L0.84[358,520] 1.05us 17mb |----------L0.84-----------| " + - "L1 " + - "L1.81[0,260] 1.04us 100mb|-------------------L1.81-------------------| " + - "L1.82[261,520] 1.04us 100mb |------------------L1.82-------------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 251mb total:" + - "L1 " + - "L1.?[0,208] 1.05us 100mb |---------------L1.?---------------| " + - "L1.?[209,416] 1.05us 100mb |--------------L1.?---------------| " + - "L1.?[417,520] 1.05us 51mb |-----L1.?------| " + - "Committing partition 1:" + - " Soft Deleting 6 files: L0.79, L1.81, L1.82, L0.84, L0.86, L0.87" + - " Creating 3 files" + - "**** Simulation run 20, type=split(CompactAndSplitOutput(TotalSizeLessThanMaxCompactSize))(split_times=[701, 881]). 8 Input Files, 259mb total:" + - "L0 " + - "L0.91[918,986] 1.05us 7mb |---L0.91---| " + - "L0.90[798,917] 1.05us 13mb |--------L0.90--------| " + - "L0.78[715,797] 1.05us 9mb |----L0.78----| " + - "L0.77[671,714] 1.05us 5mb |L0.77-| " + - "L0.85[521,670] 1.05us 16mb|----------L0.85-----------| " + - "L1 " + - "L1.83[521,714] 1.04us 75mb|---------------L1.83---------------| " + - "L1.89[918,986] 1.04us 34mb |---L1.89---| " + - "L1.88[715,917] 1.04us 100mb |----------------L1.88----------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 259mb total:" + - "L1 " + - "L1.?[521,701] 1.05us 100mb|--------------L1.?--------------| " + - "L1.?[702,881] 1.05us 100mb |--------------L1.?--------------| " + - "L1.?[882,986] 1.05us 59mb |-------L1.?-------| " + - "Committing partition 1:" + - " Soft Deleting 8 files: L0.77, L0.78, L1.83, L0.85, L1.88, L1.89, L0.90, L0.91" + - " Creating 3 files" + - "**** Simulation run 21, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[406, 603]). 3 Input Files, 251mb total:" + - "L1 " + - "L1.93[209,416] 1.05us 100mb|---------------L1.93---------------| " + - "L1.94[417,520] 1.05us 51mb |-----L1.94------| " + - "L1.95[521,701] 1.05us 100mb |------------L1.95-------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 251mb total:" - "L2 " - - "L2.569[0,196] 1.05us 100mb|----L2.569-----| " - - "L2.575[197,391] 1.05us 100mb |----L2.575-----| " - - "L2.576[392,585] 1.05us 100mb |----L2.576-----| " - - "L2.577[586,718] 1.05us 69mb |--L2.577--| " - - "L2.578[719,909] 1.05us 100mb |----L2.578-----| " - - "L2.579[910,986] 1.05us 41mb |L2.579|" + - "L2.?[209,406] 1.05us 100mb|---------------L2.?---------------| " + - "L2.?[407,603] 1.05us 100mb |--------------L2.?---------------| " + - "L2.?[604,701] 1.05us 50mb |-----L2.?------| " + - "Committing partition 1:" + - " Soft Deleting 3 files: L1.93, L1.94, L1.95" + - " Upgrading 1 files level to CompactionLevel::L2: L1.92" + - " Creating 3 files" + - "**** Simulation run 22, type=split(CompactAndSplitOutput(TotalSizeLessThanMaxCompactSize))(split_times=[881]). 2 Input Files, 159mb total:" + - "L1 " + - "L1.97[882,986] 1.05us 59mb |------------L1.97-------------| " + - "L1.96[702,881] 1.05us 100mb|------------------------L1.96-------------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 159mb total:" + - "L2 " + - "L2.?[702,881] 1.05us 100mb|-------------------------L2.?-------------------------| " + - "L2.?[882,986] 1.05us 59mb |-------------L2.?-------------| " + - "Committing partition 1:" + - " Soft Deleting 2 files: L1.96, L1.97" + - " Creating 2 files" + - "**** Final Output Files (2.76gb written)" + - "L2 " + - "L2.92[0,208] 1.05us 100mb|-----L2.92------| " + - "L2.98[209,406] 1.05us 100mb |-----L2.98-----| " + - "L2.99[407,603] 1.05us 100mb |-----L2.99-----| " + - "L2.100[604,701] 1.05us 50mb |L2.100| " + - "L2.101[702,881] 1.05us 100mb |----L2.101----| " + - "L2.102[882,986] 1.05us 59mb |L2.102-| " "### ); } @@ -2299,7 +453,6 @@ async fn random_backfill_over_l2s() { .with_max_num_files_per_plan(10) .with_max_desired_file_size_bytes(MAX_DESIRED_FILE_SIZE) .with_partition_timeout(Duration::from_secs(10)) - .with_max_num_files_per_plan(200) .build() .await; @@ -2428,2348 +581,443 @@ async fn random_backfill_over_l2s() { - "L2.8[700,799] 799ns 100mb |-L2.8-| " - "L2.9[800,899] 899ns 100mb |-L2.9-| " - "L2.10[900,999] 999ns 100mb |L2.10-| " - - "**** Simulation run 0, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.11[76,932] 1us |-----------------------------------------L0.11------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[76,356] 1us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1us 4mb |-------------L0.?-------------| " - - "L0.?[671,932] 1us 3mb |----------L0.?-----------| " - - "**** Simulation run 1, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" + - "**** Simulation run 0, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[797]). 10 Input Files, 100mb total:" - "L0, all files 10mb " + - "L0.11[76,932] 1us |-------------------------------------L0.11-------------------------------------| " - "L0.12[42,986] 1us |-----------------------------------------L0.12------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[42,356] 1us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1us 3mb |-----------L0.?------------| " - - "L0.?[671,986] 1us 3mb |------------L0.?------------| " - - "**** Simulation run 2, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.13[173,950] 1us |-----------------------------------------L0.13------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[173,356] 1us 2mb |-------L0.?--------| " - - "L0.?[357,670] 1us 4mb |---------------L0.?---------------| " - - "L0.?[671,950] 1us 4mb |-------------L0.?-------------| " - - "**** Simulation run 3, type=split(HighL0OverlapSingleFile)(split_times=[356]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.14[50,629] 1us |-----------------------------------------L0.14------------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[50,356] 1us 5mb |--------------------L0.?---------------------| " - - "L0.?[357,629] 1us 5mb |------------------L0.?------------------| " - - "**** Simulation run 4, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.15[76,932] 1us |-----------------------------------------L0.15------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[76,356] 1us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1us 4mb |-------------L0.?-------------| " - - "L0.?[671,932] 1us 3mb |----------L0.?-----------| " - - "**** Simulation run 5, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " + - "L0.13[173,950] 1us |---------------------------------L0.13----------------------------------| " + - "L0.14[50,629] 1us |------------------------L0.14------------------------| " + - "L0.15[76,932] 1us |-------------------------------------L0.15-------------------------------------| " - "L0.16[42,986] 1us |-----------------------------------------L0.16------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[42,356] 1us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1us 3mb |-----------L0.?------------| " - - "L0.?[671,986] 1us 3mb |------------L0.?------------| " - - "**** Simulation run 6, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.17[173,950] 1.01us |-----------------------------------------L0.17------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[173,356] 1.01us 2mb |-------L0.?--------| " - - "L0.?[357,670] 1.01us 4mb |---------------L0.?---------------| " - - "L0.?[671,950] 1.01us 4mb |-------------L0.?-------------| " - - "**** Simulation run 7, type=split(HighL0OverlapSingleFile)(split_times=[356]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.18[50,629] 1.01us |-----------------------------------------L0.18------------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[50,356] 1.01us 5mb |--------------------L0.?---------------------| " - - "L0.?[357,629] 1.01us 5mb |------------------L0.?------------------| " - - "**** Simulation run 8, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.19[76,932] 1.01us |-----------------------------------------L0.19------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[76,356] 1.01us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.01us 4mb |-------------L0.?-------------| " - - "L0.?[671,932] 1.01us 3mb |----------L0.?-----------| " - - "**** Simulation run 9, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " + - "L0.17[173,950] 1.01us |---------------------------------L0.17----------------------------------| " + - "L0.18[50,629] 1.01us |------------------------L0.18------------------------| " + - "L0.19[76,932] 1.01us |-------------------------------------L0.19-------------------------------------| " - "L0.20[42,986] 1.01us |-----------------------------------------L0.20------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" - "L0 " - - "L0.?[42,356] 1.01us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.01us 3mb |-----------L0.?------------| " - - "L0.?[671,986] 1.01us 3mb |------------L0.?------------| " - - "**** Simulation run 10, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.21[173,950] 1.01us |-----------------------------------------L0.21------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[173,356] 1.01us 2mb |-------L0.?--------| " - - "L0.?[357,670] 1.01us 4mb |---------------L0.?---------------| " - - "L0.?[671,950] 1.01us 4mb |-------------L0.?-------------| " - - "**** Simulation run 11, type=split(HighL0OverlapSingleFile)(split_times=[356]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.22[50,629] 1.01us |-----------------------------------------L0.22------------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[50,356] 1.01us 5mb |--------------------L0.?---------------------| " - - "L0.?[357,629] 1.01us 5mb |------------------L0.?------------------| " - - "**** Simulation run 12, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.23[76,932] 1.01us |-----------------------------------------L0.23------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[76,356] 1.01us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.01us 4mb |-------------L0.?-------------| " - - "L0.?[671,932] 1.01us 3mb |----------L0.?-----------| " - - "**** Simulation run 13, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" + - "L0.?[42,797] 1.01us 80mb |--------------------------------L0.?---------------------------------| " + - "L0.?[798,986] 1.01us 20mb |-----L0.?------| " + - "Committing partition 1:" + - " Soft Deleting 10 files: L0.11, L0.12, L0.13, L0.14, L0.15, L0.16, L0.17, L0.18, L0.19, L0.20" + - " Creating 2 files" + - "**** Simulation run 1, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[797]). 10 Input Files, 100mb total:" - "L0, all files 10mb " + - "L0.21[173,950] 1.01us |---------------------------------L0.21----------------------------------| " + - "L0.22[50,629] 1.01us |------------------------L0.22------------------------| " + - "L0.23[76,932] 1.01us |-------------------------------------L0.23-------------------------------------| " - "L0.24[42,986] 1.01us |-----------------------------------------L0.24------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[42,356] 1.01us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.01us 3mb |-----------L0.?------------| " - - "L0.?[671,986] 1.01us 3mb |------------L0.?------------| " - - "**** Simulation run 14, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.25[173,950] 1.01us |-----------------------------------------L0.25------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[173,356] 1.01us 2mb |-------L0.?--------| " - - "L0.?[357,670] 1.01us 4mb |---------------L0.?---------------| " - - "L0.?[671,950] 1.01us 4mb |-------------L0.?-------------| " - - "**** Simulation run 15, type=split(HighL0OverlapSingleFile)(split_times=[356]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.26[50,629] 1.01us |-----------------------------------------L0.26------------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[50,356] 1.01us 5mb |--------------------L0.?---------------------| " - - "L0.?[357,629] 1.01us 5mb |------------------L0.?------------------| " - - "**** Simulation run 16, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.27[76,932] 1.02us |-----------------------------------------L0.27------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[76,356] 1.02us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.02us 4mb |-------------L0.?-------------| " - - "L0.?[671,932] 1.02us 3mb |----------L0.?-----------| " - - "**** Simulation run 17, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " + - "L0.25[173,950] 1.01us |---------------------------------L0.25----------------------------------| " + - "L0.26[50,629] 1.01us |------------------------L0.26------------------------| " + - "L0.27[76,932] 1.02us |-------------------------------------L0.27-------------------------------------| " - "L0.28[42,986] 1.02us |-----------------------------------------L0.28------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" + - "L0.29[173,950] 1.02us |---------------------------------L0.29----------------------------------| " + - "L0.30[50,629] 1.02us |------------------------L0.30------------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" - "L0 " - - "L0.?[42,356] 1.02us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.02us 3mb |-----------L0.?------------| " - - "L0.?[671,986] 1.02us 3mb |------------L0.?------------| " - - "**** Simulation run 18, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.29[173,950] 1.02us |-----------------------------------------L0.29------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[173,356] 1.02us 2mb |-------L0.?--------| " - - "L0.?[357,670] 1.02us 4mb |---------------L0.?---------------| " - - "L0.?[671,950] 1.02us 4mb |-------------L0.?-------------| " - - "**** Simulation run 19, type=split(HighL0OverlapSingleFile)(split_times=[356]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.30[50,629] 1.02us |-----------------------------------------L0.30------------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[50,356] 1.02us 5mb |--------------------L0.?---------------------| " - - "L0.?[357,629] 1.02us 5mb |------------------L0.?------------------| " - - "**** Simulation run 20, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.31[76,932] 1.02us |-----------------------------------------L0.31------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[76,356] 1.02us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.02us 4mb |-------------L0.?-------------| " - - "L0.?[671,932] 1.02us 3mb |----------L0.?-----------| " - - "**** Simulation run 21, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" + - "L0.?[42,797] 1.02us 80mb |--------------------------------L0.?---------------------------------| " + - "L0.?[798,986] 1.02us 20mb |-----L0.?------| " + - "Committing partition 1:" + - " Soft Deleting 10 files: L0.21, L0.22, L0.23, L0.24, L0.25, L0.26, L0.27, L0.28, L0.29, L0.30" + - " Creating 2 files" + - "**** Simulation run 2, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[797]). 10 Input Files, 100mb total:" - "L0, all files 10mb " + - "L0.31[76,932] 1.02us |-------------------------------------L0.31-------------------------------------| " - "L0.32[42,986] 1.02us |-----------------------------------------L0.32------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[42,356] 1.02us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.02us 3mb |-----------L0.?------------| " - - "L0.?[671,986] 1.02us 3mb |------------L0.?------------| " - - "**** Simulation run 22, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.33[173,950] 1.02us |-----------------------------------------L0.33------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[173,356] 1.02us 2mb |-------L0.?--------| " - - "L0.?[357,670] 1.02us 4mb |---------------L0.?---------------| " - - "L0.?[671,950] 1.02us 4mb |-------------L0.?-------------| " - - "**** Simulation run 23, type=split(HighL0OverlapSingleFile)(split_times=[356]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.34[50,629] 1.02us |-----------------------------------------L0.34------------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[50,356] 1.02us 5mb |--------------------L0.?---------------------| " - - "L0.?[357,629] 1.02us 5mb |------------------L0.?------------------| " - - "**** Simulation run 24, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.35[76,932] 1.02us |-----------------------------------------L0.35------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[76,356] 1.02us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.02us 4mb |-------------L0.?-------------| " - - "L0.?[671,932] 1.02us 3mb |----------L0.?-----------| " - - "**** Simulation run 25, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " + - "L0.33[173,950] 1.02us |---------------------------------L0.33----------------------------------| " + - "L0.34[50,629] 1.02us |------------------------L0.34------------------------| " + - "L0.35[76,932] 1.02us |-------------------------------------L0.35-------------------------------------| " - "L0.36[42,986] 1.02us |-----------------------------------------L0.36------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[42,356] 1.02us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.02us 3mb |-----------L0.?------------| " - - "L0.?[671,986] 1.02us 3mb |------------L0.?------------| " - - "**** Simulation run 26, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.37[173,950] 1.03us |-----------------------------------------L0.37------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[173,356] 1.03us 2mb |-------L0.?--------| " - - "L0.?[357,670] 1.03us 4mb |---------------L0.?---------------| " - - "L0.?[671,950] 1.03us 4mb |-------------L0.?-------------| " - - "**** Simulation run 27, type=split(HighL0OverlapSingleFile)(split_times=[356]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.38[50,629] 1.03us |-----------------------------------------L0.38------------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[50,356] 1.03us 5mb |--------------------L0.?---------------------| " - - "L0.?[357,629] 1.03us 5mb |------------------L0.?------------------| " - - "**** Simulation run 28, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.39[76,932] 1.03us |-----------------------------------------L0.39------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[76,356] 1.03us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.03us 4mb |-------------L0.?-------------| " - - "L0.?[671,932] 1.03us 3mb |----------L0.?-----------| " - - "**** Simulation run 29, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " + - "L0.37[173,950] 1.03us |---------------------------------L0.37----------------------------------| " + - "L0.38[50,629] 1.03us |------------------------L0.38------------------------| " + - "L0.39[76,932] 1.03us |-------------------------------------L0.39-------------------------------------| " - "L0.40[42,986] 1.03us |-----------------------------------------L0.40------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" - "L0 " - - "L0.?[42,356] 1.03us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.03us 3mb |-----------L0.?------------| " - - "L0.?[671,986] 1.03us 3mb |------------L0.?------------| " - - "**** Simulation run 30, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.41[173,950] 1.03us |-----------------------------------------L0.41------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[173,356] 1.03us 2mb |-------L0.?--------| " - - "L0.?[357,670] 1.03us 4mb |---------------L0.?---------------| " - - "L0.?[671,950] 1.03us 4mb |-------------L0.?-------------| " - - "**** Simulation run 31, type=split(HighL0OverlapSingleFile)(split_times=[356]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.42[50,629] 1.03us |-----------------------------------------L0.42------------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[50,356] 1.03us 5mb |--------------------L0.?---------------------| " - - "L0.?[357,629] 1.03us 5mb |------------------L0.?------------------| " - - "**** Simulation run 32, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.43[76,932] 1.03us |-----------------------------------------L0.43------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[76,356] 1.03us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.03us 4mb |-------------L0.?-------------| " - - "L0.?[671,932] 1.03us 3mb |----------L0.?-----------| " - - "**** Simulation run 33, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" + - "L0.?[42,797] 1.03us 80mb |--------------------------------L0.?---------------------------------| " + - "L0.?[798,986] 1.03us 20mb |-----L0.?------| " + - "Committing partition 1:" + - " Soft Deleting 10 files: L0.31, L0.32, L0.33, L0.34, L0.35, L0.36, L0.37, L0.38, L0.39, L0.40" + - " Creating 2 files" + - "**** Simulation run 3, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[797]). 10 Input Files, 100mb total:" - "L0, all files 10mb " + - "L0.41[173,950] 1.03us |---------------------------------L0.41----------------------------------| " + - "L0.42[50,629] 1.03us |------------------------L0.42------------------------| " + - "L0.43[76,932] 1.03us |-------------------------------------L0.43-------------------------------------| " - "L0.44[42,986] 1.03us |-----------------------------------------L0.44------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[42,356] 1.03us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.03us 3mb |-----------L0.?------------| " - - "L0.?[671,986] 1.03us 3mb |------------L0.?------------| " - - "**** Simulation run 34, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.45[173,950] 1.03us |-----------------------------------------L0.45------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[173,356] 1.03us 2mb |-------L0.?--------| " - - "L0.?[357,670] 1.03us 4mb |---------------L0.?---------------| " - - "L0.?[671,950] 1.03us 4mb |-------------L0.?-------------| " - - "**** Simulation run 35, type=split(HighL0OverlapSingleFile)(split_times=[356]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.46[50,629] 1.03us |-----------------------------------------L0.46------------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[50,356] 1.03us 5mb |--------------------L0.?---------------------| " - - "L0.?[357,629] 1.03us 5mb |------------------L0.?------------------| " - - "**** Simulation run 36, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.47[76,932] 1.04us |-----------------------------------------L0.47------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[76,356] 1.04us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.04us 4mb |-------------L0.?-------------| " - - "L0.?[671,932] 1.04us 3mb |----------L0.?-----------| " - - "**** Simulation run 37, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " + - "L0.45[173,950] 1.03us |---------------------------------L0.45----------------------------------| " + - "L0.46[50,629] 1.03us |------------------------L0.46------------------------| " + - "L0.47[76,932] 1.04us |-------------------------------------L0.47-------------------------------------| " - "L0.48[42,986] 1.04us |-----------------------------------------L0.48------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" + - "L0.49[173,950] 1.04us |---------------------------------L0.49----------------------------------| " + - "L0.50[50,629] 1.04us |------------------------L0.50------------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" - "L0 " - - "L0.?[42,356] 1.04us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.04us 3mb |-----------L0.?------------| " - - "L0.?[671,986] 1.04us 3mb |------------L0.?------------| " - - "**** Simulation run 38, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.49[173,950] 1.04us |-----------------------------------------L0.49------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[173,356] 1.04us 2mb |-------L0.?--------| " - - "L0.?[357,670] 1.04us 4mb |---------------L0.?---------------| " - - "L0.?[671,950] 1.04us 4mb |-------------L0.?-------------| " - - "**** Simulation run 39, type=split(HighL0OverlapSingleFile)(split_times=[356]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.50[50,629] 1.04us |-----------------------------------------L0.50------------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[50,356] 1.04us 5mb |--------------------L0.?---------------------| " - - "L0.?[357,629] 1.04us 5mb |------------------L0.?------------------| " - - "**** Simulation run 40, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.51[76,932] 1.04us |-----------------------------------------L0.51------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[76,356] 1.04us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.04us 4mb |-------------L0.?-------------| " - - "L0.?[671,932] 1.04us 3mb |----------L0.?-----------| " - - "**** Simulation run 41, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" + - "L0.?[42,797] 1.04us 80mb |--------------------------------L0.?---------------------------------| " + - "L0.?[798,986] 1.04us 20mb |-----L0.?------| " + - "Committing partition 1:" + - " Soft Deleting 10 files: L0.41, L0.42, L0.43, L0.44, L0.45, L0.46, L0.47, L0.48, L0.49, L0.50" + - " Creating 2 files" + - "**** Simulation run 4, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[797]). 10 Input Files, 100mb total:" - "L0, all files 10mb " + - "L0.51[76,932] 1.04us |-------------------------------------L0.51-------------------------------------| " - "L0.52[42,986] 1.04us |-----------------------------------------L0.52------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[42,356] 1.04us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.04us 3mb |-----------L0.?------------| " - - "L0.?[671,986] 1.04us 3mb |------------L0.?------------| " - - "**** Simulation run 42, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.53[173,950] 1.04us |-----------------------------------------L0.53------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[173,356] 1.04us 2mb |-------L0.?--------| " - - "L0.?[357,670] 1.04us 4mb |---------------L0.?---------------| " - - "L0.?[671,950] 1.04us 4mb |-------------L0.?-------------| " - - "**** Simulation run 43, type=split(HighL0OverlapSingleFile)(split_times=[356]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.54[50,629] 1.04us |-----------------------------------------L0.54------------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[50,356] 1.04us 5mb |--------------------L0.?---------------------| " - - "L0.?[357,629] 1.04us 5mb |------------------L0.?------------------| " - - "**** Simulation run 44, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.55[76,932] 1.04us |-----------------------------------------L0.55------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[76,356] 1.04us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.04us 4mb |-------------L0.?-------------| " - - "L0.?[671,932] 1.04us 3mb |----------L0.?-----------| " - - "**** Simulation run 45, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " + - "L0.53[173,950] 1.04us |---------------------------------L0.53----------------------------------| " + - "L0.54[50,629] 1.04us |------------------------L0.54------------------------| " + - "L0.55[76,932] 1.04us |-------------------------------------L0.55-------------------------------------| " - "L0.56[42,986] 1.05us |-----------------------------------------L0.56------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[42,356] 1.05us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.05us 3mb |-----------L0.?------------| " - - "L0.?[671,986] 1.05us 3mb |------------L0.?------------| " - - "**** Simulation run 46, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.57[173,950] 1.05us |-----------------------------------------L0.57------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[173,356] 1.05us 2mb |-------L0.?--------| " - - "L0.?[357,670] 1.05us 4mb |---------------L0.?---------------| " - - "L0.?[671,950] 1.05us 4mb |-------------L0.?-------------| " - - "**** Simulation run 47, type=split(HighL0OverlapSingleFile)(split_times=[356]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.58[50,629] 1.05us |-----------------------------------------L0.58------------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[50,356] 1.05us 5mb |--------------------L0.?---------------------| " - - "L0.?[357,629] 1.05us 5mb |------------------L0.?------------------| " - - "**** Simulation run 48, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " - - "L0.59[76,932] 1.05us |-----------------------------------------L0.59------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[76,356] 1.05us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.05us 4mb |-------------L0.?-------------| " - - "L0.?[671,932] 1.05us 3mb |----------L0.?-----------| " - - "**** Simulation run 49, type=split(HighL0OverlapSingleFile)(split_times=[356, 670]). 1 Input Files, 10mb total:" - - "L0, all files 10mb " + - "L0.57[173,950] 1.05us |---------------------------------L0.57----------------------------------| " + - "L0.58[50,629] 1.05us |------------------------L0.58------------------------| " + - "L0.59[76,932] 1.05us |-------------------------------------L0.59-------------------------------------| " - "L0.60[42,986] 1.05us |-----------------------------------------L0.60------------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 10mb total:" - - "L0 " - - "L0.?[42,356] 1.05us 3mb |-----------L0.?------------| " - - "L0.?[357,670] 1.05us 3mb |-----------L0.?------------| " - - "L0.?[671,986] 1.05us 3mb |------------L0.?------------| " - - "Committing partition 1:" - - " Soft Deleting 50 files: L0.11, L0.12, L0.13, L0.14, L0.15, L0.16, L0.17, L0.18, L0.19, L0.20, L0.21, L0.22, L0.23, L0.24, L0.25, L0.26, L0.27, L0.28, L0.29, L0.30, L0.31, L0.32, L0.33, L0.34, L0.35, L0.36, L0.37, L0.38, L0.39, L0.40, L0.41, L0.42, L0.43, L0.44, L0.45, L0.46, L0.47, L0.48, L0.49, L0.50, L0.51, L0.52, L0.53, L0.54, L0.55, L0.56, L0.57, L0.58, L0.59, L0.60" - - " Creating 138 files" - - "**** Simulation run 50, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[357, 672]). 83 Input Files, 300mb total:" - - "L0 " - - "L0.61[76,356] 1us 3mb |---------L0.61----------| " - - "L0.62[357,670] 1us 4mb |-----------L0.62-----------| " - - "L0.63[671,932] 1us 3mb |--------L0.63---------| " - - "L0.64[42,356] 1us 3mb |-----------L0.64-----------| " - - "L0.65[357,670] 1us 3mb |-----------L0.65-----------| " - - "L0.66[671,986] 1us 3mb |-----------L0.66------------| " - - "L0.67[173,356] 1us 2mb |-----L0.67-----| " - - "L0.68[357,670] 1us 4mb |-----------L0.68-----------| " - - "L0.69[671,950] 1us 4mb |---------L0.69----------| " - - "L0.70[50,356] 1us 5mb |-----------L0.70-----------| " - - "L0.71[357,629] 1us 5mb |---------L0.71---------| " - - "L0.72[76,356] 1us 3mb |---------L0.72----------| " - - "L0.73[357,670] 1us 4mb |-----------L0.73-----------| " - - "L0.74[671,932] 1us 3mb |--------L0.74---------| " - - "L0.75[42,356] 1us 3mb |-----------L0.75-----------| " - - "L0.76[357,670] 1us 3mb |-----------L0.76-----------| " - - "L0.77[671,986] 1us 3mb |-----------L0.77------------| " - - "L0.78[173,356] 1.01us 2mb |-----L0.78-----| " - - "L0.79[357,670] 1.01us 4mb |-----------L0.79-----------| " - - "L0.80[671,950] 1.01us 4mb |---------L0.80----------| " - - "L0.81[50,356] 1.01us 5mb |-----------L0.81-----------| " - - "L0.82[357,629] 1.01us 5mb |---------L0.82---------| " - - "L0.83[76,356] 1.01us 3mb |---------L0.83----------| " - - "L0.84[357,670] 1.01us 4mb |-----------L0.84-----------| " - - "L0.85[671,932] 1.01us 3mb |--------L0.85---------| " - - "L0.86[42,356] 1.01us 3mb |-----------L0.86-----------| " - - "L0.87[357,670] 1.01us 3mb |-----------L0.87-----------| " - - "L0.88[671,986] 1.01us 3mb |-----------L0.88------------| " - - "L0.89[173,356] 1.01us 2mb |-----L0.89-----| " - - "L0.90[357,670] 1.01us 4mb |-----------L0.90-----------| " - - "L0.91[671,950] 1.01us 4mb |---------L0.91----------| " - - "L0.92[50,356] 1.01us 5mb |-----------L0.92-----------| " - - "L0.93[357,629] 1.01us 5mb |---------L0.93---------| " - - "L0.94[76,356] 1.01us 3mb |---------L0.94----------| " - - "L0.95[357,670] 1.01us 4mb |-----------L0.95-----------| " - - "L0.96[671,932] 1.01us 3mb |--------L0.96---------| " - - "L0.97[42,356] 1.01us 3mb |-----------L0.97-----------| " - - "L0.98[357,670] 1.01us 3mb |-----------L0.98-----------| " - - "L0.99[671,986] 1.01us 3mb |-----------L0.99------------| " - - "L0.100[173,356] 1.01us 2mb |----L0.100-----| " - - "L0.101[357,670] 1.01us 4mb |----------L0.101-----------| " - - "L0.102[671,950] 1.01us 4mb |---------L0.102---------| " - - "L0.103[50,356] 1.01us 5mb|----------L0.103-----------| " - - "L0.104[357,629] 1.01us 5mb |--------L0.104---------| " - - "L0.105[76,356] 1.02us 3mb |---------L0.105---------| " - - "L0.106[357,670] 1.02us 4mb |----------L0.106-----------| " - - "L0.107[671,932] 1.02us 3mb |--------L0.107--------| " - - "L0.108[42,356] 1.02us 3mb|----------L0.108-----------| " - - "L0.109[357,670] 1.02us 3mb |----------L0.109-----------| " - - "L0.110[671,986] 1.02us 3mb |-----------L0.110-----------| " - - "L0.111[173,356] 1.02us 2mb |----L0.111-----| " - - "L0.112[357,670] 1.02us 4mb |----------L0.112-----------| " - - "L0.113[671,950] 1.02us 4mb |---------L0.113---------| " - - "L0.114[50,356] 1.02us 5mb|----------L0.114-----------| " - - "L0.115[357,629] 1.02us 5mb |--------L0.115---------| " - - "L0.116[76,356] 1.02us 3mb |---------L0.116---------| " - - "L0.117[357,670] 1.02us 4mb |----------L0.117-----------| " - - "L0.118[671,932] 1.02us 3mb |--------L0.118--------| " - - "L0.119[42,356] 1.02us 3mb|----------L0.119-----------| " - - "L0.120[357,670] 1.02us 3mb |----------L0.120-----------| " - - "L0.121[671,986] 1.02us 3mb |-----------L0.121-----------| " - - "L0.122[173,356] 1.02us 2mb |----L0.122-----| " - - "L0.123[357,670] 1.02us 4mb |----------L0.123-----------| " - - "L0.124[671,950] 1.02us 4mb |---------L0.124---------| " - - "L0.125[50,356] 1.02us 5mb|----------L0.125-----------| " - - "L0.126[357,629] 1.02us 5mb |--------L0.126---------| " - - "L0.127[76,356] 1.02us 3mb |---------L0.127---------| " - - "L0.128[357,670] 1.02us 4mb |----------L0.128-----------| " - - "L0.129[671,932] 1.02us 3mb |--------L0.129--------| " - - "L0.130[42,356] 1.02us 3mb|----------L0.130-----------| " - - "L0.131[357,670] 1.02us 3mb |----------L0.131-----------| " - - "L0.132[671,986] 1.02us 3mb |-----------L0.132-----------| " - - "L0.133[173,356] 1.03us 2mb |----L0.133-----| " - - "L0.134[357,670] 1.03us 4mb |----------L0.134-----------| " - - "L0.135[671,950] 1.03us 4mb |---------L0.135---------| " - - "L0.136[50,356] 1.03us 5mb|----------L0.136-----------| " - - "L0.137[357,629] 1.03us 5mb |--------L0.137---------| " - - "L0.138[76,356] 1.03us 3mb |---------L0.138---------| " - - "L0.139[357,670] 1.03us 4mb |----------L0.139-----------| " - - "L0.140[671,932] 1.03us 3mb |--------L0.140--------| " - - "L0.141[42,356] 1.03us 3mb|----------L0.141-----------| " - - "L0.142[357,670] 1.03us 3mb |----------L0.142-----------| " - - "L0.143[671,986] 1.03us 3mb |-----------L0.143-----------| " - - "**** 3 Output Files (parquet_file_id not yet assigned), 300mb total:" - - "L1 " - - "L1.?[42,357] 1.03us 100mb|------------L1.?------------| " - - "L1.?[358,672] 1.03us 100mb |-----------L1.?------------| " - - "L1.?[673,986] 1.03us 100mb |-----------L1.?------------| " - - "Committing partition 1:" - - " Soft Deleting 83 files: L0.61, L0.62, L0.63, L0.64, L0.65, L0.66, L0.67, L0.68, L0.69, L0.70, L0.71, L0.72, L0.73, L0.74, L0.75, L0.76, L0.77, L0.78, L0.79, L0.80, L0.81, L0.82, L0.83, L0.84, L0.85, L0.86, L0.87, L0.88, L0.89, L0.90, L0.91, L0.92, L0.93, L0.94, L0.95, L0.96, L0.97, L0.98, L0.99, L0.100, L0.101, L0.102, L0.103, L0.104, L0.105, L0.106, L0.107, L0.108, L0.109, L0.110, L0.111, L0.112, L0.113, L0.114, L0.115, L0.116, L0.117, L0.118, L0.119, L0.120, L0.121, L0.122, L0.123, L0.124, L0.125, L0.126, L0.127, L0.128, L0.129, L0.130, L0.131, L0.132, L0.133, L0.134, L0.135, L0.136, L0.137, L0.138, L0.139, L0.140, L0.141, L0.142, L0.143" - - " Creating 3 files" - - "**** Simulation run 51, type=split(ReduceOverlap)(split_times=[672]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.146[671,950] 1.03us |-----------------------------------------L0.146-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[671,672] 1.03us 13kb|L0.?| " - - "L0.?[673,950] 1.03us 4mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 52, type=split(ReduceOverlap)(split_times=[357]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.145[357,670] 1.03us |-----------------------------------------L0.145-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,357] 1.03us 0b |L0.?| " - - "L0.?[358,670] 1.03us 4mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 53, type=split(ReduceOverlap)(split_times=[357]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.148[357,629] 1.03us |-----------------------------------------L0.148-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[357,357] 1.03us 0b |L0.?| " - - "L0.?[358,629] 1.03us 5mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 54, type=split(ReduceOverlap)(split_times=[672]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.151[671,932] 1.03us |-----------------------------------------L0.151-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[671,672] 1.03us 12kb|L0.?| " - - "L0.?[673,932] 1.03us 3mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 55, type=split(ReduceOverlap)(split_times=[357]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.150[357,670] 1.03us |-----------------------------------------L0.150-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,357] 1.03us 0b |L0.?| " - - "L0.?[358,670] 1.03us 4mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 56, type=split(ReduceOverlap)(split_times=[672]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.154[671,986] 1.03us |-----------------------------------------L0.154-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[671,672] 1.03us 11kb|L0.?| " - - "L0.?[673,986] 1.03us 3mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 57, type=split(ReduceOverlap)(split_times=[357]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.153[357,670] 1.03us |-----------------------------------------L0.153-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,357] 1.03us 0b |L0.?| " - - "L0.?[358,670] 1.03us 3mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 58, type=split(ReduceOverlap)(split_times=[672]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.157[671,950] 1.03us |-----------------------------------------L0.157-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[671,672] 1.03us 13kb|L0.?| " - - "L0.?[673,950] 1.03us 4mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 59, type=split(ReduceOverlap)(split_times=[357]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.156[357,670] 1.03us |-----------------------------------------L0.156-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,357] 1.03us 0b |L0.?| " - - "L0.?[358,670] 1.03us 4mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 60, type=split(ReduceOverlap)(split_times=[357]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.159[357,629] 1.03us |-----------------------------------------L0.159-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[357,357] 1.03us 0b |L0.?| " - - "L0.?[358,629] 1.03us 5mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 61, type=split(ReduceOverlap)(split_times=[672]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.162[671,932] 1.04us |-----------------------------------------L0.162-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[671,672] 1.04us 12kb|L0.?| " - - "L0.?[673,932] 1.04us 3mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 62, type=split(ReduceOverlap)(split_times=[357]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.161[357,670] 1.04us |-----------------------------------------L0.161-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,357] 1.04us 0b |L0.?| " - - "L0.?[358,670] 1.04us 4mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 63, type=split(ReduceOverlap)(split_times=[672]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.165[671,986] 1.04us |-----------------------------------------L0.165-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[671,672] 1.04us 11kb|L0.?| " - - "L0.?[673,986] 1.04us 3mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 64, type=split(ReduceOverlap)(split_times=[357]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.164[357,670] 1.04us |-----------------------------------------L0.164-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,357] 1.04us 0b |L0.?| " - - "L0.?[358,670] 1.04us 3mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 65, type=split(ReduceOverlap)(split_times=[672]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.168[671,950] 1.04us |-----------------------------------------L0.168-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[671,672] 1.04us 13kb|L0.?| " - - "L0.?[673,950] 1.04us 4mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 66, type=split(ReduceOverlap)(split_times=[357]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.167[357,670] 1.04us |-----------------------------------------L0.167-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,357] 1.04us 0b |L0.?| " - - "L0.?[358,670] 1.04us 4mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 67, type=split(ReduceOverlap)(split_times=[357]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.170[357,629] 1.04us |-----------------------------------------L0.170-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[357,357] 1.04us 0b |L0.?| " - - "L0.?[358,629] 1.04us 5mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 68, type=split(ReduceOverlap)(split_times=[672]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.173[671,932] 1.04us |-----------------------------------------L0.173-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[671,672] 1.04us 12kb|L0.?| " - - "L0.?[673,932] 1.04us 3mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 69, type=split(ReduceOverlap)(split_times=[357]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.172[357,670] 1.04us |-----------------------------------------L0.172-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,357] 1.04us 0b |L0.?| " - - "L0.?[358,670] 1.04us 4mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 70, type=split(ReduceOverlap)(split_times=[672]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.176[671,986] 1.04us |-----------------------------------------L0.176-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[671,672] 1.04us 11kb|L0.?| " - - "L0.?[673,986] 1.04us 3mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 71, type=split(ReduceOverlap)(split_times=[357]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.175[357,670] 1.04us |-----------------------------------------L0.175-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,357] 1.04us 0b |L0.?| " - - "L0.?[358,670] 1.04us 3mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 72, type=split(ReduceOverlap)(split_times=[672]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.179[671,950] 1.04us |-----------------------------------------L0.179-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[671,672] 1.04us 13kb|L0.?| " - - "L0.?[673,950] 1.04us 4mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 73, type=split(ReduceOverlap)(split_times=[357]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.178[357,670] 1.04us |-----------------------------------------L0.178-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,357] 1.04us 0b |L0.?| " - - "L0.?[358,670] 1.04us 4mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 74, type=split(ReduceOverlap)(split_times=[357]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.181[357,629] 1.04us |-----------------------------------------L0.181-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[357,357] 1.04us 0b |L0.?| " - - "L0.?[358,629] 1.04us 5mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 75, type=split(ReduceOverlap)(split_times=[672]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.184[671,932] 1.04us |-----------------------------------------L0.184-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[671,672] 1.04us 12kb|L0.?| " - - "L0.?[673,932] 1.04us 3mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 76, type=split(ReduceOverlap)(split_times=[357]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.183[357,670] 1.04us |-----------------------------------------L0.183-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,357] 1.04us 0b |L0.?| " - - "L0.?[358,670] 1.04us 4mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 77, type=split(ReduceOverlap)(split_times=[672]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.187[671,986] 1.05us |-----------------------------------------L0.187-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[671,672] 1.05us 11kb|L0.?| " - - "L0.?[673,986] 1.05us 3mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 78, type=split(ReduceOverlap)(split_times=[357]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.186[357,670] 1.05us |-----------------------------------------L0.186-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,357] 1.05us 0b |L0.?| " - - "L0.?[358,670] 1.05us 3mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 79, type=split(ReduceOverlap)(split_times=[672]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.190[671,950] 1.05us |-----------------------------------------L0.190-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[671,672] 1.05us 13kb|L0.?| " - - "L0.?[673,950] 1.05us 4mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 80, type=split(ReduceOverlap)(split_times=[357]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.189[357,670] 1.05us |-----------------------------------------L0.189-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,357] 1.05us 0b |L0.?| " - - "L0.?[358,670] 1.05us 4mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 81, type=split(ReduceOverlap)(split_times=[357]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.192[357,629] 1.05us |-----------------------------------------L0.192-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[357,357] 1.05us 0b |L0.?| " - - "L0.?[358,629] 1.05us 5mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 82, type=split(ReduceOverlap)(split_times=[672]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.195[671,932] 1.05us |-----------------------------------------L0.195-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[671,672] 1.05us 12kb|L0.?| " - - "L0.?[673,932] 1.05us 3mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 83, type=split(ReduceOverlap)(split_times=[357]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.194[357,670] 1.05us |-----------------------------------------L0.194-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[357,357] 1.05us 0b |L0.?| " - - "L0.?[358,670] 1.05us 4mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 84, type=split(ReduceOverlap)(split_times=[672]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.198[671,986] 1.05us |-----------------------------------------L0.198-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[671,672] 1.05us 11kb|L0.?| " - - "L0.?[673,986] 1.05us 3mb |-----------------------------------------L0.?------------------------------------------| " - - "**** Simulation run 85, type=split(ReduceOverlap)(split_times=[357]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.197[357,670] 1.05us |-----------------------------------------L0.197-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[357,357] 1.05us 0b |L0.?| " - - "L0.?[358,670] 1.05us 3mb |-----------------------------------------L0.?------------------------------------------| " - - "Committing partition 1:" - - " Soft Deleting 35 files: L0.145, L0.146, L0.148, L0.150, L0.151, L0.153, L0.154, L0.156, L0.157, L0.159, L0.161, L0.162, L0.164, L0.165, L0.167, L0.168, L0.170, L0.172, L0.173, L0.175, L0.176, L0.178, L0.179, L0.181, L0.183, L0.184, L0.186, L0.187, L0.189, L0.190, L0.192, L0.194, L0.195, L0.197, L0.198" - - " Creating 70 files" - - "**** Simulation run 86, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[348, 654]). 6 Input Files, 206mb total:" - - "L0 " - - "L0.144[173,356] 1.03us 2mb |---------L0.144---------| " - - "L0.204[357,357] 1.03us 0b |L0.204| " - - "L0.205[358,670] 1.03us 4mb |------------------L0.205------------------| " - - "L0.202[671,672] 1.03us 13kb |L0.202|" - - "L1 " - - "L1.199[42,357] 1.03us 100mb|------------------L1.199-------------------| " - - "L1.200[358,672] 1.03us 100mb |------------------L1.200------------------| " - - "**** 3 Output Files (parquet_file_id not yet assigned), 206mb total:" - - "L1 " - - "L1.?[42,348] 1.03us 100mb|------------------L1.?-------------------| " - - "L1.?[349,654] 1.03us 100mb |------------------L1.?-------------------| " - - "L1.?[655,672] 1.03us 6mb |L1.?|" - - "Committing partition 1:" - - " Soft Deleting 6 files: L0.144, L1.199, L1.200, L0.202, L0.204, L0.205" - - " Creating 3 files" - - "**** Simulation run 87, type=split(ReduceOverlap)(split_times=[348]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.147[50,356] 1.03us |-----------------------------------------L0.147-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,348] 1.03us 5mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[349,356] 1.03us 141kb |L0.?|" - - "**** Simulation run 88, type=split(ReduceOverlap)(split_times=[654]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.211[358,670] 1.03us |-----------------------------------------L0.211-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[358,654] 1.03us 3mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[655,670] 1.03us 192kb |L0.?|" - - "**** Simulation run 89, type=split(ReduceOverlap)(split_times=[348]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.149[76,356] 1.03us |-----------------------------------------L0.149-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,348] 1.03us 3mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[349,356] 1.03us 96kb |L0.?|" - - "**** Simulation run 90, type=split(ReduceOverlap)(split_times=[654]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.215[358,670] 1.03us |-----------------------------------------L0.215-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,654] 1.03us 3mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[655,670] 1.03us 174kb |L0.?|" - - "**** Simulation run 91, type=split(ReduceOverlap)(split_times=[348]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.152[42,356] 1.03us |-----------------------------------------L0.152-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,348] 1.03us 3mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[349,356] 1.03us 87kb |L0.?|" - - "**** Simulation run 92, type=split(ReduceOverlap)(split_times=[654]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.219[358,670] 1.03us |-----------------------------------------L0.219-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[358,654] 1.03us 4mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[655,670] 1.03us 212kb |L0.?|" - - "**** Simulation run 93, type=split(ReduceOverlap)(split_times=[348]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.155[173,356] 1.03us |-----------------------------------------L0.155-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,348] 1.03us 2mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[349,356] 1.03us 105kb |L0.?|" - - "**** Simulation run 94, type=split(ReduceOverlap)(split_times=[348]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.158[50,356] 1.03us |-----------------------------------------L0.158-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,348] 1.03us 5mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[349,356] 1.03us 141kb |L0.?|" - - "**** Simulation run 95, type=split(ReduceOverlap)(split_times=[654]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.225[358,670] 1.04us |-----------------------------------------L0.225-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[358,654] 1.04us 3mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[655,670] 1.04us 192kb |L0.?|" - - "**** Simulation run 96, type=split(ReduceOverlap)(split_times=[348]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.160[76,356] 1.04us |-----------------------------------------L0.160-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,348] 1.04us 3mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[349,356] 1.04us 96kb |L0.?|" - - "**** Simulation run 97, type=split(ReduceOverlap)(split_times=[654]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.229[358,670] 1.04us |-----------------------------------------L0.229-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,654] 1.04us 3mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[655,670] 1.04us 174kb |L0.?|" - - "**** Simulation run 98, type=split(ReduceOverlap)(split_times=[348]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.163[42,356] 1.04us |-----------------------------------------L0.163-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,348] 1.04us 3mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[349,356] 1.04us 87kb |L0.?|" - - "**** Simulation run 99, type=split(ReduceOverlap)(split_times=[654]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.233[358,670] 1.04us |-----------------------------------------L0.233-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[358,654] 1.04us 4mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[655,670] 1.04us 212kb |L0.?|" - - "**** Simulation run 100, type=split(ReduceOverlap)(split_times=[348]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.166[173,356] 1.04us |-----------------------------------------L0.166-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,348] 1.04us 2mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[349,356] 1.04us 105kb |L0.?|" - - "**** Simulation run 101, type=split(ReduceOverlap)(split_times=[348]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.169[50,356] 1.04us |-----------------------------------------L0.169-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,348] 1.04us 5mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[349,356] 1.04us 141kb |L0.?|" - - "**** Simulation run 102, type=split(ReduceOverlap)(split_times=[654]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.239[358,670] 1.04us |-----------------------------------------L0.239-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[358,654] 1.04us 3mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[655,670] 1.04us 192kb |L0.?|" - - "**** Simulation run 103, type=split(ReduceOverlap)(split_times=[348]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.171[76,356] 1.04us |-----------------------------------------L0.171-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,348] 1.04us 3mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[349,356] 1.04us 96kb |L0.?|" - - "**** Simulation run 104, type=split(ReduceOverlap)(split_times=[654]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.243[358,670] 1.04us |-----------------------------------------L0.243-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,654] 1.04us 3mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[655,670] 1.04us 174kb |L0.?|" - - "**** Simulation run 105, type=split(ReduceOverlap)(split_times=[348]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.174[42,356] 1.04us |-----------------------------------------L0.174-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,348] 1.04us 3mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[349,356] 1.04us 87kb |L0.?|" - - "**** Simulation run 106, type=split(ReduceOverlap)(split_times=[654]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.247[358,670] 1.04us |-----------------------------------------L0.247-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[358,654] 1.04us 4mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[655,670] 1.04us 212kb |L0.?|" - - "**** Simulation run 107, type=split(ReduceOverlap)(split_times=[348]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.177[173,356] 1.04us |-----------------------------------------L0.177-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,348] 1.04us 2mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[349,356] 1.04us 105kb |L0.?|" - - "**** Simulation run 108, type=split(ReduceOverlap)(split_times=[348]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.180[50,356] 1.04us |-----------------------------------------L0.180-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,348] 1.04us 5mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[349,356] 1.04us 141kb |L0.?|" - - "**** Simulation run 109, type=split(ReduceOverlap)(split_times=[654]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.253[358,670] 1.04us |-----------------------------------------L0.253-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[358,654] 1.04us 3mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[655,670] 1.04us 192kb |L0.?|" - - "**** Simulation run 110, type=split(ReduceOverlap)(split_times=[348]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.182[76,356] 1.04us |-----------------------------------------L0.182-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,348] 1.04us 3mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[349,356] 1.04us 96kb |L0.?|" - - "**** Simulation run 111, type=split(ReduceOverlap)(split_times=[654]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.257[358,670] 1.05us |-----------------------------------------L0.257-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,654] 1.05us 3mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[655,670] 1.05us 174kb |L0.?|" - - "**** Simulation run 112, type=split(ReduceOverlap)(split_times=[348]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.185[42,356] 1.05us |-----------------------------------------L0.185-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,348] 1.05us 3mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[349,356] 1.05us 87kb |L0.?|" - - "**** Simulation run 113, type=split(ReduceOverlap)(split_times=[654]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.261[358,670] 1.05us |-----------------------------------------L0.261-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[358,654] 1.05us 4mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[655,670] 1.05us 212kb |L0.?|" - - "**** Simulation run 114, type=split(ReduceOverlap)(split_times=[348]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.188[173,356] 1.05us |-----------------------------------------L0.188-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,348] 1.05us 2mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[349,356] 1.05us 105kb |L0.?|" - - "**** Simulation run 115, type=split(ReduceOverlap)(split_times=[348]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.191[50,356] 1.05us |-----------------------------------------L0.191-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,348] 1.05us 5mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[349,356] 1.05us 141kb |L0.?|" - - "**** Simulation run 116, type=split(ReduceOverlap)(split_times=[654]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.267[358,670] 1.05us |-----------------------------------------L0.267-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[358,654] 1.05us 3mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[655,670] 1.05us 192kb |L0.?|" - - "**** Simulation run 117, type=split(ReduceOverlap)(split_times=[348]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.193[76,356] 1.05us |-----------------------------------------L0.193-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,348] 1.05us 3mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[349,356] 1.05us 96kb |L0.?|" - - "**** Simulation run 118, type=split(ReduceOverlap)(split_times=[654]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.271[358,670] 1.05us |-----------------------------------------L0.271-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,654] 1.05us 3mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[655,670] 1.05us 174kb |L0.?|" - - "**** Simulation run 119, type=split(ReduceOverlap)(split_times=[348]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.196[42,356] 1.05us |-----------------------------------------L0.196-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,348] 1.05us 3mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[349,356] 1.05us 87kb |L0.?|" - - "Committing partition 1:" - - " Soft Deleting 33 files: L0.147, L0.149, L0.152, L0.155, L0.158, L0.160, L0.163, L0.166, L0.169, L0.171, L0.174, L0.177, L0.180, L0.182, L0.185, L0.188, L0.191, L0.193, L0.196, L0.211, L0.215, L0.219, L0.225, L0.229, L0.233, L0.239, L0.243, L0.247, L0.253, L0.257, L0.261, L0.267, L0.271" - - " Creating 66 files" - - "**** Simulation run 120, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[923]). 2 Input Files, 104mb total:" - - "L0 " - - "L0.203[673,950] 1.03us 4mb|-----------------------------------L0.203------------------------------------| " - - "L1 " - - "L1.201[673,986] 1.03us 100mb|-----------------------------------------L1.201-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 104mb total:" - - "L1 " - - "L1.?[673,923] 1.03us 83mb|--------------------------------L1.?---------------------------------| " - - "L1.?[924,986] 1.03us 21mb |-----L1.?------| " - - "Committing partition 1:" - - " Soft Deleting 2 files: L1.201, L0.203" - - " Creating 2 files" - - "**** Simulation run 121, type=split(ReduceOverlap)(split_times=[923]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.209[673,932] 1.03us |-----------------------------------------L0.209-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[673,923] 1.03us 3mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[924,932] 1.03us 109kb |L0.?|" - - "**** Simulation run 122, type=split(ReduceOverlap)(split_times=[923]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.213[673,986] 1.03us |-----------------------------------------L0.213-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[673,923] 1.03us 3mb |--------------------------------L0.?---------------------------------| " - - "L0.?[924,986] 1.03us 690kb |-----L0.?------| " - - "**** Simulation run 123, type=split(ReduceOverlap)(split_times=[923]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.217[673,950] 1.03us |-----------------------------------------L0.217-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[673,923] 1.03us 3mb |-------------------------------------L0.?--------------------------------------| " - - "L0.?[924,950] 1.03us 360kb |-L0.?-| " - - "**** Simulation run 124, type=split(ReduceOverlap)(split_times=[923]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.223[673,932] 1.04us |-----------------------------------------L0.223-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[673,923] 1.04us 3mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[924,932] 1.04us 109kb |L0.?|" - - "**** Simulation run 125, type=split(ReduceOverlap)(split_times=[923]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.227[673,986] 1.04us |-----------------------------------------L0.227-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[673,923] 1.04us 3mb |--------------------------------L0.?---------------------------------| " - - "L0.?[924,986] 1.04us 690kb |-----L0.?------| " - - "**** Simulation run 126, type=split(ReduceOverlap)(split_times=[923]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.231[673,950] 1.04us |-----------------------------------------L0.231-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[673,923] 1.04us 3mb |-------------------------------------L0.?--------------------------------------| " - - "L0.?[924,950] 1.04us 360kb |-L0.?-| " - - "**** Simulation run 127, type=split(ReduceOverlap)(split_times=[923]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.237[673,932] 1.04us |-----------------------------------------L0.237-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[673,923] 1.04us 3mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[924,932] 1.04us 109kb |L0.?|" - - "**** Simulation run 128, type=split(ReduceOverlap)(split_times=[923]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.241[673,986] 1.04us |-----------------------------------------L0.241-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[673,923] 1.04us 3mb |--------------------------------L0.?---------------------------------| " - - "L0.?[924,986] 1.04us 690kb |-----L0.?------| " - - "**** Simulation run 129, type=split(ReduceOverlap)(split_times=[923]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.245[673,950] 1.04us |-----------------------------------------L0.245-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[673,923] 1.04us 3mb |-------------------------------------L0.?--------------------------------------| " - - "L0.?[924,950] 1.04us 360kb |-L0.?-| " - - "**** Simulation run 130, type=split(ReduceOverlap)(split_times=[923]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.251[673,932] 1.04us |-----------------------------------------L0.251-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[673,923] 1.04us 3mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[924,932] 1.04us 109kb |L0.?|" - - "**** Simulation run 131, type=split(ReduceOverlap)(split_times=[923]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.255[673,986] 1.05us |-----------------------------------------L0.255-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[673,923] 1.05us 3mb |--------------------------------L0.?---------------------------------| " - - "L0.?[924,986] 1.05us 690kb |-----L0.?------| " - - "**** Simulation run 132, type=split(ReduceOverlap)(split_times=[923]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.259[673,950] 1.05us |-----------------------------------------L0.259-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[673,923] 1.05us 3mb |-------------------------------------L0.?--------------------------------------| " - - "L0.?[924,950] 1.05us 360kb |-L0.?-| " - - "**** Simulation run 133, type=split(ReduceOverlap)(split_times=[923]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.265[673,932] 1.05us |-----------------------------------------L0.265-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[673,923] 1.05us 3mb |----------------------------------------L0.?----------------------------------------| " - - "L0.?[924,932] 1.05us 109kb |L0.?|" - - "**** Simulation run 134, type=split(ReduceOverlap)(split_times=[923]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.269[673,986] 1.05us |-----------------------------------------L0.269-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[673,923] 1.05us 3mb |--------------------------------L0.?---------------------------------| " - - "L0.?[924,986] 1.05us 690kb |-----L0.?------| " - - "Committing partition 1:" - - " Soft Deleting 14 files: L0.209, L0.213, L0.217, L0.223, L0.227, L0.231, L0.237, L0.241, L0.245, L0.251, L0.255, L0.259, L0.265, L0.269" - - " Creating 28 files" - - "**** Simulation run 135, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[325, 608]). 13 Input Files, 223mb total:" - - "L0 " - - "L0.275[50,348] 1.03us 5mb |-----------------L0.275-----------------| " - - "L0.276[349,356] 1.03us 141kb |L0.276| " - - "L0.206[357,357] 1.03us 0b |L0.206| " - - "L0.207[358,629] 1.03us 5mb |---------------L0.207---------------| " - - "L0.279[76,348] 1.03us 3mb |---------------L0.279---------------| " - - "L0.280[349,356] 1.03us 96kb |L0.280| " - - "L0.210[357,357] 1.03us 0b |L0.210| " - - "L0.277[358,654] 1.03us 3mb |-----------------L0.277-----------------| " - - "L0.278[655,670] 1.03us 192kb |L0.278|" - - "L0.208[671,672] 1.03us 12kb |L0.208|" - - "L1 " - - "L1.272[42,348] 1.03us 100mb|-----------------L1.272------------------| " - - "L1.273[349,654] 1.03us 100mb |-----------------L1.273------------------| " - - "L1.274[655,672] 1.03us 6mb |L1.274|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 223mb total:" - - "L1 " - - "L1.?[42,325] 1.03us 100mb|-----------------L1.?-----------------| " - - "L1.?[326,608] 1.03us 100mb |-----------------L1.?-----------------| " - - "L1.?[609,672] 1.03us 23mb |-L1.?--|" - - "Committing partition 1:" - - " Soft Deleting 13 files: L0.206, L0.207, L0.208, L0.210, L1.272, L1.273, L1.274, L0.275, L0.276, L0.277, L0.278, L0.279, L0.280" - - " Creating 3 files" - - "**** Simulation run 136, type=split(ReduceOverlap)(split_times=[608]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.281[358,654] 1.03us |-----------------------------------------L0.281-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,608] 1.03us 3mb |-----------------------------------L0.?-----------------------------------| " - - "L0.?[609,654] 1.03us 501kb |---L0.?----| " - - "**** Simulation run 137, type=split(ReduceOverlap)(split_times=[325]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.283[42,348] 1.03us |-----------------------------------------L0.283-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,325] 1.03us 3mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[326,348] 1.03us 249kb |L0.?| " - - "**** Simulation run 138, type=split(ReduceOverlap)(split_times=[608]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.285[358,654] 1.03us |-----------------------------------------L0.285-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[358,608] 1.03us 3mb |-----------------------------------L0.?-----------------------------------| " - - "L0.?[609,654] 1.03us 608kb |---L0.?----| " - - "**** Simulation run 139, type=split(ReduceOverlap)(split_times=[325]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.287[173,348] 1.03us |-----------------------------------------L0.287-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,325] 1.03us 2mb |------------------------------------L0.?------------------------------------| " - - "L0.?[326,348] 1.03us 303kb |--L0.?---| " - - "**** Simulation run 140, type=split(ReduceOverlap)(split_times=[608]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.221[358,629] 1.03us |-----------------------------------------L0.221-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[358,608] 1.03us 4mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[609,629] 1.03us 374kb |L0.?| " - - "**** Simulation run 141, type=split(ReduceOverlap)(split_times=[325]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.289[50,348] 1.03us |-----------------------------------------L0.289-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,325] 1.03us 5mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[326,348] 1.03us 407kb |L0.?| " - - "**** Simulation run 142, type=split(ReduceOverlap)(split_times=[608]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.291[358,654] 1.04us |-----------------------------------------L0.291-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,608] 1.04us 3mb |-----------------------------------L0.?-----------------------------------| " - - "L0.?[609,654] 1.04us 552kb |---L0.?----| " - - "**** Simulation run 143, type=split(ReduceOverlap)(split_times=[325]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.297[42,348] 1.04us |-----------------------------------------L0.297-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,325] 1.04us 3mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[326,348] 1.04us 249kb |L0.?| " - - "**** Simulation run 144, type=split(ReduceOverlap)(split_times=[608]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.299[358,654] 1.04us |-----------------------------------------L0.299-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[358,608] 1.04us 3mb |-----------------------------------L0.?-----------------------------------| " - - "L0.?[609,654] 1.04us 608kb |---L0.?----| " - - "**** Simulation run 145, type=split(ReduceOverlap)(split_times=[325]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.301[173,348] 1.04us |-----------------------------------------L0.301-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,325] 1.04us 2mb |------------------------------------L0.?------------------------------------| " - - "L0.?[326,348] 1.04us 303kb |--L0.?---| " - - "**** Simulation run 146, type=split(ReduceOverlap)(split_times=[608]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.235[358,629] 1.04us |-----------------------------------------L0.235-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[358,608] 1.04us 4mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[609,629] 1.04us 374kb |L0.?| " - - "**** Simulation run 147, type=split(ReduceOverlap)(split_times=[325]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.303[50,348] 1.04us |-----------------------------------------L0.303-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,325] 1.04us 5mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[326,348] 1.04us 407kb |L0.?| " - - "**** Simulation run 148, type=split(ReduceOverlap)(split_times=[608]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.305[358,654] 1.04us |-----------------------------------------L0.305-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,608] 1.04us 3mb |-----------------------------------L0.?-----------------------------------| " - - "L0.?[609,654] 1.04us 552kb |---L0.?----| " - - "**** Simulation run 149, type=split(ReduceOverlap)(split_times=[325]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.307[76,348] 1.04us |-----------------------------------------L0.307-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,325] 1.04us 3mb |--------------------------------------L0.?--------------------------------------| " - - "L0.?[326,348] 1.04us 275kb |L0.?-| " - - "**** Simulation run 150, type=split(ReduceOverlap)(split_times=[608]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.309[358,654] 1.04us |-----------------------------------------L0.309-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,608] 1.04us 3mb |-----------------------------------L0.?-----------------------------------| " - - "L0.?[609,654] 1.04us 501kb |---L0.?----| " - - "**** Simulation run 151, type=split(ReduceOverlap)(split_times=[325]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.293[76,348] 1.04us |-----------------------------------------L0.293-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,325] 1.04us 3mb |--------------------------------------L0.?--------------------------------------| " - - "L0.?[326,348] 1.04us 275kb |L0.?-| " - - "**** Simulation run 152, type=split(ReduceOverlap)(split_times=[608]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.295[358,654] 1.04us |-----------------------------------------L0.295-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,608] 1.04us 3mb |-----------------------------------L0.?-----------------------------------| " - - "L0.?[609,654] 1.04us 501kb |---L0.?----| " - - "**** Simulation run 153, type=split(ReduceOverlap)(split_times=[325]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.311[42,348] 1.04us |-----------------------------------------L0.311-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,325] 1.04us 3mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[326,348] 1.04us 249kb |L0.?| " - - "**** Simulation run 154, type=split(ReduceOverlap)(split_times=[608]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.313[358,654] 1.04us |-----------------------------------------L0.313-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[358,608] 1.04us 3mb |-----------------------------------L0.?-----------------------------------| " - - "L0.?[609,654] 1.04us 608kb |---L0.?----| " - - "**** Simulation run 155, type=split(ReduceOverlap)(split_times=[325]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.315[173,348] 1.04us |-----------------------------------------L0.315-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,325] 1.04us 2mb |------------------------------------L0.?------------------------------------| " - - "L0.?[326,348] 1.04us 303kb |--L0.?---| " - - "**** Simulation run 156, type=split(ReduceOverlap)(split_times=[608]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.249[358,629] 1.04us |-----------------------------------------L0.249-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[358,608] 1.04us 4mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[609,629] 1.04us 374kb |L0.?| " - - "**** Simulation run 157, type=split(ReduceOverlap)(split_times=[325]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.317[50,348] 1.04us |-----------------------------------------L0.317-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,325] 1.04us 5mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[326,348] 1.04us 407kb |L0.?| " - - "**** Simulation run 158, type=split(ReduceOverlap)(split_times=[608]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.319[358,654] 1.04us |-----------------------------------------L0.319-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,608] 1.04us 3mb |-----------------------------------L0.?-----------------------------------| " - - "L0.?[609,654] 1.04us 552kb |---L0.?----| " - - "**** Simulation run 159, type=split(ReduceOverlap)(split_times=[325]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.321[76,348] 1.04us |-----------------------------------------L0.321-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,325] 1.04us 3mb |--------------------------------------L0.?--------------------------------------| " - - "L0.?[326,348] 1.04us 275kb |L0.?-| " - - "**** Simulation run 160, type=split(ReduceOverlap)(split_times=[608]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.323[358,654] 1.05us |-----------------------------------------L0.323-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,608] 1.05us 3mb |-----------------------------------L0.?-----------------------------------| " - - "L0.?[609,654] 1.05us 501kb |---L0.?----| " - - "**** Simulation run 161, type=split(ReduceOverlap)(split_times=[325]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.325[42,348] 1.05us |-----------------------------------------L0.325-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,325] 1.05us 3mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[326,348] 1.05us 249kb |L0.?| " - - "**** Simulation run 162, type=split(ReduceOverlap)(split_times=[608]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.327[358,654] 1.05us |-----------------------------------------L0.327-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[358,608] 1.05us 3mb |-----------------------------------L0.?-----------------------------------| " - - "L0.?[609,654] 1.05us 608kb |---L0.?----| " - - "**** Simulation run 163, type=split(ReduceOverlap)(split_times=[325]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.329[173,348] 1.05us |-----------------------------------------L0.329-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,325] 1.05us 2mb |------------------------------------L0.?------------------------------------| " - - "L0.?[326,348] 1.05us 303kb |--L0.?---| " - - "**** Simulation run 164, type=split(ReduceOverlap)(split_times=[608]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.263[358,629] 1.05us |-----------------------------------------L0.263-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[358,608] 1.05us 4mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[609,629] 1.05us 374kb |L0.?| " - - "**** Simulation run 165, type=split(ReduceOverlap)(split_times=[325]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.331[50,348] 1.05us |-----------------------------------------L0.331-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,325] 1.05us 5mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[326,348] 1.05us 407kb |L0.?| " - - "**** Simulation run 166, type=split(ReduceOverlap)(split_times=[608]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.333[358,654] 1.05us |-----------------------------------------L0.333-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,608] 1.05us 3mb |-----------------------------------L0.?-----------------------------------| " - - "L0.?[609,654] 1.05us 552kb |---L0.?----| " - - "**** Simulation run 167, type=split(ReduceOverlap)(split_times=[325]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.335[76,348] 1.05us |-----------------------------------------L0.335-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,325] 1.05us 3mb |--------------------------------------L0.?--------------------------------------| " - - "L0.?[326,348] 1.05us 275kb |L0.?-| " - - "**** Simulation run 168, type=split(ReduceOverlap)(split_times=[608]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.337[358,654] 1.05us |-----------------------------------------L0.337-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,608] 1.05us 3mb |-----------------------------------L0.?-----------------------------------| " - - "L0.?[609,654] 1.05us 501kb |---L0.?----| " - - "**** Simulation run 169, type=split(ReduceOverlap)(split_times=[325]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.339[42,348] 1.05us |-----------------------------------------L0.339-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,325] 1.05us 3mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[326,348] 1.05us 249kb |L0.?| " - - "Committing partition 1:" - - " Soft Deleting 34 files: L0.221, L0.235, L0.249, L0.263, L0.281, L0.283, L0.285, L0.287, L0.289, L0.291, L0.293, L0.295, L0.297, L0.299, L0.301, L0.303, L0.305, L0.307, L0.309, L0.311, L0.313, L0.315, L0.317, L0.319, L0.321, L0.323, L0.325, L0.327, L0.329, L0.331, L0.333, L0.335, L0.337, L0.339" - - " Creating 68 files" - - "**** Simulation run 170, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[923]). 4 Input Files, 107mb total:" - - "L0 " - - "L0.343[673,923] 1.03us 3mb|-------------------------------L0.343--------------------------------| " - - "L0.344[924,932] 1.03us 109kb |L0.344| " - - "L1 " - - "L1.341[673,923] 1.03us 83mb|-------------------------------L1.341--------------------------------| " - - "L1.342[924,986] 1.03us 21mb |----L1.342-----| " - - "**** 2 Output Files (parquet_file_id not yet assigned), 107mb total:" - - "L1 " - - "L1.?[673,923] 1.03us 85mb|--------------------------------L1.?---------------------------------| " - - "L1.?[924,986] 1.03us 21mb |-----L1.?------| " - - "Committing partition 1:" - - " Soft Deleting 4 files: L1.341, L1.342, L0.343, L0.344" - - " Creating 2 files" - - "**** Simulation run 171, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[317, 592]). 11 Input Files, 230mb total:" - - "L0 " - - "L0.376[42,325] 1.03us 3mb|----------------L0.376----------------| " - - "L0.377[326,348] 1.03us 249kb |L0.377| " - - "L0.284[349,356] 1.03us 87kb |L0.284| " - - "L0.214[357,357] 1.03us 0b |L0.214| " - - "L0.374[358,608] 1.03us 3mb |-------------L0.374--------------| " - - "L0.375[609,654] 1.03us 501kb |L0.375| " - - "L0.282[655,670] 1.03us 174kb |L0.282|" - - "L0.212[671,672] 1.03us 11kb |L0.212|" - - "L1 " - - "L1.371[42,325] 1.03us 100mb|----------------L1.371----------------| " - - "L1.372[326,608] 1.03us 100mb |----------------L1.372----------------| " - - "L1.373[609,672] 1.03us 23mb |L1.373-|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 230mb total:" - - "L1 " - - "L1.?[42,317] 1.03us 100mb|----------------L1.?-----------------| " - - "L1.?[318,592] 1.03us 100mb |----------------L1.?-----------------| " - - "L1.?[593,672] 1.03us 30mb |--L1.?---| " - - "Committing partition 1:" - - " Soft Deleting 11 files: L0.212, L0.214, L0.282, L0.284, L1.371, L1.372, L1.373, L0.374, L0.375, L0.376, L0.377" - - " Creating 3 files" - - "**** Simulation run 172, type=split(ReduceOverlap)(split_times=[592]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.378[358,608] 1.03us |-----------------------------------------L0.378-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,592] 1.03us 3mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[593,608] 1.03us 212kb |L0.?|" - - "**** Simulation run 173, type=split(ReduceOverlap)(split_times=[317]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.380[173,325] 1.03us |-----------------------------------------L0.380-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,317] 1.03us 2mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[318,325] 1.03us 105kb |L0.?|" - - "**** Simulation run 174, type=split(ReduceOverlap)(split_times=[592]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.382[358,608] 1.03us |-----------------------------------------L0.382-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[358,592] 1.03us 4mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[593,608] 1.03us 285kb |L0.?|" - - "**** Simulation run 175, type=split(ReduceOverlap)(split_times=[317]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.384[50,325] 1.03us |-----------------------------------------L0.384-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,317] 1.03us 5mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[318,325] 1.03us 141kb |L0.?|" - - "**** Simulation run 176, type=split(ReduceOverlap)(split_times=[592]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.386[358,608] 1.04us |-----------------------------------------L0.386-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,592] 1.04us 3mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[593,608] 1.04us 192kb |L0.?|" - - "**** Simulation run 177, type=split(ReduceOverlap)(split_times=[317]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.404[76,325] 1.04us |-----------------------------------------L0.404-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,317] 1.04us 3mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[318,325] 1.04us 96kb |L0.?|" - - "**** Simulation run 178, type=split(ReduceOverlap)(split_times=[592]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.406[358,608] 1.04us |-----------------------------------------L0.406-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,592] 1.04us 2mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[593,608] 1.04us 174kb |L0.?|" - - "**** Simulation run 179, type=split(ReduceOverlap)(split_times=[317]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.388[42,325] 1.04us |-----------------------------------------L0.388-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,317] 1.04us 3mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[318,325] 1.04us 87kb |L0.?|" - - "**** Simulation run 180, type=split(ReduceOverlap)(split_times=[592]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.390[358,608] 1.04us |-----------------------------------------L0.390-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,592] 1.04us 3mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[593,608] 1.04us 212kb |L0.?|" - - "**** Simulation run 181, type=split(ReduceOverlap)(split_times=[317]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.392[173,325] 1.04us |-----------------------------------------L0.392-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,317] 1.04us 2mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[318,325] 1.04us 105kb |L0.?|" - - "**** Simulation run 182, type=split(ReduceOverlap)(split_times=[592]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.394[358,608] 1.04us |-----------------------------------------L0.394-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[358,592] 1.04us 4mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[593,608] 1.04us 285kb |L0.?|" - - "**** Simulation run 183, type=split(ReduceOverlap)(split_times=[317]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.396[50,325] 1.04us |-----------------------------------------L0.396-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,317] 1.04us 5mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[318,325] 1.04us 141kb |L0.?|" - - "**** Simulation run 184, type=split(ReduceOverlap)(split_times=[592]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.398[358,608] 1.04us |-----------------------------------------L0.398-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,592] 1.04us 3mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[593,608] 1.04us 192kb |L0.?|" - - "**** Simulation run 185, type=split(ReduceOverlap)(split_times=[317]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.400[76,325] 1.04us |-----------------------------------------L0.400-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,317] 1.04us 3mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[318,325] 1.04us 96kb |L0.?|" - - "**** Simulation run 186, type=split(ReduceOverlap)(split_times=[592]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.402[358,608] 1.04us |-----------------------------------------L0.402-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,592] 1.04us 2mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[593,608] 1.04us 174kb |L0.?|" - - "**** Simulation run 187, type=split(ReduceOverlap)(split_times=[317]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.408[42,325] 1.04us |-----------------------------------------L0.408-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,317] 1.04us 3mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[318,325] 1.04us 87kb |L0.?|" - - "**** Simulation run 188, type=split(ReduceOverlap)(split_times=[592]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.410[358,608] 1.04us |-----------------------------------------L0.410-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,592] 1.04us 3mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[593,608] 1.04us 212kb |L0.?|" - - "**** Simulation run 189, type=split(ReduceOverlap)(split_times=[317]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.412[173,325] 1.04us |-----------------------------------------L0.412-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,317] 1.04us 2mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[318,325] 1.04us 105kb |L0.?|" - - "**** Simulation run 190, type=split(ReduceOverlap)(split_times=[592]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.414[358,608] 1.04us |-----------------------------------------L0.414-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[358,592] 1.04us 4mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[593,608] 1.04us 285kb |L0.?|" - - "**** Simulation run 191, type=split(ReduceOverlap)(split_times=[317]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.416[50,325] 1.04us |-----------------------------------------L0.416-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,317] 1.04us 5mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[318,325] 1.04us 141kb |L0.?|" - - "**** Simulation run 192, type=split(ReduceOverlap)(split_times=[592]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.418[358,608] 1.04us |-----------------------------------------L0.418-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,592] 1.04us 3mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[593,608] 1.04us 192kb |L0.?|" - - "**** Simulation run 193, type=split(ReduceOverlap)(split_times=[317]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.420[76,325] 1.04us |-----------------------------------------L0.420-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,317] 1.04us 3mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[318,325] 1.04us 96kb |L0.?|" - - "**** Simulation run 194, type=split(ReduceOverlap)(split_times=[592]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.422[358,608] 1.05us |-----------------------------------------L0.422-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,592] 1.05us 2mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[593,608] 1.05us 174kb |L0.?|" - - "**** Simulation run 195, type=split(ReduceOverlap)(split_times=[317]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.424[42,325] 1.05us |-----------------------------------------L0.424-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,317] 1.05us 3mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[318,325] 1.05us 87kb |L0.?|" - - "**** Simulation run 196, type=split(ReduceOverlap)(split_times=[592]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.426[358,608] 1.05us |-----------------------------------------L0.426-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,592] 1.05us 3mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[593,608] 1.05us 212kb |L0.?|" - - "**** Simulation run 197, type=split(ReduceOverlap)(split_times=[317]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.428[173,325] 1.05us |-----------------------------------------L0.428-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,317] 1.05us 2mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[318,325] 1.05us 105kb |L0.?|" - - "**** Simulation run 198, type=split(ReduceOverlap)(split_times=[592]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.430[358,608] 1.05us |-----------------------------------------L0.430-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[358,592] 1.05us 4mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[593,608] 1.05us 285kb |L0.?|" - - "**** Simulation run 199, type=split(ReduceOverlap)(split_times=[317]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.432[50,325] 1.05us |-----------------------------------------L0.432-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,317] 1.05us 5mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[318,325] 1.05us 141kb |L0.?|" - - "**** Simulation run 200, type=split(ReduceOverlap)(split_times=[592]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.434[358,608] 1.05us |-----------------------------------------L0.434-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,592] 1.05us 3mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[593,608] 1.05us 192kb |L0.?|" - - "**** Simulation run 201, type=split(ReduceOverlap)(split_times=[317]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.436[76,325] 1.05us |-----------------------------------------L0.436-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,317] 1.05us 3mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[318,325] 1.05us 96kb |L0.?|" - - "**** Simulation run 202, type=split(ReduceOverlap)(split_times=[592]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.438[358,608] 1.05us |-----------------------------------------L0.438-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,592] 1.05us 2mb |---------------------------------------L0.?---------------------------------------| " - - "L0.?[593,608] 1.05us 174kb |L0.?|" - - "**** Simulation run 203, type=split(ReduceOverlap)(split_times=[317]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.440[42,325] 1.05us |-----------------------------------------L0.440-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,317] 1.05us 3mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[318,325] 1.05us 87kb |L0.?|" - - "Committing partition 1:" - - " Soft Deleting 32 files: L0.378, L0.380, L0.382, L0.384, L0.386, L0.388, L0.390, L0.392, L0.394, L0.396, L0.398, L0.400, L0.402, L0.404, L0.406, L0.408, L0.410, L0.412, L0.414, L0.416, L0.418, L0.420, L0.422, L0.424, L0.426, L0.428, L0.430, L0.432, L0.434, L0.436, L0.438, L0.440" - - " Creating 64 files" - - "**** Simulation run 204, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[923]). 4 Input Files, 110mb total:" - - "L0 " - - "L0.345[673,923] 1.03us 3mb|-------------------------------L0.345--------------------------------| " - - "L0.346[924,986] 1.03us 690kb |----L0.346-----| " - - "L1 " - - "L1.442[673,923] 1.03us 85mb|-------------------------------L1.442--------------------------------| " - - "L1.443[924,986] 1.03us 21mb |----L1.443-----| " - - "**** 2 Output Files (parquet_file_id not yet assigned), 110mb total:" - - "L1 " - - "L1.?[673,923] 1.03us 88mb|--------------------------------L1.?---------------------------------| " - - "L1.?[924,986] 1.03us 22mb |-----L1.?------| " - - "Committing partition 1:" - - " Soft Deleting 4 files: L0.345, L0.346, L1.442, L1.443" - - " Creating 2 files" - - "**** Simulation run 205, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[309, 576]). 13 Input Files, 236mb total:" - - "L0 " - - "L0.449[173,317] 1.03us 2mb |------L0.449------| " - - "L0.450[318,325] 1.03us 105kb |L0.450| " - - "L0.381[326,348] 1.03us 303kb |L0.381| " - - "L0.288[349,356] 1.03us 105kb |L0.288| " - - "L0.218[357,357] 1.03us 0b |L0.218| " - - "L0.447[358,592] 1.03us 3mb |------------L0.447-------------| " - - "L0.448[593,608] 1.03us 212kb |L0.448| " - - "L0.379[609,654] 1.03us 608kb |L0.379| " - - "L0.286[655,670] 1.03us 212kb |L0.286|" - - "L0.216[671,672] 1.03us 13kb |L0.216|" - - "L1 " - - "L1.444[42,317] 1.03us 100mb|---------------L1.444----------------| " - - "L1.445[318,592] 1.03us 100mb |---------------L1.445----------------| " - - "L1.446[593,672] 1.03us 30mb |-L1.446--| " - - "**** 3 Output Files (parquet_file_id not yet assigned), 236mb total:" - - "L1 " - - "L1.?[42,309] 1.03us 100mb|----------------L1.?----------------| " - - "L1.?[310,576] 1.03us 100mb |----------------L1.?----------------| " - - "L1.?[577,672] 1.03us 36mb |---L1.?----| " - - "Committing partition 1:" - - " Soft Deleting 13 files: L0.216, L0.218, L0.286, L0.288, L0.379, L0.381, L1.444, L1.445, L1.446, L0.447, L0.448, L0.449, L0.450" - - " Creating 3 files" - - "**** Simulation run 206, type=split(ReduceOverlap)(split_times=[576]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.451[358,592] 1.03us |-----------------------------------------L0.451-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[358,576] 1.03us 4mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[577,592] 1.03us 285kb |L0.?|" - - "**** Simulation run 207, type=split(ReduceOverlap)(split_times=[309]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.453[50,317] 1.03us |-----------------------------------------L0.453-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,309] 1.03us 4mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[310,317] 1.03us 141kb |L0.?|" - - "**** Simulation run 208, type=split(ReduceOverlap)(split_times=[576]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.455[358,592] 1.04us |-----------------------------------------L0.455-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,576] 1.04us 3mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[577,592] 1.04us 192kb |L0.?|" - - "**** Simulation run 209, type=split(ReduceOverlap)(split_times=[309]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.457[76,317] 1.04us |-----------------------------------------L0.457-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,309] 1.04us 3mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[310,317] 1.04us 96kb |L0.?|" - - "**** Simulation run 210, type=split(ReduceOverlap)(split_times=[576]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.459[358,592] 1.04us |-----------------------------------------L0.459-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[358,576] 1.04us 2mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[577,592] 1.04us 174kb |L0.?|" - - "**** Simulation run 211, type=split(ReduceOverlap)(split_times=[309]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.461[42,317] 1.04us |-----------------------------------------L0.461-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,309] 1.04us 3mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[310,317] 1.04us 87kb |L0.?|" - - "**** Simulation run 212, type=split(ReduceOverlap)(split_times=[576]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.463[358,592] 1.04us |-----------------------------------------L0.463-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,576] 1.04us 3mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[577,592] 1.04us 212kb |L0.?|" - - "**** Simulation run 213, type=split(ReduceOverlap)(split_times=[309]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.465[173,317] 1.04us |-----------------------------------------L0.465-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,309] 1.04us 2mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[310,317] 1.04us 105kb |L0.?|" - - "**** Simulation run 214, type=split(ReduceOverlap)(split_times=[576]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.467[358,592] 1.04us |-----------------------------------------L0.467-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[358,576] 1.04us 4mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[577,592] 1.04us 285kb |L0.?|" - - "**** Simulation run 215, type=split(ReduceOverlap)(split_times=[309]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.469[50,317] 1.04us |-----------------------------------------L0.469-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,309] 1.04us 4mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[310,317] 1.04us 141kb |L0.?|" - - "**** Simulation run 216, type=split(ReduceOverlap)(split_times=[576]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.471[358,592] 1.04us |-----------------------------------------L0.471-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,576] 1.04us 3mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[577,592] 1.04us 192kb |L0.?|" - - "**** Simulation run 217, type=split(ReduceOverlap)(split_times=[309]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.473[76,317] 1.04us |-----------------------------------------L0.473-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,309] 1.04us 3mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[310,317] 1.04us 96kb |L0.?|" - - "**** Simulation run 218, type=split(ReduceOverlap)(split_times=[576]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.475[358,592] 1.04us |-----------------------------------------L0.475-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[358,576] 1.04us 2mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[577,592] 1.04us 174kb |L0.?|" - - "**** Simulation run 219, type=split(ReduceOverlap)(split_times=[309]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.477[42,317] 1.04us |-----------------------------------------L0.477-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,309] 1.04us 3mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[310,317] 1.04us 87kb |L0.?|" - - "**** Simulation run 220, type=split(ReduceOverlap)(split_times=[576]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.479[358,592] 1.04us |-----------------------------------------L0.479-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,576] 1.04us 3mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[577,592] 1.04us 212kb |L0.?|" - - "**** Simulation run 221, type=split(ReduceOverlap)(split_times=[309]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.481[173,317] 1.04us |-----------------------------------------L0.481-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,309] 1.04us 2mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[310,317] 1.04us 105kb |L0.?|" - - "**** Simulation run 222, type=split(ReduceOverlap)(split_times=[576]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.483[358,592] 1.04us |-----------------------------------------L0.483-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[358,576] 1.04us 4mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[577,592] 1.04us 285kb |L0.?|" - - "**** Simulation run 223, type=split(ReduceOverlap)(split_times=[309]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.485[50,317] 1.04us |-----------------------------------------L0.485-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,309] 1.04us 4mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[310,317] 1.04us 141kb |L0.?|" - - "**** Simulation run 224, type=split(ReduceOverlap)(split_times=[576]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.487[358,592] 1.04us |-----------------------------------------L0.487-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,576] 1.04us 3mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[577,592] 1.04us 192kb |L0.?|" - - "**** Simulation run 225, type=split(ReduceOverlap)(split_times=[309]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.489[76,317] 1.04us |-----------------------------------------L0.489-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,309] 1.04us 3mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[310,317] 1.04us 96kb |L0.?|" - - "**** Simulation run 226, type=split(ReduceOverlap)(split_times=[576]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.491[358,592] 1.05us |-----------------------------------------L0.491-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[358,576] 1.05us 2mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[577,592] 1.05us 174kb |L0.?|" - - "**** Simulation run 227, type=split(ReduceOverlap)(split_times=[309]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.493[42,317] 1.05us |-----------------------------------------L0.493-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,309] 1.05us 3mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[310,317] 1.05us 87kb |L0.?|" - - "**** Simulation run 228, type=split(ReduceOverlap)(split_times=[576]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.495[358,592] 1.05us |-----------------------------------------L0.495-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,576] 1.05us 3mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[577,592] 1.05us 212kb |L0.?|" - - "**** Simulation run 229, type=split(ReduceOverlap)(split_times=[309]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.497[173,317] 1.05us |-----------------------------------------L0.497-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[173,309] 1.05us 2mb |---------------------------------------L0.?----------------------------------------| " - - "L0.?[310,317] 1.05us 105kb |L0.?|" - - "**** Simulation run 230, type=split(ReduceOverlap)(split_times=[576]). 1 Input Files, 4mb total:" - - "L0, all files 4mb " - - "L0.499[358,592] 1.05us |-----------------------------------------L0.499-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" - - "L0 " - - "L0.?[358,576] 1.05us 4mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[577,592] 1.05us 285kb |L0.?|" - - "**** Simulation run 231, type=split(ReduceOverlap)(split_times=[309]). 1 Input Files, 5mb total:" - - "L0, all files 5mb " - - "L0.501[50,317] 1.05us |-----------------------------------------L0.501-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" - - "L0 " - - "L0.?[50,309] 1.05us 4mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[310,317] 1.05us 141kb |L0.?|" - - "**** Simulation run 232, type=split(ReduceOverlap)(split_times=[576]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.503[358,592] 1.05us |-----------------------------------------L0.503-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[358,576] 1.05us 3mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[577,592] 1.05us 192kb |L0.?|" - - "**** Simulation run 233, type=split(ReduceOverlap)(split_times=[309]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.505[76,317] 1.05us |-----------------------------------------L0.505-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[76,309] 1.05us 3mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[310,317] 1.05us 96kb |L0.?|" - - "**** Simulation run 234, type=split(ReduceOverlap)(split_times=[576]). 1 Input Files, 2mb total:" - - "L0, all files 2mb " - - "L0.507[358,592] 1.05us |-----------------------------------------L0.507-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" - - "L0 " - - "L0.?[358,576] 1.05us 2mb |--------------------------------------L0.?---------------------------------------| " - - "L0.?[577,592] 1.05us 174kb |L0.?|" - - "**** Simulation run 235, type=split(ReduceOverlap)(split_times=[309]). 1 Input Files, 3mb total:" - - "L0, all files 3mb " - - "L0.509[42,317] 1.05us |-----------------------------------------L0.509-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" - - "L0 " - - "L0.?[42,309] 1.05us 3mb |----------------------------------------L0.?-----------------------------------------| " - - "L0.?[310,317] 1.05us 87kb |L0.?|" - - "Committing partition 1:" - - " Soft Deleting 30 files: L0.451, L0.453, L0.455, L0.457, L0.459, L0.461, L0.463, L0.465, L0.467, L0.469, L0.471, L0.473, L0.475, L0.477, L0.479, L0.481, L0.483, L0.485, L0.487, L0.489, L0.491, L0.493, L0.495, L0.497, L0.499, L0.501, L0.503, L0.505, L0.507, L0.509" - - " Creating 60 files" - - "**** Simulation run 236, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[657]). 196 Input Files, 154mb total:" - - "L0 " - - "L0.347[673,923] 1.03us 3mb |-------L0.347--------| " - - "L0.348[924,950] 1.03us 360kb |L0.348|" - - "L0.518[50,309] 1.03us 4mb|--------L0.518--------| " - - "L0.519[310,317] 1.03us 141kb |L0.519| " - - "L0.454[318,325] 1.03us 141kb |L0.454| " - - "L0.385[326,348] 1.03us 407kb |L0.385| " - - "L0.290[349,356] 1.03us 141kb |L0.290| " - - "L0.220[357,357] 1.03us 0b |L0.220| " - - "L0.516[358,576] 1.03us 4mb |------L0.516------| " - - "L0.517[577,592] 1.03us 285kb |L0.517| " - - "L0.452[593,608] 1.03us 285kb |L0.452| " - - "L0.383[609,629] 1.03us 374kb |L0.383| " - - "L0.522[76,309] 1.04us 3mb |-------L0.522-------| " - - "L0.523[310,317] 1.04us 96kb |L0.523| " - - "L0.458[318,325] 1.04us 96kb |L0.458| " - - "L0.405[326,348] 1.04us 275kb |L0.405| " - - "L0.294[349,356] 1.04us 96kb |L0.294| " - - "L0.224[357,357] 1.04us 0b |L0.224| " - - "L0.520[358,576] 1.04us 3mb |------L0.520------| " - - "L0.521[577,592] 1.04us 192kb |L0.521| " - - "L0.456[593,608] 1.04us 192kb |L0.456| " - - "L0.387[609,654] 1.04us 552kb |L0.387| " - - "L0.292[655,670] 1.04us 192kb |L0.292| " - - "L0.222[671,672] 1.04us 12kb |L0.222| " - - "L0.349[673,923] 1.04us 3mb |-------L0.349--------| " - - "L0.350[924,932] 1.04us 109kb |L0.350|" - - "L0.526[42,309] 1.04us 3mb|--------L0.526---------| " - - "L0.527[310,317] 1.04us 87kb |L0.527| " - - "L0.462[318,325] 1.04us 87kb |L0.462| " - - "L0.389[326,348] 1.04us 249kb |L0.389| " - - "L0.298[349,356] 1.04us 87kb |L0.298| " - - "L0.228[357,357] 1.04us 0b |L0.228| " - - "L0.524[358,576] 1.04us 2mb |------L0.524------| " - - "L0.525[577,592] 1.04us 174kb |L0.525| " - - "L0.460[593,608] 1.04us 174kb |L0.460| " - - "L0.407[609,654] 1.04us 501kb |L0.407| " - - "L0.296[655,670] 1.04us 174kb |L0.296| " - - "L0.226[671,672] 1.04us 11kb |L0.226| " - - "L0.351[673,923] 1.04us 3mb |-------L0.351--------| " - - "L0.352[924,986] 1.04us 690kb |L0.352|" - - "L0.530[173,309] 1.04us 2mb |--L0.530--| " - - "L0.531[310,317] 1.04us 105kb |L0.531| " - - "L0.466[318,325] 1.04us 105kb |L0.466| " - - "L0.393[326,348] 1.04us 303kb |L0.393| " - - "L0.302[349,356] 1.04us 105kb |L0.302| " - - "L0.232[357,357] 1.04us 0b |L0.232| " - - "L0.528[358,576] 1.04us 3mb |------L0.528------| " - - "L0.529[577,592] 1.04us 212kb |L0.529| " - - "L0.464[593,608] 1.04us 212kb |L0.464| " - - "L0.391[609,654] 1.04us 608kb |L0.391| " - - "L0.300[655,670] 1.04us 212kb |L0.300| " - - "L0.230[671,672] 1.04us 13kb |L0.230| " - - "L0.353[673,923] 1.04us 3mb |-------L0.353--------| " - - "L0.354[924,950] 1.04us 360kb |L0.354|" - - "L0.534[50,309] 1.04us 4mb|--------L0.534--------| " - - "L0.535[310,317] 1.04us 141kb |L0.535| " - - "L0.470[318,325] 1.04us 141kb |L0.470| " - - "L0.397[326,348] 1.04us 407kb |L0.397| " - - "L0.304[349,356] 1.04us 141kb |L0.304| " - - "L0.234[357,357] 1.04us 0b |L0.234| " - - "L0.532[358,576] 1.04us 4mb |------L0.532------| " - - "L0.533[577,592] 1.04us 285kb |L0.533| " - - "L0.468[593,608] 1.04us 285kb |L0.468| " - - "L0.395[609,629] 1.04us 374kb |L0.395| " - - "L0.538[76,309] 1.04us 3mb |-------L0.538-------| " - - "L0.539[310,317] 1.04us 96kb |L0.539| " - - "L0.474[318,325] 1.04us 96kb |L0.474| " - - "L0.401[326,348] 1.04us 275kb |L0.401| " - - "L0.308[349,356] 1.04us 96kb |L0.308| " - - "L0.238[357,357] 1.04us 0b |L0.238| " - - "L0.536[358,576] 1.04us 3mb |------L0.536------| " - - "L0.537[577,592] 1.04us 192kb |L0.537| " - - "L0.472[593,608] 1.04us 192kb |L0.472| " - - "L0.399[609,654] 1.04us 552kb |L0.399| " - - "L0.306[655,670] 1.04us 192kb |L0.306| " - - "L0.236[671,672] 1.04us 12kb |L0.236| " - - "L0.355[673,923] 1.04us 3mb |-------L0.355--------| " - - "L0.356[924,932] 1.04us 109kb |L0.356|" - - "L0.542[42,309] 1.04us 3mb|--------L0.542---------| " - - "L0.543[310,317] 1.04us 87kb |L0.543| " - - "L0.478[318,325] 1.04us 87kb |L0.478| " - - "L0.409[326,348] 1.04us 249kb |L0.409| " - - "L0.312[349,356] 1.04us 87kb |L0.312| " - - "L0.242[357,357] 1.04us 0b |L0.242| " - - "L0.540[358,576] 1.04us 2mb |------L0.540------| " - - "L0.541[577,592] 1.04us 174kb |L0.541| " - - "L0.476[593,608] 1.04us 174kb |L0.476| " - - "L0.403[609,654] 1.04us 501kb |L0.403| " - - "L0.310[655,670] 1.04us 174kb |L0.310| " - - "L0.240[671,672] 1.04us 11kb |L0.240| " - - "L0.357[673,923] 1.04us 3mb |-------L0.357--------| " - - "L0.358[924,986] 1.04us 690kb |L0.358|" - - "L0.546[173,309] 1.04us 2mb |--L0.546--| " - - "L0.547[310,317] 1.04us 105kb |L0.547| " - - "L0.482[318,325] 1.04us 105kb |L0.482| " - - "L0.413[326,348] 1.04us 303kb |L0.413| " - - "L0.316[349,356] 1.04us 105kb |L0.316| " - - "L0.246[357,357] 1.04us 0b |L0.246| " - - "L0.544[358,576] 1.04us 3mb |------L0.544------| " - - "L0.545[577,592] 1.04us 212kb |L0.545| " - - "L0.480[593,608] 1.04us 212kb |L0.480| " - - "L0.411[609,654] 1.04us 608kb |L0.411| " - - "L0.314[655,670] 1.04us 212kb |L0.314| " - - "L0.244[671,672] 1.04us 13kb |L0.244| " - - "L0.359[673,923] 1.04us 3mb |-------L0.359--------| " - - "L0.360[924,950] 1.04us 360kb |L0.360|" - - "L0.550[50,309] 1.04us 4mb|--------L0.550--------| " - - "L0.551[310,317] 1.04us 141kb |L0.551| " - - "L0.486[318,325] 1.04us 141kb |L0.486| " - - "L0.417[326,348] 1.04us 407kb |L0.417| " - - "L0.318[349,356] 1.04us 141kb |L0.318| " - - "L0.248[357,357] 1.04us 0b |L0.248| " - - "L0.548[358,576] 1.04us 4mb |------L0.548------| " - - "L0.549[577,592] 1.04us 285kb |L0.549| " - - "L0.484[593,608] 1.04us 285kb |L0.484| " - - "L0.415[609,629] 1.04us 374kb |L0.415| " - - "L0.554[76,309] 1.04us 3mb |-------L0.554-------| " - - "L0.555[310,317] 1.04us 96kb |L0.555| " - - "L0.490[318,325] 1.04us 96kb |L0.490| " - - "L0.421[326,348] 1.04us 275kb |L0.421| " - - "L0.322[349,356] 1.04us 96kb |L0.322| " - - "L0.252[357,357] 1.04us 0b |L0.252| " - - "L0.552[358,576] 1.04us 3mb |------L0.552------| " - - "L0.553[577,592] 1.04us 192kb |L0.553| " - - "L0.488[593,608] 1.04us 192kb |L0.488| " - - "L0.419[609,654] 1.04us 552kb |L0.419| " - - "L0.320[655,670] 1.04us 192kb |L0.320| " - - "L0.250[671,672] 1.04us 12kb |L0.250| " - - "L0.361[673,923] 1.04us 3mb |-------L0.361--------| " - - "L0.362[924,932] 1.04us 109kb |L0.362|" - - "L0.558[42,309] 1.05us 3mb|--------L0.558---------| " - - "L0.559[310,317] 1.05us 87kb |L0.559| " - - "L0.494[318,325] 1.05us 87kb |L0.494| " - - "L0.425[326,348] 1.05us 249kb |L0.425| " - - "L0.326[349,356] 1.05us 87kb |L0.326| " - - "L0.256[357,357] 1.05us 0b |L0.256| " - - "L0.556[358,576] 1.05us 2mb |------L0.556------| " - - "L0.557[577,592] 1.05us 174kb |L0.557| " - - "L0.492[593,608] 1.05us 174kb |L0.492| " - - "L0.423[609,654] 1.05us 501kb |L0.423| " - - "L0.324[655,670] 1.05us 174kb |L0.324| " - - "L0.254[671,672] 1.05us 11kb |L0.254| " - - "L0.363[673,923] 1.05us 3mb |-------L0.363--------| " - - "L0.364[924,986] 1.05us 690kb |L0.364|" - - "L0.562[173,309] 1.05us 2mb |--L0.562--| " - - "L0.563[310,317] 1.05us 105kb |L0.563| " - - "L0.498[318,325] 1.05us 105kb |L0.498| " - - "L0.429[326,348] 1.05us 303kb |L0.429| " - - "L0.330[349,356] 1.05us 105kb |L0.330| " - - "L0.260[357,357] 1.05us 0b |L0.260| " - - "L0.560[358,576] 1.05us 3mb |------L0.560------| " - - "L0.561[577,592] 1.05us 212kb |L0.561| " - - "L0.496[593,608] 1.05us 212kb |L0.496| " - - "L0.427[609,654] 1.05us 608kb |L0.427| " - - "L0.328[655,670] 1.05us 212kb |L0.328| " - - "L0.258[671,672] 1.05us 13kb |L0.258| " - - "L0.365[673,923] 1.05us 3mb |-------L0.365--------| " - - "L0.366[924,950] 1.05us 360kb |L0.366|" - - "L0.566[50,309] 1.05us 4mb|--------L0.566--------| " - - "L0.567[310,317] 1.05us 141kb |L0.567| " - - "L0.502[318,325] 1.05us 141kb |L0.502| " - - "L0.433[326,348] 1.05us 407kb |L0.433| " - - "L0.332[349,356] 1.05us 141kb |L0.332| " - - "L0.262[357,357] 1.05us 0b |L0.262| " - - "L0.564[358,576] 1.05us 4mb |------L0.564------| " - - "L0.565[577,592] 1.05us 285kb |L0.565| " - - "L0.500[593,608] 1.05us 285kb |L0.500| " - - "L0.431[609,629] 1.05us 374kb |L0.431| " - - "L0.570[76,309] 1.05us 3mb |-------L0.570-------| " - - "L0.571[310,317] 1.05us 96kb |L0.571| " - - "L0.506[318,325] 1.05us 96kb |L0.506| " - - "L0.437[326,348] 1.05us 275kb |L0.437| " - - "L0.336[349,356] 1.05us 96kb |L0.336| " - - "L0.266[357,357] 1.05us 0b |L0.266| " - - "L0.568[358,576] 1.05us 3mb |------L0.568------| " - - "L0.569[577,592] 1.05us 192kb |L0.569| " - - "L0.504[593,608] 1.05us 192kb |L0.504| " - - "L0.435[609,654] 1.05us 552kb |L0.435| " - - "L0.334[655,670] 1.05us 192kb |L0.334| " - - "L0.264[671,672] 1.05us 12kb |L0.264| " - - "L0.367[673,923] 1.05us 3mb |-------L0.367--------| " - - "L0.368[924,932] 1.05us 109kb |L0.368|" - - "L0.574[42,309] 1.05us 3mb|--------L0.574---------| " - - "L0.575[310,317] 1.05us 87kb |L0.575| " - - "L0.510[318,325] 1.05us 87kb |L0.510| " - - "L0.441[326,348] 1.05us 249kb |L0.441| " - - "L0.340[349,356] 1.05us 87kb |L0.340| " - - "L0.270[357,357] 1.05us 0b |L0.270| " - - "L0.572[358,576] 1.05us 2mb |------L0.572------| " - - "L0.573[577,592] 1.05us 174kb |L0.573| " - - "L0.508[593,608] 1.05us 174kb |L0.508| " - - "L0.439[609,654] 1.05us 501kb |L0.439| " - - "L0.338[655,670] 1.05us 174kb |L0.338| " - - "L0.268[671,672] 1.05us 11kb |L0.268| " - - "L0.369[673,923] 1.05us 3mb |-------L0.369--------| " - - "L0.370[924,986] 1.05us 690kb |L0.370|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 154mb total:" - - "L0 " - - "L0.?[42,657] 1.05us 100mb|--------------------------L0.?--------------------------| " - - "L0.?[658,986] 1.05us 54mb |------------L0.?-------------| " - - "Committing partition 1:" - - " Soft Deleting 196 files: L0.220, L0.222, L0.224, L0.226, L0.228, L0.230, L0.232, L0.234, L0.236, L0.238, L0.240, L0.242, L0.244, L0.246, L0.248, L0.250, L0.252, L0.254, L0.256, L0.258, L0.260, L0.262, L0.264, L0.266, L0.268, L0.270, L0.290, L0.292, L0.294, L0.296, L0.298, L0.300, L0.302, L0.304, L0.306, L0.308, L0.310, L0.312, L0.314, L0.316, L0.318, L0.320, L0.322, L0.324, L0.326, L0.328, L0.330, L0.332, L0.334, L0.336, L0.338, L0.340, L0.347, L0.348, L0.349, L0.350, L0.351, L0.352, L0.353, L0.354, L0.355, L0.356, L0.357, L0.358, L0.359, L0.360, L0.361, L0.362, L0.363, L0.364, L0.365, L0.366, L0.367, L0.368, L0.369, L0.370, L0.383, L0.385, L0.387, L0.389, L0.391, L0.393, L0.395, L0.397, L0.399, L0.401, L0.403, L0.405, L0.407, L0.409, L0.411, L0.413, L0.415, L0.417, L0.419, L0.421, L0.423, L0.425, L0.427, L0.429, L0.431, L0.433, L0.435, L0.437, L0.439, L0.441, L0.452, L0.454, L0.456, L0.458, L0.460, L0.462, L0.464, L0.466, L0.468, L0.470, L0.472, L0.474, L0.476, L0.478, L0.480, L0.482, L0.484, L0.486, L0.488, L0.490, L0.492, L0.494, L0.496, L0.498, L0.500, L0.502, L0.504, L0.506, L0.508, L0.510, L0.516, L0.517, L0.518, L0.519, L0.520, L0.521, L0.522, L0.523, L0.524, L0.525, L0.526, L0.527, L0.528, L0.529, L0.530, L0.531, L0.532, L0.533, L0.534, L0.535, L0.536, L0.537, L0.538, L0.539, L0.540, L0.541, L0.542, L0.543, L0.544, L0.545, L0.546, L0.547, L0.548, L0.549, L0.550, L0.551, L0.552, L0.553, L0.554, L0.555, L0.556, L0.557, L0.558, L0.559, L0.560, L0.561, L0.562, L0.563, L0.564, L0.565, L0.566, L0.567, L0.568, L0.569, L0.570, L0.571, L0.572, L0.573, L0.574, L0.575" - - " Creating 2 files" - - "**** Simulation run 237, type=split(HighL0OverlapSingleFile)(split_times=[252]). 1 Input Files, 100mb total:" - - "L1, all files 100mb " - - "L1.513[42,309] 1.03us |-----------------------------------------L1.513-----------------------------------------|" - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" - - "L1 " - - "L1.?[42,252] 1.03us 79mb |--------------------------------L1.?--------------------------------| " - - "L1.?[253,309] 1.03us 21mb |------L1.?------| " - - "**** Simulation run 238, type=split(HighL0OverlapSingleFile)(split_times=[462]). 1 Input Files, 100mb total:" - - "L1, all files 100mb " - - "L1.514[310,576] 1.03us |-----------------------------------------L1.514-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" - - "L1 " - - "L1.?[310,462] 1.03us 57mb|----------------------L1.?-----------------------| " - - "L1.?[463,576] 1.03us 43mb |----------------L1.?----------------| " - - "**** Simulation run 239, type=split(HighL0OverlapSingleFile)(split_times=[252, 462]). 1 Input Files, 100mb total:" - - "L0, all files 100mb " - - "L0.576[42,657] 1.05us |-----------------------------------------L0.576-----------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 100mb total:" - "L0 " - - "L0.?[42,252] 1.05us 34mb |------------L0.?------------| " - - "L0.?[253,462] 1.05us 34mb |------------L0.?------------| " - - "L0.?[463,657] 1.05us 32mb |-----------L0.?-----------| " + - "L0.?[42,797] 1.05us 80mb |--------------------------------L0.?---------------------------------| " + - "L0.?[798,986] 1.05us 20mb |-----L0.?------| " - "Committing partition 1:" - - " Soft Deleting 3 files: L1.513, L1.514, L0.576" - - " Creating 7 files" - - "**** Simulation run 240, type=split(ReduceOverlap)(split_times=[672, 923]). 1 Input Files, 54mb total:" - - "L0, all files 54mb " - - "L0.577[658,986] 1.05us |-----------------------------------------L0.577-----------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 54mb total:" + - " Soft Deleting 10 files: L0.51, L0.52, L0.53, L0.54, L0.55, L0.56, L0.57, L0.58, L0.59, L0.60" + - " Creating 2 files" + - "**** Simulation run 5, type=split(HighL0OverlapSingleFile)(split_times=[293, 544]). 1 Input Files, 80mb total:" + - "L0, all files 80mb " + - "L0.61[42,797] 1.01us |-----------------------------------------L0.61------------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 80mb total:" - "L0 " - - "L0.?[658,672] 1.05us 2mb |L0.?| " - - "L0.?[673,923] 1.05us 41mb |-------------------------------L0.?-------------------------------| " - - "L0.?[924,986] 1.05us 10mb |-----L0.?------| " - - "**** Simulation run 241, type=split(ReduceOverlap)(split_times=[576]). 1 Input Files, 32mb total:" - - "L0, all files 32mb " - - "L0.584[463,657] 1.05us |-----------------------------------------L0.584-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 32mb total:" + - "L0.?[42,293] 1.01us 27mb |-----------L0.?------------| " + - "L0.?[294,544] 1.01us 26mb |-----------L0.?------------| " + - "L0.?[545,797] 1.01us 27mb |------------L0.?------------| " + - "**** Simulation run 6, type=split(HighL0OverlapSingleFile)(split_times=[293, 544]). 1 Input Files, 80mb total:" + - "L0, all files 80mb " + - "L0.63[42,797] 1.02us |-----------------------------------------L0.63------------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 80mb total:" - "L0 " - - "L0.?[463,576] 1.05us 19mb|-----------------------L0.?-----------------------| " - - "L0.?[577,657] 1.05us 13mb |---------------L0.?----------------| " - - "**** Simulation run 242, type=split(ReduceOverlap)(split_times=[309]). 1 Input Files, 34mb total:" - - "L0, all files 34mb " - - "L0.583[253,462] 1.05us |----------------------------------------L0.583-----------------------------------------| " - - "**** 2 Output Files (parquet_file_id not yet assigned), 34mb total:" + - "L0.?[42,293] 1.02us 27mb |-----------L0.?------------| " + - "L0.?[294,544] 1.02us 26mb |-----------L0.?------------| " + - "L0.?[545,797] 1.02us 27mb |------------L0.?------------| " + - "**** Simulation run 7, type=split(HighL0OverlapSingleFile)(split_times=[293, 544]). 1 Input Files, 80mb total:" + - "L0, all files 80mb " + - "L0.65[42,797] 1.03us |-----------------------------------------L0.65------------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 80mb total:" - "L0 " - - "L0.?[253,309] 1.05us 9mb |---------L0.?---------| " - - "L0.?[310,462] 1.05us 25mb |-----------------------------L0.?------------------------------| " + - "L0.?[42,293] 1.03us 27mb |-----------L0.?------------| " + - "L0.?[294,544] 1.03us 26mb |-----------L0.?------------| " + - "L0.?[545,797] 1.03us 27mb |------------L0.?------------| " + - "**** Simulation run 8, type=split(HighL0OverlapSingleFile)(split_times=[293, 544]). 1 Input Files, 80mb total:" + - "L0, all files 80mb " + - "L0.67[42,797] 1.04us |-----------------------------------------L0.67------------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 80mb total:" + - "L0 " + - "L0.?[42,293] 1.04us 27mb |-----------L0.?------------| " + - "L0.?[294,544] 1.04us 26mb |-----------L0.?------------| " + - "L0.?[545,797] 1.04us 27mb |------------L0.?------------| " + - "**** Simulation run 9, type=split(HighL0OverlapSingleFile)(split_times=[293, 544]). 1 Input Files, 80mb total:" + - "L0, all files 80mb " + - "L0.69[42,797] 1.05us |-----------------------------------------L0.69------------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 80mb total:" + - "L0 " + - "L0.?[42,293] 1.05us 27mb |-----------L0.?------------| " + - "L0.?[294,544] 1.05us 26mb |-----------L0.?------------| " + - "L0.?[545,797] 1.05us 27mb |------------L0.?------------| " - "Committing partition 1:" - - " Soft Deleting 3 files: L0.577, L0.583, L0.584" - - " Creating 7 files" - - "**** Simulation run 243, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[229, 416]). 8 Input Files, 287mb total:" + - " Soft Deleting 5 files: L0.61, L0.63, L0.65, L0.67, L0.69" + - " Creating 15 files" + - "**** Simulation run 10, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[232, 422]). 10 Input Files, 265mb total:" - "L0 " - - "L0.582[42,252] 1.05us 34mb|-------------L0.582--------------| " - - "L0.590[253,309] 1.05us 9mb |L0.590-| " - - "L0.591[310,462] 1.05us 25mb |--------L0.591---------| " - - "L0.588[463,576] 1.05us 19mb |-----L0.588------| " - - "L1 " - - "L1.578[42,252] 1.03us 79mb|-------------L1.578--------------| " - - "L1.579[253,309] 1.03us 21mb |L1.579-| " - - "L1.580[310,462] 1.03us 57mb |--------L1.580---------| " - - "L1.581[463,576] 1.03us 43mb |-----L1.581------| " - - "**** 3 Output Files (parquet_file_id not yet assigned), 287mb total:" - - "L1 " - - "L1.?[42,229] 1.05us 100mb|------------L1.?-------------| " - - "L1.?[230,416] 1.05us 100mb |------------L1.?-------------| " - - "L1.?[417,576] 1.05us 86mb |----------L1.?----------| " + - "L0.71[42,293] 1.01us 27mb|-------------------L0.71-------------------| " + - "L0.72[294,544] 1.01us 26mb |------------------L0.72-------------------| " + - "L0.74[42,293] 1.02us 27mb|-------------------L0.74-------------------| " + - "L0.75[294,544] 1.02us 26mb |------------------L0.75-------------------| " + - "L0.77[42,293] 1.03us 27mb|-------------------L0.77-------------------| " + - "L0.78[294,544] 1.03us 26mb |------------------L0.78-------------------| " + - "L0.80[42,293] 1.04us 27mb|-------------------L0.80-------------------| " + - "L0.81[294,544] 1.04us 26mb |------------------L0.81-------------------| " + - "L0.83[42,293] 1.05us 27mb|-------------------L0.83-------------------| " + - "L0.84[294,544] 1.05us 26mb |------------------L0.84-------------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 265mb total:" + - "L0 " + - "L0.?[42,232] 1.05us 100mb|--------------L0.?--------------| " + - "L0.?[233,422] 1.05us 100mb |-------------L0.?--------------| " + - "L0.?[423,544] 1.05us 65mb |-------L0.?--------| " - "Committing partition 1:" - - " Soft Deleting 8 files: L1.578, L1.579, L1.580, L1.581, L0.582, L0.588, L0.590, L0.591" + - " Soft Deleting 10 files: L0.71, L0.72, L0.74, L0.75, L0.77, L0.78, L0.80, L0.81, L0.83, L0.84" - " Creating 3 files" - - "**** Simulation run 244, type=split(CompactAndSplitOutput(TotalSizeLessThanMaxCompactSize))(split_times=[769, 961]). 7 Input Files, 213mb total:" + - "**** Simulation run 11, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[733, 921]). 10 Input Files, 235mb total:" - "L0 " - - "L0.587[924,986] 1.05us 10mb |--L0.587---| " - - "L0.586[673,923] 1.05us 41mb |-----------------------L0.586------------------------| " - - "L0.585[658,672] 1.05us 2mb |L0.585| " - - "L0.589[577,657] 1.05us 13mb|----L0.589-----| " - - "L1 " - - "L1.515[577,672] 1.03us 36mb|------L1.515------| " - - "L1.512[924,986] 1.03us 22mb |--L1.512---| " - - "L1.511[673,923] 1.03us 88mb |-----------------------L1.511------------------------| " - - "**** 3 Output Files (parquet_file_id not yet assigned), 213mb total:" - - "L1 " - - "L1.?[577,769] 1.05us 100mb|------------------L1.?------------------| " - - "L1.?[770,961] 1.05us 100mb |------------------L1.?------------------| " - - "L1.?[962,986] 1.05us 14mb |L1.?|" + - "L0.73[545,797] 1.01us 27mb|----------------------L0.73----------------------| " + - "L0.62[798,986] 1.01us 20mb |---------------L0.62----------------| " + - "L0.76[545,797] 1.02us 27mb|----------------------L0.76----------------------| " + - "L0.64[798,986] 1.02us 20mb |---------------L0.64----------------| " + - "L0.79[545,797] 1.03us 27mb|----------------------L0.79----------------------| " + - "L0.66[798,986] 1.03us 20mb |---------------L0.66----------------| " + - "L0.82[545,797] 1.04us 27mb|----------------------L0.82----------------------| " + - "L0.68[798,986] 1.04us 20mb |---------------L0.68----------------| " + - "L0.85[545,797] 1.05us 27mb|----------------------L0.85----------------------| " + - "L0.70[798,986] 1.05us 20mb |---------------L0.70----------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 235mb total:" + - "L0 " + - "L0.?[545,733] 1.05us 100mb|----------------L0.?----------------| " + - "L0.?[734,921] 1.05us 99mb |----------------L0.?----------------| " + - "L0.?[922,986] 1.05us 35mb |---L0.?----| " - "Committing partition 1:" - - " Soft Deleting 7 files: L1.511, L1.512, L1.515, L0.585, L0.586, L0.587, L0.589" + - " Soft Deleting 10 files: L0.62, L0.64, L0.66, L0.68, L0.70, L0.73, L0.76, L0.79, L0.82, L0.85" - " Creating 3 files" - - "**** Simulation run 245, type=split(ReduceOverlap)(split_times=[499]). 1 Input Files, 86mb total:" - - "L1, all files 86mb " - - "L1.594[417,576] 1.05us |-----------------------------------------L1.594-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 86mb total:" + - "**** Simulation run 12, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[422, 611]). 3 Input Files, 265mb total:" + - "L0 " + - "L0.87[233,422] 1.05us 100mb|-------------L0.87--------------| " + - "L0.88[423,544] 1.05us 65mb |-------L0.88-------| " + - "L0.89[545,733] 1.05us 100mb |-------------L0.89-------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 265mb total:" - "L1 " - - "L1.?[417,499] 1.05us 45mb|--------------------L1.?--------------------| " - - "L1.?[500,576] 1.05us 42mb |------------------L1.?-------------------| " - - "**** Simulation run 246, type=split(ReduceOverlap)(split_times=[299, 399]). 1 Input Files, 100mb total:" - - "L1, all files 100mb " - - "L1.593[230,416] 1.05us |----------------------------------------L1.593-----------------------------------------| " - - "**** 3 Output Files (parquet_file_id not yet assigned), 100mb total:" - - "L1 " - - "L1.?[230,299] 1.05us 37mb|-------------L1.?--------------| " - - "L1.?[300,399] 1.05us 53mb |--------------------L1.?---------------------| " - - "L1.?[400,416] 1.05us 10mb |L1.?-| " - - "**** Simulation run 247, type=split(ReduceOverlap)(split_times=[99, 199]). 1 Input Files, 100mb total:" - - "L1, all files 100mb " - - "L1.592[42,229] 1.05us |----------------------------------------L1.592-----------------------------------------| " - - "**** 3 Output Files (parquet_file_id not yet assigned), 100mb total:" - - "L1 " - - "L1.?[42,99] 1.05us 31mb |----------L1.?-----------| " - - "L1.?[100,199] 1.05us 53mb |--------------------L1.?---------------------| " - - "L1.?[200,229] 1.05us 17mb |---L1.?----| " - - "**** Simulation run 248, type=split(ReduceOverlap)(split_times=[799, 899]). 1 Input Files, 100mb total:" - - "L1, all files 100mb " - - "L1.596[770,961] 1.05us |-----------------------------------------L1.596-----------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 100mb total:" - - "L1 " - - "L1.?[770,799] 1.05us 15mb|---L1.?----| " - - "L1.?[800,899] 1.05us 52mb |--------------------L1.?--------------------| " - - "L1.?[900,961] 1.05us 33mb |-----------L1.?-----------| " - - "**** Simulation run 249, type=split(ReduceOverlap)(split_times=[599, 699]). 1 Input Files, 100mb total:" - - "L1, all files 100mb " - - "L1.595[577,769] 1.05us |-----------------------------------------L1.595-----------------------------------------|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 100mb total:" - - "L1 " - - "L1.?[577,599] 1.05us 11mb|--L1.?--| " - - "L1.?[600,699] 1.05us 52mb |--------------------L1.?--------------------| " - - "L1.?[700,769] 1.05us 37mb |-------------L1.?-------------| " + - "L1.?[233,422] 1.05us 100mb|--------------L1.?--------------| " + - "L1.?[423,611] 1.05us 100mb |-------------L1.?--------------| " + - "L1.?[612,733] 1.05us 65mb |-------L1.?--------| " - "Committing partition 1:" - - " Soft Deleting 5 files: L1.592, L1.593, L1.594, L1.595, L1.596" + - " Soft Deleting 3 files: L0.87, L0.88, L0.89" + - " Upgrading 1 files level to CompactionLevel::L1: L0.86" + - " Creating 3 files" + - "**** Simulation run 13, type=split(CompactAndSplitOutput(TotalSizeLessThanMaxCompactSize))(split_times=[922]). 2 Input Files, 135mb total:" + - "L0 " + - "L0.91[922,986] 1.05us 35mb |-------L0.91--------| " + - "L0.90[734,921] 1.05us 99mb|-----------------------------L0.90------------------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 135mb total:" + - "L1 " + - "L1.?[734,922] 1.05us 100mb|------------------------------L1.?-------------------------------| " + - "L1.?[923,986] 1.05us 34mb |--------L1.?--------| " + - "Committing partition 1:" + - " Soft Deleting 2 files: L0.90, L0.91" + - " Creating 2 files" + - "**** Simulation run 14, type=split(ReduceOverlap)(split_times=[699]). 1 Input Files, 65mb total:" + - "L1, all files 65mb " + - "L1.94[612,733] 1.05us |-----------------------------------------L1.94-----------------------------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 65mb total:" + - "L1 " + - "L1.?[612,699] 1.05us 47mb|-----------------------------L1.?-----------------------------| " + - "L1.?[700,733] 1.05us 18mb |---------L1.?---------| " + - "**** Simulation run 15, type=split(ReduceOverlap)(split_times=[499, 599]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.93[423,611] 1.05us |-----------------------------------------L1.93------------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[423,499] 1.05us 40mb|---------------L1.?---------------| " + - "L1.?[500,599] 1.05us 52mb |--------------------L1.?---------------------| " + - "L1.?[600,611] 1.05us 7mb |L1.?|" + - "**** Simulation run 16, type=split(ReduceOverlap)(split_times=[299, 399]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.92[233,422] 1.05us |-----------------------------------------L1.92------------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[233,299] 1.05us 35mb|------------L1.?-------------| " + - "L1.?[300,399] 1.05us 52mb |--------------------L1.?---------------------| " + - "L1.?[400,422] 1.05us 13mb |--L1.?--| " + - "**** Simulation run 17, type=split(ReduceOverlap)(split_times=[99, 199]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.86[42,232] 1.05us |-----------------------------------------L1.86------------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[42,99] 1.05us 30mb |----------L1.?-----------| " + - "L1.?[100,199] 1.05us 52mb |--------------------L1.?--------------------| " + - "L1.?[200,232] 1.05us 18mb |----L1.?-----| " + - "**** Simulation run 18, type=split(ReduceOverlap)(split_times=[799, 899]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.95[734,922] 1.05us |-----------------------------------------L1.95------------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[734,799] 1.05us 35mb|------------L1.?-------------| " + - "L1.?[800,899] 1.05us 53mb |--------------------L1.?---------------------| " + - "L1.?[900,922] 1.05us 13mb |--L1.?--| " + - "Committing partition 1:" + - " Soft Deleting 5 files: L1.86, L1.92, L1.93, L1.94, L1.95" - " Creating 14 files" - - "**** Simulation run 250, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[71, 142]). 4 Input Files, 284mb total:" + - "**** Simulation run 19, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[71, 142]). 4 Input Files, 282mb total:" - "L1 " - - "L1.603[42,99] 1.05us 31mb |--------L1.603---------| " - - "L1.604[100,199] 1.05us 53mb |------------------L1.604------------------| " + - "L1.105[42,99] 1.05us 30mb |--------L1.105---------| " + - "L1.106[100,199] 1.05us 52mb |------------------L1.106------------------| " - "L2 " - "L2.1[0,99] 99ns 100mb |-------------------L2.1-------------------| " - "L2.2[100,199] 199ns 100mb |-------------------L2.2-------------------| " - - "**** 3 Output Files (parquet_file_id not yet assigned), 284mb total:" + - "**** 3 Output Files (parquet_file_id not yet assigned), 282mb total:" - "L2 " - "L2.?[0,71] 1.05us 101mb |-------------L2.?-------------| " - - "L2.?[72,142] 1.05us 100mb |------------L2.?-------------| " - - "L2.?[143,199] 1.05us 83mb |---------L2.?----------| " + - "L2.?[72,142] 1.05us 99mb |------------L2.?-------------| " + - "L2.?[143,199] 1.05us 82mb |---------L2.?----------| " - "Committing partition 1:" - - " Soft Deleting 4 files: L2.1, L2.2, L1.603, L1.604" + - " Soft Deleting 4 files: L2.1, L2.2, L1.105, L1.106" - " Creating 3 files" - - "**** Simulation run 251, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[265]). 3 Input Files, 154mb total:" + - "**** Simulation run 20, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[265]). 3 Input Files, 153mb total:" - "L1 " - - "L1.605[200,229] 1.05us 17mb|---------L1.605---------| " - - "L1.600[230,299] 1.05us 37mb |---------------------------L1.600---------------------------| " + - "L1.107[200,232] 1.05us 18mb|----------L1.107-----------| " + - "L1.102[233,299] 1.05us 35mb |-------------------------L1.102--------------------------| " - "L2 " - "L2.3[200,299] 299ns 100mb|-----------------------------------------L2.3------------------------------------------| " - - "**** 2 Output Files (parquet_file_id not yet assigned), 154mb total:" + - "**** 2 Output Files (parquet_file_id not yet assigned), 153mb total:" - "L2 " - - "L2.?[200,265] 1.05us 101mb|--------------------------L2.?---------------------------| " + - "L2.?[200,265] 1.05us 100mb|--------------------------L2.?---------------------------| " - "L2.?[266,299] 1.05us 53mb |-----------L2.?------------| " - "Committing partition 1:" - - " Soft Deleting 3 files: L2.3, L1.600, L1.605" + - " Soft Deleting 3 files: L2.3, L1.102, L1.107" - " Creating 2 files" - - "**** Simulation run 252, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[376, 452]). 4 Input Files, 263mb total:" + - "**** Simulation run 21, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[376, 452]). 4 Input Files, 265mb total:" - "L1 " - - "L1.601[300,399] 1.05us 53mb|------------------L1.601------------------| " - - "L1.602[400,416] 1.05us 10mb |L1.602| " + - "L1.103[300,399] 1.05us 52mb|------------------L1.103------------------| " + - "L1.104[400,422] 1.05us 13mb |L1.104-| " - "L2 " - "L2.4[300,399] 399ns 100mb|-------------------L2.4-------------------| " - "L2.5[400,499] 499ns 100mb |-------------------L2.5-------------------| " - - "**** 3 Output Files (parquet_file_id not yet assigned), 263mb total:" + - "**** 3 Output Files (parquet_file_id not yet assigned), 265mb total:" - "L2 " - - "L2.?[300,376] 1.05us 100mb|--------------L2.?--------------| " - - "L2.?[377,452] 1.05us 99mb |-------------L2.?--------------| " - - "L2.?[453,499] 1.05us 63mb |-------L2.?-------| " + - "L2.?[300,376] 1.05us 101mb|--------------L2.?--------------| " + - "L2.?[377,452] 1.05us 100mb |-------------L2.?--------------| " + - "L2.?[453,499] 1.05us 64mb |-------L2.?-------| " - "Committing partition 1:" - - " Soft Deleting 4 files: L2.4, L2.5, L1.601, L1.602" + - " Soft Deleting 4 files: L2.4, L2.5, L1.103, L1.104" - " Creating 3 files" - - "**** Simulation run 253, type=split(ReduceOverlap)(split_times=[452]). 1 Input Files, 45mb total:" - - "L1, all files 45mb " - - "L1.598[417,499] 1.05us |-----------------------------------------L1.598-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 45mb total:" + - "**** Simulation run 22, type=split(ReduceOverlap)(split_times=[452]). 1 Input Files, 40mb total:" + - "L1, all files 40mb " + - "L1.99[423,499] 1.05us |-----------------------------------------L1.99------------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 40mb total:" - "L1 " - - "L1.?[417,452] 1.05us 19mb|----------------L1.?----------------| " - - "L1.?[453,499] 1.05us 26mb |----------------------L1.?----------------------| " + - "L1.?[423,452] 1.05us 15mb|--------------L1.?--------------| " + - "L1.?[453,499] 1.05us 25mb |------------------------L1.?------------------------| " - "Committing partition 1:" - - " Soft Deleting 1 files: L1.598" + - " Soft Deleting 1 files: L1.99" - " Creating 2 files" - - "**** Simulation run 254, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[436, 495]). 4 Input Files, 207mb total:" + - "**** Simulation run 23, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[612, 801]). 10 Input Files, 299mb total:" - "L1 " - - "L1.620[417,452] 1.05us 19mb |--------L1.620---------| " - - "L1.621[453,499] 1.05us 26mb |------------L1.621-------------| " - - "L2 " - - "L2.618[377,452] 1.05us 99mb|-----------------------L2.618------------------------| " - - "L2.619[453,499] 1.05us 63mb |------------L2.619-------------| " - - "**** 3 Output Files (parquet_file_id not yet assigned), 207mb total:" - - "L2 " - - "L2.?[377,436] 1.05us 100mb|------------------L2.?-------------------| " - - "L2.?[437,495] 1.05us 98mb |------------------L2.?------------------| " - - "L2.?[496,499] 1.05us 8mb |L2.?|" + - "L1.119[423,452] 1.05us 15mb|L1.119| " + - "L1.120[453,499] 1.05us 25mb |L1.120| " + - "L1.100[500,599] 1.05us 52mb |---L1.100----| " + - "L1.101[600,611] 1.05us 7mb |L1.101| " + - "L1.97[612,699] 1.05us 47mb |---L1.97---| " + - "L1.98[700,733] 1.05us 18mb |L1.98| " + - "L1.108[734,799] 1.05us 35mb |-L1.108-| " + - "L1.109[800,899] 1.05us 53mb |---L1.109----| " + - "L1.110[900,922] 1.05us 13mb |L1.110| " + - "L1.96[923,986] 1.05us 34mb |-L1.96--| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 299mb total:" + - "L1 " + - "L1.?[423,612] 1.05us 101mb|------------L1.?------------| " + - "L1.?[613,801] 1.05us 100mb |------------L1.?------------| " + - "L1.?[802,986] 1.05us 99mb |-----------L1.?------------| " - "Committing partition 1:" - - " Soft Deleting 4 files: L2.618, L2.619, L1.620, L1.621" + - " Soft Deleting 10 files: L1.96, L1.97, L1.98, L1.100, L1.101, L1.108, L1.109, L1.110, L1.119, L1.120" - " Creating 3 files" - - "**** Simulation run 255, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[565]). 3 Input Files, 153mb total:" + - "**** Simulation run 24, type=split(ReduceOverlap)(split_times=[899]). 1 Input Files, 99mb total:" + - "L1, all files 99mb " + - "L1.123[802,986] 1.05us |-----------------------------------------L1.123-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 99mb total:" - "L1 " - - "L1.599[500,576] 1.05us 42mb|------------------------------L1.599-------------------------------| " - - "L1.609[577,599] 1.05us 11mb |------L1.609------|" - - "L2 " - - "L2.6[500,599] 599ns 100mb|-----------------------------------------L2.6------------------------------------------| " - - "**** 2 Output Files (parquet_file_id not yet assigned), 153mb total:" - - "L2 " - - "L2.?[500,565] 1.05us 101mb|--------------------------L2.?---------------------------| " - - "L2.?[566,599] 1.05us 53mb |-----------L2.?------------| " + - "L1.?[802,899] 1.05us 52mb|--------------------L1.?---------------------| " + - "L1.?[900,986] 1.05us 47mb |------------------L1.?------------------| " + - "**** Simulation run 25, type=split(ReduceOverlap)(split_times=[699, 799]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.122[613,801] 1.05us |-----------------------------------------L1.122-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[613,699] 1.05us 46mb|-----------------L1.?------------------| " + - "L1.?[700,799] 1.05us 53mb |--------------------L1.?---------------------| " + - "L1.?[800,801] 1.05us 2mb |L1.?|" + - "**** Simulation run 26, type=split(ReduceOverlap)(split_times=[452, 499, 599]). 1 Input Files, 101mb total:" + - "L1, all files 101mb " + - "L1.121[423,612] 1.05us |-----------------------------------------L1.121-----------------------------------------|" + - "**** 4 Output Files (parquet_file_id not yet assigned), 101mb total:" + - "L1 " + - "L1.?[423,452] 1.05us 15mb|---L1.?----| " + - "L1.?[453,499] 1.05us 24mb |-------L1.?--------| " + - "L1.?[500,599] 1.05us 53mb |--------------------L1.?---------------------| " + - "L1.?[600,612] 1.05us 8mb |L1.?|" - "Committing partition 1:" - - " Soft Deleting 3 files: L2.6, L1.599, L1.609" + - " Soft Deleting 3 files: L1.121, L1.122, L1.123" + - " Creating 9 files" + - "**** Simulation run 27, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[437, 497]). 4 Input Files, 204mb total:" + - "L1 " + - "L1.129[423,452] 1.05us 15mb |------L1.129-------| " + - "L1.130[453,499] 1.05us 24mb |------------L1.130-------------| " + - "L2 " + - "L2.117[377,452] 1.05us 100mb|-----------------------L2.117------------------------| " + - "L2.118[453,499] 1.05us 64mb |------------L2.118-------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 204mb total:" + - "L2 " + - "L2.?[377,437] 1.05us 100mb|-------------------L2.?-------------------| " + - "L2.?[438,497] 1.05us 99mb |------------------L2.?-------------------| " + - "L2.?[498,499] 1.05us 5mb |L2.?|" + - "Committing partition 1:" + - " Soft Deleting 4 files: L2.117, L2.118, L1.129, L1.130" + - " Creating 3 files" + - "**** Simulation run 28, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[577, 654]). 4 Input Files, 261mb total:" + - "L1 " + - "L1.131[500,599] 1.05us 53mb|------------------L1.131------------------| " + - "L1.132[600,612] 1.05us 8mb |L1.132| " + - "L2 " + - "L2.6[500,599] 599ns 100mb|-------------------L2.6-------------------| " + - "L2.7[600,699] 699ns 100mb |-------------------L2.7-------------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 261mb total:" + - "L2 " + - "L2.?[500,577] 1.05us 101mb|--------------L2.?--------------| " + - "L2.?[578,654] 1.05us 100mb |--------------L2.?--------------| " + - "L2.?[655,699] 1.05us 60mb |------L2.?-------| " + - "Committing partition 1:" + - " Soft Deleting 4 files: L2.6, L2.7, L1.131, L1.132" + - " Creating 3 files" + - "**** Simulation run 29, type=split(ReduceOverlap)(split_times=[654]). 1 Input Files, 46mb total:" + - "L1, all files 46mb " + - "L1.126[613,699] 1.05us |-----------------------------------------L1.126-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 46mb total:" + - "L1 " + - "L1.?[613,654] 1.05us 22mb|------------------L1.?------------------| " + - "L1.?[655,699] 1.05us 24mb |--------------------L1.?--------------------| " + - "Committing partition 1:" + - " Soft Deleting 1 files: L1.126" - " Creating 2 files" - - "**** Simulation run 256, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[669, 738]). 4 Input Files, 289mb total:" + - "**** Simulation run 30, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[637, 696]). 4 Input Files, 206mb total:" - "L1 " - - "L1.610[600,699] 1.05us 52mb|------------------L1.610------------------| " - - "L1.611[700,769] 1.05us 37mb |-----------L1.611------------| " + - "L1.139[613,654] 1.05us 22mb |-----------L1.139-----------| " + - "L1.140[655,699] 1.05us 24mb |------------L1.140------------| " - "L2 " - - "L2.7[600,699] 699ns 100mb|-------------------L2.7-------------------| " - - "L2.8[700,799] 799ns 100mb |-------------------L2.8-------------------| " - - "**** 3 Output Files (parquet_file_id not yet assigned), 289mb total:" + - "L2.137[578,654] 1.05us 100mb|------------------------L2.137------------------------| " + - "L2.138[655,699] 1.05us 60mb |------------L2.138------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 206mb total:" - "L2 " - - "L2.?[600,669] 1.05us 100mb|------------L2.?-------------| " - - "L2.?[670,738] 1.05us 99mb |------------L2.?------------| " - - "L2.?[739,799] 1.05us 90mb |----------L2.?-----------| " + - "L2.?[578,637] 1.05us 100mb|------------------L2.?-------------------| " + - "L2.?[638,696] 1.05us 99mb |------------------L2.?-------------------| " + - "L2.?[697,699] 1.05us 7mb |L2.?|" - "Committing partition 1:" - - " Soft Deleting 4 files: L2.7, L2.8, L1.610, L1.611" + - " Soft Deleting 4 files: L2.137, L2.138, L1.139, L1.140" - " Creating 3 files" - - "**** Simulation run 257, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[802, 865]). 4 Input Files, 257mb total:" + - "**** Simulation run 31, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[779, 858]). 4 Input Files, 254mb total:" - "L1 " - - "L1.606[770,799] 1.05us 15mb |----L1.606----| " - - "L1.607[800,899] 1.05us 52mb |-----------------------L1.607------------------------| " + - "L1.127[700,799] 1.05us 53mb|------------------L1.127------------------| " + - "L1.128[800,801] 1.05us 2mb |L1.128| " - "L2 " - - "L2.629[739,799] 1.05us 90mb|------------L2.629-------------| " - - "L2.9[800,899] 899ns 100mb |------------------------L2.9-------------------------| " - - "**** 3 Output Files (parquet_file_id not yet assigned), 257mb total:" + - "L2.8[700,799] 799ns 100mb|-------------------L2.8-------------------| " + - "L2.9[800,899] 899ns 100mb |-------------------L2.9-------------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 254mb total:" - "L2 " - - "L2.?[739,802] 1.05us 101mb|--------------L2.?---------------| " - - "L2.?[803,865] 1.05us 99mb |--------------L2.?--------------| " - - "L2.?[866,899] 1.05us 56mb |------L2.?------| " + - "L2.?[700,779] 1.05us 101mb|--------------L2.?---------------| " + - "L2.?[780,858] 1.05us 100mb |--------------L2.?---------------| " + - "L2.?[859,899] 1.05us 54mb |------L2.?------| " - "Committing partition 1:" - - " Soft Deleting 4 files: L2.9, L1.606, L1.607, L2.629" + - " Soft Deleting 4 files: L2.8, L2.9, L1.127, L1.128" - " Creating 3 files" - - "**** Final Output Files (5.7gb written)" + - "**** Final Output Files (4.47gb written)" - "L1 " - - "L1.597[962,986] 1.05us 14mb |L1.597|" - - "L1.608[900,961] 1.05us 33mb |L1.608| " + - "L1.124[802,899] 1.05us 52mb |L1.124| " + - "L1.125[900,986] 1.05us 47mb |L1.125| " - "L2 " - "L2.10[900,999] 999ns 100mb |L2.10-| " - - "L2.612[0,71] 1.05us 101mb|L2.612| " - - "L2.613[72,142] 1.05us 100mb |L2.613| " - - "L2.614[143,199] 1.05us 83mb |L2.614| " - - "L2.615[200,265] 1.05us 101mb |L2.615| " - - "L2.616[266,299] 1.05us 53mb |L2.616| " - - "L2.617[300,376] 1.05us 100mb |L2.617| " - - "L2.622[377,436] 1.05us 100mb |L2.622| " - - "L2.623[437,495] 1.05us 98mb |L2.623| " - - "L2.624[496,499] 1.05us 8mb |L2.624| " - - "L2.625[500,565] 1.05us 101mb |L2.625| " - - "L2.626[566,599] 1.05us 53mb |L2.626| " - - "L2.627[600,669] 1.05us 100mb |L2.627| " - - "L2.628[670,738] 1.05us 99mb |L2.628| " - - "L2.630[739,802] 1.05us 101mb |L2.630| " - - "L2.631[803,865] 1.05us 99mb |L2.631| " - - "L2.632[866,899] 1.05us 56mb |L2.632| " + - "L2.111[0,71] 1.05us 101mb|L2.111| " + - "L2.112[72,142] 1.05us 99mb |L2.112| " + - "L2.113[143,199] 1.05us 82mb |L2.113| " + - "L2.114[200,265] 1.05us 100mb |L2.114| " + - "L2.115[266,299] 1.05us 53mb |L2.115| " + - "L2.116[300,376] 1.05us 101mb |L2.116| " + - "L2.133[377,437] 1.05us 100mb |L2.133| " + - "L2.134[438,497] 1.05us 99mb |L2.134| " + - "L2.135[498,499] 1.05us 5mb |L2.135| " + - "L2.136[500,577] 1.05us 101mb |L2.136| " + - "L2.141[578,637] 1.05us 100mb |L2.141| " + - "L2.142[638,696] 1.05us 99mb |L2.142| " + - "L2.143[697,699] 1.05us 7mb |L2.143| " + - "L2.144[700,779] 1.05us 101mb |L2.144| " + - "L2.145[780,858] 1.05us 100mb |L2.145| " + - "L2.146[859,899] 1.05us 54mb |L2.146| " "### ); } @@ -4787,7 +1035,7 @@ async fn actual_case_from_catalog_1() { let setup = layout_setup_builder() .await .with_max_desired_file_size_bytes(MAX_DESIRED_FILE_SIZE) - .with_max_num_files_per_plan(200) + .with_max_num_files_per_plan(20) .with_suppress_run_output() .with_partition_timeout(Duration::from_secs(10)) .build() @@ -6786,68 +3034,67 @@ async fn actual_case_from_catalog_1() { - "WARNING: file L0.161[327,333] 336ns 183mb exceeds soft limit 100mb by more than 50%" - "WARNING: file L0.162[330,338] 340ns 231mb exceeds soft limit 100mb by more than 50%" - "WARNING: file L0.163[331,338] 341ns 232mb exceeds soft limit 100mb by more than 50%" - - "**** Final Output Files (18.14gb written)" + - "**** Final Output Files (23.06gb written)" - "L2 " - - "L2.420[1,44] 342ns 100mb |-L2.420--| " - - "L2.453[282,288] 342ns 100mb |L2.453| " - - "L2.460[183,189] 342ns 114mb |L2.460| " - - "L2.467[314,314] 342ns 113mb |L2.467|" - - "L2.468[315,316] 342ns 107mb |L2.468|" - - "L2.469[317,317] 342ns 107mb |L2.469|" - - "L2.470[318,319] 342ns 111mb |L2.470|" - - "L2.471[320,320] 342ns 111mb |L2.471|" - - "L2.472[321,323] 342ns 146mb |L2.472|" - - "L2.473[324,325] 342ns 127mb |L2.473|" - - "L2.474[326,326] 342ns 127mb |L2.474|" - - "L2.475[327,329] 342ns 197mb |L2.475|" - - "L2.476[330,331] 342ns 114mb |L2.476|" - - "L2.477[332,332] 342ns 114mb |L2.477|" - - "L2.478[333,335] 342ns 199mb |L2.478|" - - "L2.493[45,69] 342ns 102mb |L2.493| " - - "L2.499[115,121] 342ns 113mb |L2.499| " - - "L2.505[158,164] 342ns 108mb |L2.505| " - - "L2.509[178,182] 342ns 109mb |L2.509| " - - "L2.510[190,196] 342ns 110mb |L2.510| " - - "L2.515[227,233] 342ns 114mb |L2.515| " - - "L2.521[261,267] 342ns 117mb |L2.521| " - - "L2.524[289,294] 342ns 124mb |L2.524| " - - "L2.530[311,313] 342ns 133mb |L2.530|" - - "L2.531[336,337] 342ns 146mb |L2.531|" - - "L2.532[338,338] 342ns 146mb |L2.532|" - - "L2.534[70,85] 342ns 102mb |L2.534| " - - "L2.535[86,100] 342ns 95mb |L2.535| " - - "L2.536[101,102] 342ns 20mb |L2.536| " - - "L2.537[103,109] 342ns 103mb |L2.537| " - - "L2.538[110,114] 342ns 86mb |L2.538| " - - "L2.539[122,128] 342ns 104mb |L2.539| " - - "L2.540[129,134] 342ns 87mb |L2.540| " - - "L2.541[135,138] 342ns 87mb |L2.541| " - - "L2.542[139,146] 342ns 106mb |L2.542| " - - "L2.543[147,153] 342ns 91mb |L2.543| " - - "L2.544[154,157] 342ns 76mb |L2.544| " - - "L2.545[165,171] 342ns 118mb |L2.545| " - - "L2.546[172,177] 342ns 118mb |L2.546| " - - "L2.547[197,204] 342ns 111mb |L2.547| " - - "L2.548[205,211] 342ns 95mb |L2.548| " - - "L2.549[212,213] 342ns 48mb |L2.549| " - - "L2.550[214,220] 342ns 108mb |L2.550| " - - "L2.551[221,226] 342ns 108mb |L2.551| " - - "L2.552[234,240] 342ns 104mb |L2.552| " - - "L2.553[241,246] 342ns 86mb |L2.553| " - - "L2.554[247,248] 342ns 52mb |L2.554| " - - "L2.555[249,255] 342ns 102mb |L2.555| " - - "L2.556[256,260] 342ns 85mb |L2.556| " - - "L2.557[268,273] 342ns 111mb |L2.557| " - - "L2.558[274,278] 342ns 89mb |L2.558| " - - "L2.559[279,281] 342ns 89mb |L2.559| " - - "L2.560[295,299] 342ns 130mb |L2.560| " - - "L2.561[300,303] 342ns 98mb |L2.561| " - - "L2.562[304,304] 342ns 65mb |L2.562| " - - "L2.563[305,308] 342ns 137mb |L2.563| " - - "L2.564[309,310] 342ns 92mb |L2.564|" - - "L2.565[339,339] 342ns 12mb |L2.565|" - - "WARNING: file L2.475[327,329] 342ns 197mb exceeds soft limit 100mb by more than 50%" - - "WARNING: file L2.478[333,335] 342ns 199mb exceeds soft limit 100mb by more than 50%" + - "L2.610[282,288] 342ns 100mb |L2.610| " + - "L2.619[314,314] 342ns 113mb |L2.619|" + - "L2.620[315,316] 342ns 107mb |L2.620|" + - "L2.621[317,317] 342ns 107mb |L2.621|" + - "L2.622[318,319] 342ns 111mb |L2.622|" + - "L2.623[320,320] 342ns 111mb |L2.623|" + - "L2.624[321,323] 342ns 146mb |L2.624|" + - "L2.625[324,325] 342ns 127mb |L2.625|" + - "L2.626[326,326] 342ns 127mb |L2.626|" + - "L2.627[327,329] 342ns 197mb |L2.627|" + - "L2.628[330,331] 342ns 114mb |L2.628|" + - "L2.629[332,332] 342ns 114mb |L2.629|" + - "L2.630[333,335] 342ns 199mb |L2.630|" + - "L2.631[336,337] 342ns 140mb |L2.631|" + - "L2.632[338,338] 342ns 140mb |L2.632|" + - "L2.918[1,24] 342ns 103mb |L2.918| " + - "L2.926[118,124] 342ns 114mb |L2.926| " + - "L2.929[143,151] 342ns 108mb |L2.929| " + - "L2.934[182,188] 342ns 119mb |L2.934| " + - "L2.937[205,213] 342ns 107mb |L2.937| " + - "L2.939[227,233] 342ns 114mb |L2.939| " + - "L2.945[261,267] 342ns 117mb |L2.945| " + - "L2.948[289,294] 342ns 124mb |L2.948| " + - "L2.954[311,313] 342ns 133mb |L2.954|" + - "L2.956[25,45] 342ns 104mb |L2.956| " + - "L2.957[46,65] 342ns 98mb |L2.957| " + - "L2.958[66,80] 342ns 83mb |L2.958| " + - "L2.959[81,94] 342ns 106mb |L2.959| " + - "L2.960[95,107] 342ns 98mb |L2.960| " + - "L2.961[108,117] 342ns 90mb |L2.961| " + - "L2.962[125,132] 342ns 115mb |L2.962| " + - "L2.963[133,139] 342ns 99mb |L2.963| " + - "L2.964[140,142] 342ns 66mb |L2.964| " + - "L2.965[152,159] 342ns 108mb |L2.965| " + - "L2.966[160,166] 342ns 92mb |L2.966| " + - "L2.967[167,171] 342ns 92mb |L2.967| " + - "L2.968[172,177] 342ns 121mb |L2.968| " + - "L2.969[178,181] 342ns 97mb |L2.969| " + - "L2.970[189,195] 342ns 113mb |L2.970| " + - "L2.971[196,201] 342ns 94mb |L2.971| " + - "L2.972[202,204] 342ns 75mb |L2.972| " + - "L2.973[214,220] 342ns 108mb |L2.973| " + - "L2.974[221,226] 342ns 108mb |L2.974| " + - "L2.975[234,240] 342ns 104mb |L2.975| " + - "L2.976[241,246] 342ns 86mb |L2.976| " + - "L2.977[247,248] 342ns 52mb |L2.977| " + - "L2.978[249,255] 342ns 102mb |L2.978| " + - "L2.979[256,260] 342ns 85mb |L2.979| " + - "L2.980[268,273] 342ns 111mb |L2.980| " + - "L2.981[274,278] 342ns 89mb |L2.981| " + - "L2.982[279,281] 342ns 89mb |L2.982| " + - "L2.983[295,299] 342ns 130mb |L2.983| " + - "L2.984[300,303] 342ns 98mb |L2.984| " + - "L2.985[304,304] 342ns 65mb |L2.985| " + - "L2.986[305,308] 342ns 137mb |L2.986| " + - "L2.987[309,310] 342ns 92mb |L2.987|" + - "L2.988[339,339] 342ns 25mb |L2.988|" + - "WARNING: file L2.627[327,329] 342ns 197mb exceeds soft limit 100mb by more than 50%" + - "WARNING: file L2.630[333,335] 342ns 199mb exceeds soft limit 100mb by more than 50%" "### ); } diff --git a/compactor/tests/layouts/large_overlaps.rs b/compactor/tests/layouts/large_overlaps.rs index 1a6c89c9f5..cf12dcf57f 100644 --- a/compactor/tests/layouts/large_overlaps.rs +++ b/compactor/tests/layouts/large_overlaps.rs @@ -564,7 +564,7 @@ async fn many_good_size_l0_files() { - "L0.286[285,286] 286ns |L0.286|" - "L0.287[286,287] 287ns |L0.287|" - "L0.288[287,288] 288ns |L0.288|" - - "**** Simulation run 0, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[50, 100]). 150 Input Files, 300mb total:" + - "**** Simulation run 0, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[50, 100]). 150 Input Files, 300mb total:" - "L0, all files 2mb " - "L0.1[0,1] 1ns |L0.1| " - "L0.2[1,2] 2ns |L0.2| " @@ -717,218 +717,208 @@ async fn many_good_size_l0_files() { - "L0.149[148,149] 149ns |L0.149|" - "L0.150[149,150] 150ns |L0.150|" - "**** 3 Output Files (parquet_file_id not yet assigned), 300mb total:" - - "L0 " - - "L0.?[0,50] 150ns 100mb |------------L0.?------------| " - - "L0.?[51,100] 150ns 98mb |-----------L0.?------------| " - - "L0.?[101,150] 150ns 102mb |-----------L0.?------------| " + - "L1 " + - "L1.?[0,50] 150ns 100mb |------------L1.?------------| " + - "L1.?[51,100] 150ns 98mb |-----------L1.?------------| " + - "L1.?[101,150] 150ns 102mb |-----------L1.?------------| " - "Committing partition 1:" - " Soft Deleting 150 files: L0.1, L0.2, L0.3, L0.4, L0.5, L0.6, L0.7, L0.8, L0.9, L0.10, L0.11, L0.12, L0.13, L0.14, L0.15, L0.16, L0.17, L0.18, L0.19, L0.20, L0.21, L0.22, L0.23, L0.24, L0.25, L0.26, L0.27, L0.28, L0.29, L0.30, L0.31, L0.32, L0.33, L0.34, L0.35, L0.36, L0.37, L0.38, L0.39, L0.40, L0.41, L0.42, L0.43, L0.44, L0.45, L0.46, L0.47, L0.48, L0.49, L0.50, L0.51, L0.52, L0.53, L0.54, L0.55, L0.56, L0.57, L0.58, L0.59, L0.60, L0.61, L0.62, L0.63, L0.64, L0.65, L0.66, L0.67, L0.68, L0.69, L0.70, L0.71, L0.72, L0.73, L0.74, L0.75, L0.76, L0.77, L0.78, L0.79, L0.80, L0.81, L0.82, L0.83, L0.84, L0.85, L0.86, L0.87, L0.88, L0.89, L0.90, L0.91, L0.92, L0.93, L0.94, L0.95, L0.96, L0.97, L0.98, L0.99, L0.100, L0.101, L0.102, L0.103, L0.104, L0.105, L0.106, L0.107, L0.108, L0.109, L0.110, L0.111, L0.112, L0.113, L0.114, L0.115, L0.116, L0.117, L0.118, L0.119, L0.120, L0.121, L0.122, L0.123, L0.124, L0.125, L0.126, L0.127, L0.128, L0.129, L0.130, L0.131, L0.132, L0.133, L0.134, L0.135, L0.136, L0.137, L0.138, L0.139, L0.140, L0.141, L0.142, L0.143, L0.144, L0.145, L0.146, L0.147, L0.148, L0.149, L0.150" - " Creating 3 files" - - "**** Simulation run 1, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[200, 250]). 138 Input Files, 276mb total:" - - "L0, all files 2mb " - - "L0.151[150,151] 151ns |L0.151| " - - "L0.152[151,152] 152ns |L0.152| " - - "L0.153[152,153] 153ns |L0.153| " - - "L0.154[153,154] 154ns |L0.154| " - - "L0.155[154,155] 155ns |L0.155| " - - "L0.156[155,156] 156ns |L0.156| " - - "L0.157[156,157] 157ns |L0.157| " - - "L0.158[157,158] 158ns |L0.158| " - - "L0.159[158,159] 159ns |L0.159| " - - "L0.160[159,160] 160ns |L0.160| " - - "L0.161[160,161] 161ns |L0.161| " - - "L0.162[161,162] 162ns |L0.162| " - - "L0.163[162,163] 163ns |L0.163| " - - "L0.164[163,164] 164ns |L0.164| " - - "L0.165[164,165] 165ns |L0.165| " - - "L0.166[165,166] 166ns |L0.166| " - - "L0.167[166,167] 167ns |L0.167| " - - "L0.168[167,168] 168ns |L0.168| " - - "L0.169[168,169] 169ns |L0.169| " - - "L0.170[169,170] 170ns |L0.170| " - - "L0.171[170,171] 171ns |L0.171| " - - "L0.172[171,172] 172ns |L0.172| " - - "L0.173[172,173] 173ns |L0.173| " - - "L0.174[173,174] 174ns |L0.174| " - - "L0.175[174,175] 175ns |L0.175| " - - "L0.176[175,176] 176ns |L0.176| " - - "L0.177[176,177] 177ns |L0.177| " - - "L0.178[177,178] 178ns |L0.178| " - - "L0.179[178,179] 179ns |L0.179| " - - "L0.180[179,180] 180ns |L0.180| " - - "L0.181[180,181] 181ns |L0.181| " - - "L0.182[181,182] 182ns |L0.182| " - - "L0.183[182,183] 183ns |L0.183| " - - "L0.184[183,184] 184ns |L0.184| " - - "L0.185[184,185] 185ns |L0.185| " - - "L0.186[185,186] 186ns |L0.186| " - - "L0.187[186,187] 187ns |L0.187| " - - "L0.188[187,188] 188ns |L0.188| " - - "L0.189[188,189] 189ns |L0.189| " - - "L0.190[189,190] 190ns |L0.190| " - - "L0.191[190,191] 191ns |L0.191| " - - "L0.192[191,192] 192ns |L0.192| " - - "L0.193[192,193] 193ns |L0.193| " - - "L0.194[193,194] 194ns |L0.194| " - - "L0.195[194,195] 195ns |L0.195| " - - "L0.196[195,196] 196ns |L0.196| " - - "L0.197[196,197] 197ns |L0.197| " - - "L0.198[197,198] 198ns |L0.198| " - - "L0.199[198,199] 199ns |L0.199| " - - "L0.200[199,200] 200ns |L0.200| " - - "L0.201[200,201] 201ns |L0.201| " - - "L0.202[201,202] 202ns |L0.202| " - - "L0.203[202,203] 203ns |L0.203| " - - "L0.204[203,204] 204ns |L0.204| " - - "L0.205[204,205] 205ns |L0.205| " - - "L0.206[205,206] 206ns |L0.206| " - - "L0.207[206,207] 207ns |L0.207| " - - "L0.208[207,208] 208ns |L0.208| " - - "L0.209[208,209] 209ns |L0.209| " - - "L0.210[209,210] 210ns |L0.210| " - - "L0.211[210,211] 211ns |L0.211| " - - "L0.212[211,212] 212ns |L0.212| " - - "L0.213[212,213] 213ns |L0.213| " - - "L0.214[213,214] 214ns |L0.214| " - - "L0.215[214,215] 215ns |L0.215| " - - "L0.216[215,216] 216ns |L0.216| " - - "L0.217[216,217] 217ns |L0.217| " - - "L0.218[217,218] 218ns |L0.218| " - - "L0.219[218,219] 219ns |L0.219| " - - "L0.220[219,220] 220ns |L0.220| " - - "L0.221[220,221] 221ns |L0.221| " - - "L0.222[221,222] 222ns |L0.222| " - - "L0.223[222,223] 223ns |L0.223| " - - "L0.224[223,224] 224ns |L0.224| " - - "L0.225[224,225] 225ns |L0.225| " - - "L0.226[225,226] 226ns |L0.226| " - - "L0.227[226,227] 227ns |L0.227| " - - "L0.228[227,228] 228ns |L0.228| " - - "L0.229[228,229] 229ns |L0.229| " - - "L0.230[229,230] 230ns |L0.230| " - - "L0.231[230,231] 231ns |L0.231| " - - "L0.232[231,232] 232ns |L0.232| " - - "L0.233[232,233] 233ns |L0.233| " - - "L0.234[233,234] 234ns |L0.234| " - - "L0.235[234,235] 235ns |L0.235| " - - "L0.236[235,236] 236ns |L0.236| " - - "L0.237[236,237] 237ns |L0.237| " - - "L0.238[237,238] 238ns |L0.238| " - - "L0.239[238,239] 239ns |L0.239| " - - "L0.240[239,240] 240ns |L0.240| " - - "L0.241[240,241] 241ns |L0.241| " - - "L0.242[241,242] 242ns |L0.242| " - - "L0.243[242,243] 243ns |L0.243| " - - "L0.244[243,244] 244ns |L0.244| " - - "L0.245[244,245] 245ns |L0.245| " - - "L0.246[245,246] 246ns |L0.246| " - - "L0.247[246,247] 247ns |L0.247| " - - "L0.248[247,248] 248ns |L0.248| " - - "L0.249[248,249] 249ns |L0.249| " - - "L0.250[249,250] 250ns |L0.250| " - - "L0.251[250,251] 251ns |L0.251| " - - "L0.252[251,252] 252ns |L0.252| " - - "L0.253[252,253] 253ns |L0.253| " - - "L0.254[253,254] 254ns |L0.254| " - - "L0.255[254,255] 255ns |L0.255| " - - "L0.256[255,256] 256ns |L0.256| " - - "L0.257[256,257] 257ns |L0.257| " - - "L0.258[257,258] 258ns |L0.258| " - - "L0.259[258,259] 259ns |L0.259| " - - "L0.260[259,260] 260ns |L0.260| " - - "L0.261[260,261] 261ns |L0.261| " - - "L0.262[261,262] 262ns |L0.262| " - - "L0.263[262,263] 263ns |L0.263| " - - "L0.264[263,264] 264ns |L0.264| " - - "L0.265[264,265] 265ns |L0.265| " - - "L0.266[265,266] 266ns |L0.266| " - - "L0.267[266,267] 267ns |L0.267| " - - "L0.268[267,268] 268ns |L0.268| " - - "L0.269[268,269] 269ns |L0.269| " - - "L0.270[269,270] 270ns |L0.270| " - - "L0.271[270,271] 271ns |L0.271| " - - "L0.272[271,272] 272ns |L0.272| " - - "L0.273[272,273] 273ns |L0.273| " - - "L0.274[273,274] 274ns |L0.274| " - - "L0.275[274,275] 275ns |L0.275| " - - "L0.276[275,276] 276ns |L0.276| " - - "L0.277[276,277] 277ns |L0.277|" - - "L0.278[277,278] 278ns |L0.278|" - - "L0.279[278,279] 279ns |L0.279|" - - "L0.280[279,280] 280ns |L0.280|" - - "L0.281[280,281] 281ns |L0.281|" - - "L0.282[281,282] 282ns |L0.282|" - - "L0.283[282,283] 283ns |L0.283|" - - "L0.284[283,284] 284ns |L0.284|" - - "L0.285[284,285] 285ns |L0.285|" - - "L0.286[285,286] 286ns |L0.286|" - - "L0.287[286,287] 287ns |L0.287|" - - "L0.288[287,288] 288ns |L0.288|" - - "**** 3 Output Files (parquet_file_id not yet assigned), 276mb total:" + - "**** Simulation run 1, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[151, 201]). 100 Input Files, 300mb total:" - "L0 " - - "L0.?[150,200] 288ns 100mb|-------------L0.?-------------| " - - "L0.?[201,250] 288ns 98mb |------------L0.?-------------| " - - "L0.?[251,288] 288ns 78mb |---------L0.?---------| " - - "Committing partition 1:" - - " Soft Deleting 138 files: L0.151, L0.152, L0.153, L0.154, L0.155, L0.156, L0.157, L0.158, L0.159, L0.160, L0.161, L0.162, L0.163, L0.164, L0.165, L0.166, L0.167, L0.168, L0.169, L0.170, L0.171, L0.172, L0.173, L0.174, L0.175, L0.176, L0.177, L0.178, L0.179, L0.180, L0.181, L0.182, L0.183, L0.184, L0.185, L0.186, L0.187, L0.188, L0.189, L0.190, L0.191, L0.192, L0.193, L0.194, L0.195, L0.196, L0.197, L0.198, L0.199, L0.200, L0.201, L0.202, L0.203, L0.204, L0.205, L0.206, L0.207, L0.208, L0.209, L0.210, L0.211, L0.212, L0.213, L0.214, L0.215, L0.216, L0.217, L0.218, L0.219, L0.220, L0.221, L0.222, L0.223, L0.224, L0.225, L0.226, L0.227, L0.228, L0.229, L0.230, L0.231, L0.232, L0.233, L0.234, L0.235, L0.236, L0.237, L0.238, L0.239, L0.240, L0.241, L0.242, L0.243, L0.244, L0.245, L0.246, L0.247, L0.248, L0.249, L0.250, L0.251, L0.252, L0.253, L0.254, L0.255, L0.256, L0.257, L0.258, L0.259, L0.260, L0.261, L0.262, L0.263, L0.264, L0.265, L0.266, L0.267, L0.268, L0.269, L0.270, L0.271, L0.272, L0.273, L0.274, L0.275, L0.276, L0.277, L0.278, L0.279, L0.280, L0.281, L0.282, L0.283, L0.284, L0.285, L0.286, L0.287, L0.288" - - " Creating 3 files" - - "**** Simulation run 2, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[101, 151]). 3 Input Files, 300mb total:" - - "L0 " - - "L0.290[51,100] 150ns 98mb|----------L0.290-----------| " - - "L0.291[101,150] 150ns 102mb |----------L0.291-----------| " - - "L0.292[150,200] 288ns 100mb |-----------L0.292-----------| " + - "L0.151[150,151] 151ns 2mb |L0.151| " + - "L0.152[151,152] 152ns 2mb |L0.152| " + - "L0.153[152,153] 153ns 2mb |L0.153| " + - "L0.154[153,154] 154ns 2mb |L0.154| " + - "L0.155[154,155] 155ns 2mb |L0.155| " + - "L0.156[155,156] 156ns 2mb |L0.156| " + - "L0.157[156,157] 157ns 2mb |L0.157| " + - "L0.158[157,158] 158ns 2mb |L0.158| " + - "L0.159[158,159] 159ns 2mb |L0.159| " + - "L0.160[159,160] 160ns 2mb |L0.160| " + - "L0.161[160,161] 161ns 2mb |L0.161| " + - "L0.162[161,162] 162ns 2mb |L0.162| " + - "L0.163[162,163] 163ns 2mb |L0.163| " + - "L0.164[163,164] 164ns 2mb |L0.164| " + - "L0.165[164,165] 165ns 2mb |L0.165| " + - "L0.166[165,166] 166ns 2mb |L0.166| " + - "L0.167[166,167] 167ns 2mb |L0.167| " + - "L0.168[167,168] 168ns 2mb |L0.168| " + - "L0.169[168,169] 169ns 2mb |L0.169| " + - "L0.170[169,170] 170ns 2mb |L0.170| " + - "L0.171[170,171] 171ns 2mb |L0.171| " + - "L0.172[171,172] 172ns 2mb |L0.172| " + - "L0.173[172,173] 173ns 2mb |L0.173| " + - "L0.174[173,174] 174ns 2mb |L0.174| " + - "L0.175[174,175] 175ns 2mb |L0.175| " + - "L0.176[175,176] 176ns 2mb |L0.176| " + - "L0.177[176,177] 177ns 2mb |L0.177| " + - "L0.178[177,178] 178ns 2mb |L0.178| " + - "L0.179[178,179] 179ns 2mb |L0.179| " + - "L0.180[179,180] 180ns 2mb |L0.180| " + - "L0.181[180,181] 181ns 2mb |L0.181| " + - "L0.182[181,182] 182ns 2mb |L0.182| " + - "L0.183[182,183] 183ns 2mb |L0.183| " + - "L0.184[183,184] 184ns 2mb |L0.184| " + - "L0.185[184,185] 185ns 2mb |L0.185| " + - "L0.186[185,186] 186ns 2mb |L0.186| " + - "L0.187[186,187] 187ns 2mb |L0.187| " + - "L0.188[187,188] 188ns 2mb |L0.188| " + - "L0.189[188,189] 189ns 2mb |L0.189| " + - "L0.190[189,190] 190ns 2mb |L0.190| " + - "L0.191[190,191] 191ns 2mb |L0.191| " + - "L0.192[191,192] 192ns 2mb |L0.192| " + - "L0.193[192,193] 193ns 2mb |L0.193| " + - "L0.194[193,194] 194ns 2mb |L0.194| " + - "L0.195[194,195] 195ns 2mb |L0.195| " + - "L0.196[195,196] 196ns 2mb |L0.196| " + - "L0.197[196,197] 197ns 2mb |L0.197| " + - "L0.198[197,198] 198ns 2mb |L0.198| " + - "L0.199[198,199] 199ns 2mb |L0.199| " + - "L0.200[199,200] 200ns 2mb |L0.200| " + - "L0.201[200,201] 201ns 2mb |L0.201| " + - "L0.202[201,202] 202ns 2mb |L0.202| " + - "L0.203[202,203] 203ns 2mb |L0.203| " + - "L0.204[203,204] 204ns 2mb |L0.204| " + - "L0.205[204,205] 205ns 2mb |L0.205| " + - "L0.206[205,206] 206ns 2mb |L0.206| " + - "L0.207[206,207] 207ns 2mb |L0.207| " + - "L0.208[207,208] 208ns 2mb |L0.208| " + - "L0.209[208,209] 209ns 2mb |L0.209| " + - "L0.210[209,210] 210ns 2mb |L0.210| " + - "L0.211[210,211] 211ns 2mb |L0.211| " + - "L0.212[211,212] 212ns 2mb |L0.212| " + - "L0.213[212,213] 213ns 2mb |L0.213| " + - "L0.214[213,214] 214ns 2mb |L0.214| " + - "L0.215[214,215] 215ns 2mb |L0.215| " + - "L0.216[215,216] 216ns 2mb |L0.216| " + - "L0.217[216,217] 217ns 2mb |L0.217| " + - "L0.218[217,218] 218ns 2mb |L0.218| " + - "L0.219[218,219] 219ns 2mb |L0.219| " + - "L0.220[219,220] 220ns 2mb |L0.220| " + - "L0.221[220,221] 221ns 2mb |L0.221| " + - "L0.222[221,222] 222ns 2mb |L0.222| " + - "L0.223[222,223] 223ns 2mb |L0.223| " + - "L0.224[223,224] 224ns 2mb |L0.224| " + - "L0.225[224,225] 225ns 2mb |L0.225| " + - "L0.226[225,226] 226ns 2mb |L0.226| " + - "L0.227[226,227] 227ns 2mb |L0.227| " + - "L0.228[227,228] 228ns 2mb |L0.228| " + - "L0.229[228,229] 229ns 2mb |L0.229| " + - "L0.230[229,230] 230ns 2mb |L0.230| " + - "L0.231[230,231] 231ns 2mb |L0.231| " + - "L0.232[231,232] 232ns 2mb |L0.232| " + - "L0.233[232,233] 233ns 2mb |L0.233| " + - "L0.234[233,234] 234ns 2mb |L0.234| " + - "L0.235[234,235] 235ns 2mb |L0.235| " + - "L0.236[235,236] 236ns 2mb |L0.236| " + - "L0.237[236,237] 237ns 2mb |L0.237|" + - "L0.238[237,238] 238ns 2mb |L0.238|" + - "L0.239[238,239] 239ns 2mb |L0.239|" + - "L0.240[239,240] 240ns 2mb |L0.240|" + - "L0.241[240,241] 241ns 2mb |L0.241|" + - "L0.242[241,242] 242ns 2mb |L0.242|" + - "L0.243[242,243] 243ns 2mb |L0.243|" + - "L0.244[243,244] 244ns 2mb |L0.244|" + - "L0.245[244,245] 245ns 2mb |L0.245|" + - "L0.246[245,246] 246ns 2mb |L0.246|" + - "L0.247[246,247] 247ns 2mb |L0.247|" + - "L0.248[247,248] 248ns 2mb |L0.248|" + - "L0.249[248,249] 249ns 2mb |L0.249|" + - "L1 " + - "L1.291[101,150] 150ns 102mb|----------L1.291-----------| " - "**** 3 Output Files (parquet_file_id not yet assigned), 300mb total:" - "L1 " - - "L1.?[51,101] 288ns 101mb |------------L1.?------------| " - - "L1.?[102,151] 288ns 99mb |-----------L1.?------------| " - - "L1.?[152,200] 288ns 101mb |-----------L1.?-----------| " + - "L1.?[101,151] 249ns 101mb|------------L1.?------------| " + - "L1.?[152,201] 249ns 99mb |-----------L1.?------------| " + - "L1.?[202,249] 249ns 99mb |-----------L1.?-----------| " - "Committing partition 1:" - - " Soft Deleting 3 files: L0.290, L0.291, L0.292" - - " Upgrading 1 files level to CompactionLevel::L1: L0.289" + - " Soft Deleting 100 files: L0.151, L0.152, L0.153, L0.154, L0.155, L0.156, L0.157, L0.158, L0.159, L0.160, L0.161, L0.162, L0.163, L0.164, L0.165, L0.166, L0.167, L0.168, L0.169, L0.170, L0.171, L0.172, L0.173, L0.174, L0.175, L0.176, L0.177, L0.178, L0.179, L0.180, L0.181, L0.182, L0.183, L0.184, L0.185, L0.186, L0.187, L0.188, L0.189, L0.190, L0.191, L0.192, L0.193, L0.194, L0.195, L0.196, L0.197, L0.198, L0.199, L0.200, L0.201, L0.202, L0.203, L0.204, L0.205, L0.206, L0.207, L0.208, L0.209, L0.210, L0.211, L0.212, L0.213, L0.214, L0.215, L0.216, L0.217, L0.218, L0.219, L0.220, L0.221, L0.222, L0.223, L0.224, L0.225, L0.226, L0.227, L0.228, L0.229, L0.230, L0.231, L0.232, L0.233, L0.234, L0.235, L0.236, L0.237, L0.238, L0.239, L0.240, L0.241, L0.242, L0.243, L0.244, L0.245, L0.246, L0.247, L0.248, L0.249, L1.291" - " Creating 3 files" - - "**** Simulation run 3, type=split(CompactAndSplitOutput(TotalSizeLessThanMaxCompactSize))(split_times=[251]). 2 Input Files, 176mb total:" + - "**** Simulation run 2, type=split(CompactAndSplitOutput(TotalSizeLessThanMaxCompactSize))(split_times=[251]). 40 Input Files, 177mb total:" - "L0 " - - "L0.294[251,288] 288ns 78mb |---------------L0.294---------------| " - - "L0.293[201,250] 288ns 98mb|---------------------L0.293---------------------| " - - "**** 2 Output Files (parquet_file_id not yet assigned), 176mb total:" + - "L0.288[287,288] 288ns 2mb |L0.288|" + - "L0.287[286,287] 287ns 2mb |L0.287|" + - "L0.286[285,286] 286ns 2mb |L0.286|" + - "L0.285[284,285] 285ns 2mb |L0.285|" + - "L0.284[283,284] 284ns 2mb |L0.284|" + - "L0.283[282,283] 283ns 2mb |L0.283|" + - "L0.282[281,282] 282ns 2mb |L0.282|" + - "L0.281[280,281] 281ns 2mb |L0.281| " + - "L0.280[279,280] 280ns 2mb |L0.280| " + - "L0.279[278,279] 279ns 2mb |L0.279| " + - "L0.278[277,278] 278ns 2mb |L0.278| " + - "L0.277[276,277] 277ns 2mb |L0.277| " + - "L0.276[275,276] 276ns 2mb |L0.276| " + - "L0.275[274,275] 275ns 2mb |L0.275| " + - "L0.274[273,274] 274ns 2mb |L0.274| " + - "L0.273[272,273] 273ns 2mb |L0.273| " + - "L0.272[271,272] 272ns 2mb |L0.272| " + - "L0.271[270,271] 271ns 2mb |L0.271| " + - "L0.270[269,270] 270ns 2mb |L0.270| " + - "L0.269[268,269] 269ns 2mb |L0.269| " + - "L0.268[267,268] 268ns 2mb |L0.268| " + - "L0.267[266,267] 267ns 2mb |L0.267| " + - "L0.266[265,266] 266ns 2mb |L0.266| " + - "L0.265[264,265] 265ns 2mb |L0.265| " + - "L0.264[263,264] 264ns 2mb |L0.264| " + - "L0.263[262,263] 263ns 2mb |L0.263| " + - "L0.262[261,262] 262ns 2mb |L0.262| " + - "L0.261[260,261] 261ns 2mb |L0.261| " + - "L0.260[259,260] 260ns 2mb |L0.260| " + - "L0.259[258,259] 259ns 2mb |L0.259| " + - "L0.258[257,258] 258ns 2mb |L0.258| " + - "L0.257[256,257] 257ns 2mb |L0.257| " + - "L0.256[255,256] 256ns 2mb |L0.256| " + - "L0.255[254,255] 255ns 2mb |L0.255| " + - "L0.254[253,254] 254ns 2mb |L0.254| " + - "L0.253[252,253] 253ns 2mb |L0.253| " + - "L0.252[251,252] 252ns 2mb |L0.252| " + - "L0.251[250,251] 251ns 2mb |L0.251| " + - "L0.250[249,250] 250ns 2mb |L0.250| " - "L1 " - - "L1.?[201,251] 288ns 101mb|----------------------L1.?-----------------------| " - - "L1.?[252,288] 288ns 75mb |---------------L1.?----------------| " - - "Committing partition 1:" - - " Soft Deleting 2 files: L0.293, L0.294" - - " Creating 2 files" - - "**** Simulation run 4, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[152]). 2 Input Files, 199mb total:" + - "L1.294[202,249] 249ns 99mb|--------------------L1.294---------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 177mb total:" - "L1 " - - "L1.296[102,151] 288ns 99mb|------------------L1.296-------------------| " - - "L1.297[152,200] 288ns 101mb |------------------L1.297------------------| " - - "**** 2 Output Files (parquet_file_id not yet assigned), 199mb total:" - - "L2 " - - "L2.?[102,152] 288ns 102mb|-------------------L2.?--------------------| " - - "L2.?[153,200] 288ns 98mb |------------------L2.?-------------------| " + - "L1.?[202,251] 288ns 101mb|----------------------L1.?-----------------------| " + - "L1.?[252,288] 288ns 76mb |---------------L1.?----------------| " - "Committing partition 1:" - - " Soft Deleting 2 files: L1.296, L1.297" - - " Upgrading 2 files level to CompactionLevel::L2: L1.289, L1.295" + - " Soft Deleting 40 files: L0.250, L0.251, L0.252, L0.253, L0.254, L0.255, L0.256, L0.257, L0.258, L0.259, L0.260, L0.261, L0.262, L0.263, L0.264, L0.265, L0.266, L0.267, L0.268, L0.269, L0.270, L0.271, L0.272, L0.273, L0.274, L0.275, L0.276, L0.277, L0.278, L0.279, L0.280, L0.281, L0.282, L0.283, L0.284, L0.285, L0.286, L0.287, L0.288, L1.294" - " Creating 2 files" - - "**** Simulation run 5, type=split(CompactAndSplitOutput(TotalSizeLessThanMaxCompactSize))(split_times=[280]). 1 Input Files, 75mb total:" - - "L1, all files 75mb " - - "L1.299[252,288] 288ns |-----------------------------------------L1.299-----------------------------------------|" - - "**** 2 Output Files (parquet_file_id not yet assigned), 75mb total:" + - "**** Simulation run 3, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[102, 153]). 3 Input Files, 299mb total:" + - "L1 " + - "L1.290[51,100] 150ns 98mb|----------L1.290-----------| " + - "L1.292[101,151] 249ns 101mb |-----------L1.292-----------| " + - "L1.293[152,201] 249ns 99mb |----------L1.293-----------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 299mb total:" - "L2 " - - "L2.?[252,280] 288ns 58mb |--------------------------------L2.?--------------------------------| " + - "L2.?[51,102] 249ns 102mb |------------L2.?------------| " + - "L2.?[103,153] 249ns 100mb |------------L2.?------------| " + - "L2.?[154,201] 249ns 98mb |-----------L2.?-----------| " + - "Committing partition 1:" + - " Soft Deleting 3 files: L1.290, L1.292, L1.293" + - " Upgrading 1 files level to CompactionLevel::L2: L1.289" + - " Creating 3 files" + - "**** Simulation run 4, type=split(CompactAndSplitOutput(TotalSizeLessThanMaxCompactSize))(split_times=[280]). 1 Input Files, 76mb total:" + - "L1, all files 76mb " + - "L1.296[252,288] 288ns |-----------------------------------------L1.296-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 76mb total:" + - "L2 " + - "L2.?[252,280] 288ns 59mb |--------------------------------L2.?--------------------------------| " - "L2.?[281,288] 288ns 17mb |-----L2.?------| " - "Committing partition 1:" - - " Soft Deleting 1 files: L1.299" - - " Upgrading 1 files level to CompactionLevel::L2: L1.298" + - " Soft Deleting 1 files: L1.296" + - " Upgrading 1 files level to CompactionLevel::L2: L1.295" - " Creating 2 files" - - "**** Final Output Files (1.3gb written)" + - "**** Final Output Files (1.13gb written)" - "L2 " - "L2.289[0,50] 150ns 100mb |---L2.289----| " - - "L2.295[51,101] 288ns 101mb |---L2.295----| " - - "L2.298[201,251] 288ns 101mb |---L2.298----| " - - "L2.300[102,152] 288ns 102mb |---L2.300----| " - - "L2.301[153,200] 288ns 98mb |---L2.301---| " - - "L2.302[252,280] 288ns 58mb |L2.302| " - - "L2.303[281,288] 288ns 17mb |L2.303|" + - "L2.295[202,251] 288ns 101mb |---L2.295----| " + - "L2.297[51,102] 249ns 102mb |---L2.297----| " + - "L2.298[103,153] 249ns 100mb |---L2.298----| " + - "L2.299[154,201] 249ns 98mb |---L2.299---| " + - "L2.300[252,280] 288ns 59mb |L2.300| " + - "L2.301[281,288] 288ns 17mb |L2.301|" "### ); } diff --git a/compactor/tests/layouts/mod.rs b/compactor/tests/layouts/mod.rs index 1a43bbbdb2..5fd1817e08 100644 --- a/compactor/tests/layouts/mod.rs +++ b/compactor/tests/layouts/mod.rs @@ -58,6 +58,7 @@ mod large_files; mod large_overlaps; mod many_files; mod single_timestamp; +mod stuck; use std::{sync::atomic::Ordering, time::Duration}; diff --git a/compactor/tests/layouts/stuck.rs b/compactor/tests/layouts/stuck.rs new file mode 100644 index 0000000000..8cff3f38d1 --- /dev/null +++ b/compactor/tests/layouts/stuck.rs @@ -0,0 +1,8059 @@ +//! layout test for scenario shown to get stuck compacting. +//! The original of this set of files is querying a catalog of a partition stuck doing +//! non-productive compactions (which needs veritical splitting to resolve the impasse). +//! +//! See [crate::layout] module for detailed documentation + +use data_types::CompactionLevel; +use iox_time::Time; +use std::time::Duration; + +use crate::layouts::{layout_setup_builder, parquet_builder, run_layout_scenario, ONE_MB}; +const MAX_DESIRED_FILE_SIZE: u64 = 100 * ONE_MB; + +#[tokio::test] +async fn stuck() { + test_helpers::maybe_start_logging(); + + let setup = layout_setup_builder() + .await + .with_max_num_files_per_plan(20) + .with_max_desired_file_size_bytes(MAX_DESIRED_FILE_SIZE) + .with_partition_timeout(Duration::from_millis(10000)) + .build() + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686841379000000000) + .with_max_time(1686853019000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686930563065100652)) + .with_file_size_bytes(149933875), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686841379000000000) + .with_max_time(1686845579000000000) + .with_compaction_level(CompactionLevel::Final) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686928811433793899)) + .with_file_size_bytes(103205619), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686841379000000000) + .with_max_time(1686853319000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686935546047601759)) + .with_file_size_bytes(150536767), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686841379000000000) + .with_max_time(1686871559000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686936871554969451)) + .with_file_size_bytes(102393626), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686841379000000000) + .with_max_time(1686854759000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686935947459465643)) + .with_file_size_bytes(87151809), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686841379000000000) + .with_max_time(1686845579000000000) + .with_compaction_level(CompactionLevel::FileNonOverlapped) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686928854574095806)) + .with_file_size_bytes(5682010), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686841379000000000) + .with_max_time(1686852839000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686935742511199929)) + .with_file_size_bytes(75607192), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686841379000000000) + .with_max_time(1686855419000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686935151542899174)) + .with_file_size_bytes(87166408), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686841379000000000) + .with_max_time(1686855059000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686929965334855957)) + .with_file_size_bytes(88035623), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686841379000000000) + .with_max_time(1686855659000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686931893702512591)) + .with_file_size_bytes(90543489), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686841379000000000) + .with_max_time(1686852899000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686934966479515832)) + .with_file_size_bytes(75851382), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686841379000000000) + .with_max_time(1686853079000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686931336078719452)) + .with_file_size_bytes(149692663), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686841379000000000) + .with_max_time(1686853319000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686929421018268948)) + .with_file_size_bytes(150619037), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686841379000000000) + .with_max_time(1686853379000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686930780953922120)) + .with_file_size_bytes(58021414), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686841379000000000) + .with_max_time(1686852839000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686929712329555892)) + .with_file_size_bytes(75536272), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686841379000000000) + .with_max_time(1686853019000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686933271571861107)) + .with_file_size_bytes(149014949), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686841379000000000) + .with_max_time(1686852899000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686931600579333716)) + .with_file_size_bytes(72914229), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686841379000000000) + .with_max_time(1686852959000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686933528170895870)) + .with_file_size_bytes(74896171), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686841379000000000) + .with_max_time(1686855119000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686933830062404735)) + .with_file_size_bytes(89245536), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686841379000000000) + .with_max_time(1686852119000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686934254955029762)) + .with_file_size_bytes(105905115), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686841379000000000) + .with_max_time(1686849719000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686932458050354802)) + .with_file_size_bytes(104819243), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686841379000000000) + .with_max_time(1686853679000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686934759745855254)) + .with_file_size_bytes(150386578), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686841379000000000) + .with_max_time(1686854219000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686932677391046778)) + .with_file_size_bytes(67069745), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686845639000000000) + .with_max_time(1686849779000000000) + .with_compaction_level(CompactionLevel::FileNonOverlapped) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686928854574095806)) + .with_file_size_bytes(5526463), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686845639000000000) + .with_max_time(1686849779000000000) + .with_compaction_level(CompactionLevel::Final) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686928811433793899)) + .with_file_size_bytes(101878097), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686849779000000000) + .with_max_time(1686858119000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686932458050354802)) + .with_file_size_bytes(104808702), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686849839000000000) + .with_max_time(1686850559000000000) + .with_compaction_level(CompactionLevel::Final) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686928811433793899)) + .with_file_size_bytes(21186155), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686849839000000000) + .with_max_time(1686850559000000000) + .with_compaction_level(CompactionLevel::FileNonOverlapped) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686928854574095806)) + .with_file_size_bytes(998505), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686850619000000000) + .with_max_time(1686854819000000000) + .with_compaction_level(CompactionLevel::FileNonOverlapped) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686928854574095806)) + .with_file_size_bytes(5580685), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686850619000000000) + .with_max_time(1686854819000000000) + .with_compaction_level(CompactionLevel::Final) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686928811433793899)) + .with_file_size_bytes(103246896), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686852179000000000) + .with_max_time(1686862859000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686934254955029762)) + .with_file_size_bytes(105513447), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686852899000000000) + .with_max_time(1686864359000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686935742511199929)) + .with_file_size_bytes(139541880), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686852899000000000) + .with_max_time(1686864359000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686929712329555892)) + .with_file_size_bytes(139400211), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686852959000000000) + .with_max_time(1686864419000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686931600579333716)) + .with_file_size_bytes(136888003), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686852959000000000) + .with_max_time(1686864419000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686934966479515832)) + .with_file_size_bytes(139953230), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686853019000000000) + .with_max_time(1686864599000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686933528170895870)) + .with_file_size_bytes(138845602), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686853079000000000) + .with_max_time(1686864659000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686933271571861107)) + .with_file_size_bytes(84174642), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686853079000000000) + .with_max_time(1686864659000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686930563065100652)) + .with_file_size_bytes(83486810), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686853139000000000) + .with_max_time(1686864839000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686931336078719452)) + .with_file_size_bytes(83035926), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686853379000000000) + .with_max_time(1686865259000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686929421018268948)) + .with_file_size_bytes(80749475), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686853379000000000) + .with_max_time(1686865259000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686935546047601759)) + .with_file_size_bytes(80622284), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686853439000000000) + .with_max_time(1686865439000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686930780953922120)) + .with_file_size_bytes(130471302), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686853739000000000) + .with_max_time(1686866039000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686934759745855254)) + .with_file_size_bytes(76518641), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686854279000000000) + .with_max_time(1686867059000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686932677391046778)) + .with_file_size_bytes(81222708), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686854819000000000) + .with_max_time(1686868199000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686935947459465643)) + .with_file_size_bytes(93828618), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686854879000000000) + .with_max_time(1686859019000000000) + .with_compaction_level(CompactionLevel::Final) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686928811433793899)) + .with_file_size_bytes(101899966), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686854879000000000) + .with_max_time(1686859019000000000) + .with_compaction_level(CompactionLevel::FileNonOverlapped) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686928854574095806)) + .with_file_size_bytes(5444939), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686855119000000000) + .with_max_time(1686868739000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686929965334855957)) + .with_file_size_bytes(97364742), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686855179000000000) + .with_max_time(1686868859000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686933830062404735)) + .with_file_size_bytes(96919046), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686855479000000000) + .with_max_time(1686869519000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686935151542899174)) + .with_file_size_bytes(101734904), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686855719000000000) + .with_max_time(1686869939000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686931893702512591)) + .with_file_size_bytes(100008012), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686858179000000000) + .with_max_time(1686865979000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686932458050354802)) + .with_file_size_bytes(98556380), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686859079000000000) + .with_max_time(1686859499000000000) + .with_compaction_level(CompactionLevel::FileNonOverlapped) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686928854574095806)) + .with_file_size_bytes(593319), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686859079000000000) + .with_max_time(1686859499000000000) + .with_compaction_level(CompactionLevel::Final) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686928811433793899)) + .with_file_size_bytes(14403989), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686859559000000000) + .with_max_time(1686863699000000000) + .with_compaction_level(CompactionLevel::FileNonOverlapped) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686928854574095806)) + .with_file_size_bytes(5423734), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686859559000000000) + .with_max_time(1686863699000000000) + .with_compaction_level(CompactionLevel::Final) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686928811433793899)) + .with_file_size_bytes(101893482), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686862919000000000) + .with_max_time(1686873599000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686934254955029762)) + .with_file_size_bytes(102580493), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686863759000000000) + .with_max_time(1686867659000000000) + .with_compaction_level(CompactionLevel::FileNonOverlapped) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686928854574095806)) + .with_file_size_bytes(5026731), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686863759000000000) + .with_max_time(1686867839000000000) + .with_compaction_level(CompactionLevel::Final) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686928811433793899)) + .with_file_size_bytes(100495018), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686864419000000000) + .with_max_time(1686873599000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686929712329555892)) + .with_file_size_bytes(78503529), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686864419000000000) + .with_max_time(1686873599000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686935742511199929)) + .with_file_size_bytes(78149265), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686864479000000000) + .with_max_time(1686873599000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686934966479515832)) + .with_file_size_bytes(77391966), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686864479000000000) + .with_max_time(1686873599000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686931600579333716)) + .with_file_size_bytes(83215868), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686864659000000000) + .with_max_time(1686873599000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686933528170895870)) + .with_file_size_bytes(76904008), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686864719000000000) + .with_max_time(1686873599000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686930563065100652)) + .with_file_size_bytes(56776838), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686864719000000000) + .with_max_time(1686873599000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686933271571861107)) + .with_file_size_bytes(56708180), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686864899000000000) + .with_max_time(1686873599000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686931336078719452)) + .with_file_size_bytes(55114047), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686865319000000000) + .with_max_time(1686873599000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686929421018268948)) + .with_file_size_bytes(51263308), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686865319000000000) + .with_max_time(1686873599000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686935546047601759)) + .with_file_size_bytes(51157926), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686865499000000000) + .with_max_time(1686873599000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686930780953922120)) + .with_file_size_bytes(92510190), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686866099000000000) + .with_max_time(1686873599000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686934759745855254)) + .with_file_size_bytes(46749740), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686867119000000000) + .with_max_time(1686873599000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686932677391046778)) + .with_file_size_bytes(114531826), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686867719000000000) + .with_max_time(1686867839000000000) + .with_compaction_level(CompactionLevel::FileNonOverlapped) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686928854574095806)) + .with_file_size_bytes(229903), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686867899000000000) + .with_max_time(1686868319000000000) + .with_compaction_level(CompactionLevel::Final) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686928811433793899)) + .with_file_size_bytes(14513946), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686867899000000000) + .with_max_time(1686868319000000000) + .with_compaction_level(CompactionLevel::FileNonOverlapped) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686928854574095806)) + .with_file_size_bytes(602054), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686868259000000000) + .with_max_time(1686873599000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686935947459465643)) + .with_file_size_bytes(70522099), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686868379000000000) + .with_max_time(1686873599000000000) + .with_compaction_level(CompactionLevel::FileNonOverlapped) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686928854574095806)) + .with_file_size_bytes(93408439), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686868379000000000) + .with_max_time(1686873599000000000) + .with_compaction_level(CompactionLevel::Final) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686928118432114258)) + .with_file_size_bytes(41089381), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686868799000000000) + .with_max_time(1686873599000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686929965334855957)) + .with_file_size_bytes(61094135), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686868919000000000) + .with_max_time(1686873599000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686933830062404735)) + .with_file_size_bytes(59466261), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686869579000000000) + .with_max_time(1686873599000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686935151542899174)) + .with_file_size_bytes(51024344), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686869999000000000) + .with_max_time(1686873599000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686931893702512591)) + .with_file_size_bytes(45632935), + ) + .await; + + setup + .partition + .create_parquet_file( + parquet_builder() + .with_min_time(1686871619000000000) + .with_max_time(1686873599000000000) + .with_compaction_level(CompactionLevel::Initial) + .with_max_l0_created_at(Time::from_timestamp_nanos(1686936871554969451)) + .with_file_size_bytes(9380799), + ) + .await; + + insta::assert_yaml_snapshot!( + run_layout_scenario(&setup).await, + @r###" + --- + - "**** Input Files " + - "L0 " + - "L0.1[1686841379000000000,1686853019000000000] 1686930563.07s 143mb|-------------L0.1-------------| " + - "L0.3[1686841379000000000,1686853319000000000] 1686935546.05s 144mb|-------------L0.3--------------| " + - "L0.4[1686841379000000000,1686871559000000000] 1686936871.55s 98mb|---------------------------------------L0.4---------------------------------------| " + - "L0.5[1686841379000000000,1686854759000000000] 1686935947.46s 83mb|---------------L0.5----------------| " + - "L0.7[1686841379000000000,1686852839000000000] 1686935742.51s 72mb|-------------L0.7-------------| " + - "L0.8[1686841379000000000,1686855419000000000] 1686935151.54s 83mb|----------------L0.8-----------------| " + - "L0.9[1686841379000000000,1686855059000000000] 1686929965.33s 84mb|----------------L0.9----------------| " + - "L0.10[1686841379000000000,1686855659000000000] 1686931893.7s 86mb|----------------L0.10----------------| " + - "L0.11[1686841379000000000,1686852899000000000] 1686934966.48s 72mb|------------L0.11-------------| " + - "L0.12[1686841379000000000,1686853079000000000] 1686931336.08s 143mb|------------L0.12-------------| " + - "L0.13[1686841379000000000,1686853319000000000] 1686929421.02s 144mb|-------------L0.13-------------| " + - "L0.14[1686841379000000000,1686853379000000000] 1686930780.95s 55mb|-------------L0.14-------------| " + - "L0.15[1686841379000000000,1686852839000000000] 1686929712.33s 72mb|------------L0.15-------------| " + - "L0.16[1686841379000000000,1686853019000000000] 1686933271.57s 142mb|------------L0.16-------------| " + - "L0.17[1686841379000000000,1686852899000000000] 1686931600.58s 70mb|------------L0.17-------------| " + - "L0.18[1686841379000000000,1686852959000000000] 1686933528.17s 71mb|------------L0.18-------------| " + - "L0.19[1686841379000000000,1686855119000000000] 1686933830.06s 85mb|---------------L0.19----------------| " + - "L0.20[1686841379000000000,1686852119000000000] 1686934254.96s 101mb|-----------L0.20------------| " + - "L0.21[1686841379000000000,1686849719000000000] 1686932458.05s 100mb|--------L0.21--------| " + - "L0.22[1686841379000000000,1686853679000000000] 1686934759.75s 143mb|-------------L0.22--------------| " + - "L0.23[1686841379000000000,1686854219000000000] 1686932677.39s 64mb|--------------L0.23--------------| " + - "L0.26[1686849779000000000,1686858119000000000] 1686932458.05s 100mb |--------L0.26--------| " + - "L0.31[1686852179000000000,1686862859000000000] 1686934254.96s 101mb |-----------L0.31-----------| " + - "L0.32[1686852899000000000,1686864359000000000] 1686935742.51s 133mb |------------L0.32-------------| " + - "L0.33[1686852899000000000,1686864359000000000] 1686929712.33s 133mb |------------L0.33-------------| " + - "L0.34[1686852959000000000,1686864419000000000] 1686931600.58s 131mb |------------L0.34-------------| " + - "L0.35[1686852959000000000,1686864419000000000] 1686934966.48s 133mb |------------L0.35-------------| " + - "L0.36[1686853019000000000,1686864599000000000] 1686933528.17s 132mb |------------L0.36-------------| " + - "L0.37[1686853079000000000,1686864659000000000] 1686933271.57s 80mb |------------L0.37-------------| " + - "L0.38[1686853079000000000,1686864659000000000] 1686930563.07s 80mb |------------L0.38-------------| " + - "L0.39[1686853139000000000,1686864839000000000] 1686931336.08s 79mb |------------L0.39-------------| " + - "L0.40[1686853379000000000,1686865259000000000] 1686929421.02s 77mb |-------------L0.40-------------| " + - "L0.41[1686853379000000000,1686865259000000000] 1686935546.05s 77mb |-------------L0.41-------------| " + - "L0.42[1686853439000000000,1686865439000000000] 1686930780.95s 124mb |-------------L0.42-------------| " + - "L0.43[1686853739000000000,1686866039000000000] 1686934759.75s 73mb |-------------L0.43--------------| " + - "L0.44[1686854279000000000,1686867059000000000] 1686932677.39s 77mb |--------------L0.44--------------| " + - "L0.45[1686854819000000000,1686868199000000000] 1686935947.46s 89mb |---------------L0.45---------------| " + - "L0.48[1686855119000000000,1686868739000000000] 1686929965.33s 93mb |---------------L0.48----------------| " + - "L0.49[1686855179000000000,1686868859000000000] 1686933830.06s 92mb |---------------L0.49----------------| " + - "L0.50[1686855479000000000,1686869519000000000] 1686935151.54s 97mb |----------------L0.50----------------| " + - "L0.51[1686855719000000000,1686869939000000000] 1686931893.7s 95mb |----------------L0.51----------------| " + - "L0.52[1686858179000000000,1686865979000000000] 1686932458.05s 94mb |-------L0.52-------| " + - "L0.57[1686862919000000000,1686873599000000000] 1686934254.96s 98mb |-----------L0.57-----------| " + - "L0.60[1686864419000000000,1686873599000000000] 1686929712.33s 75mb |---------L0.60---------| " + - "L0.61[1686864419000000000,1686873599000000000] 1686935742.51s 75mb |---------L0.61---------| " + - "L0.62[1686864479000000000,1686873599000000000] 1686934966.48s 74mb |---------L0.62---------| " + - "L0.63[1686864479000000000,1686873599000000000] 1686931600.58s 79mb |---------L0.63---------| " + - "L0.64[1686864659000000000,1686873599000000000] 1686933528.17s 73mb |--------L0.64---------| " + - "L0.65[1686864719000000000,1686873599000000000] 1686930563.07s 54mb |--------L0.65---------| " + - "L0.66[1686864719000000000,1686873599000000000] 1686933271.57s 54mb |--------L0.66---------| " + - "L0.67[1686864899000000000,1686873599000000000] 1686931336.08s 53mb |--------L0.67---------| " + - "L0.68[1686865319000000000,1686873599000000000] 1686929421.02s 49mb |--------L0.68--------| " + - "L0.69[1686865319000000000,1686873599000000000] 1686935546.05s 49mb |--------L0.69--------| " + - "L0.70[1686865499000000000,1686873599000000000] 1686930780.95s 88mb |-------L0.70--------| " + - "L0.71[1686866099000000000,1686873599000000000] 1686934759.75s 45mb |------L0.71-------| " + - "L0.72[1686867119000000000,1686873599000000000] 1686932677.39s 109mb |-----L0.72------| " + - "L0.76[1686868259000000000,1686873599000000000] 1686935947.46s 67mb |---L0.76----| " + - "L0.79[1686868799000000000,1686873599000000000] 1686929965.33s 58mb |---L0.79---| " + - "L0.80[1686868919000000000,1686873599000000000] 1686933830.06s 57mb |---L0.80---| " + - "L0.81[1686869579000000000,1686873599000000000] 1686935151.54s 49mb |--L0.81--| " + - "L0.82[1686869999000000000,1686873599000000000] 1686931893.7s 44mb |-L0.82--| " + - "L0.83[1686871619000000000,1686873599000000000] 1686936871.55s 9mb |L0.83|" + - "L1 " + - "L1.6[1686841379000000000,1686845579000000000] 1686928854.57s 5mb|--L1.6---| " + - "L1.24[1686845639000000000,1686849779000000000] 1686928854.57s 5mb |--L1.24--| " + - "L1.28[1686849839000000000,1686850559000000000] 1686928854.57s 975kb |L1.28| " + - "L1.29[1686850619000000000,1686854819000000000] 1686928854.57s 5mb |--L1.29--| " + - "L1.47[1686854879000000000,1686859019000000000] 1686928854.57s 5mb |--L1.47--| " + - "L1.53[1686859079000000000,1686859499000000000] 1686928854.57s 579kb |L1.53| " + - "L1.55[1686859559000000000,1686863699000000000] 1686928854.57s 5mb |--L1.55--| " + - "L1.58[1686863759000000000,1686867659000000000] 1686928854.57s 5mb |-L1.58--| " + - "L1.73[1686867719000000000,1686867839000000000] 1686928854.57s 225kb |L1.73| " + - "L1.75[1686867899000000000,1686868319000000000] 1686928854.57s 588kb |L1.75| " + - "L1.77[1686868379000000000,1686873599000000000] 1686928854.57s 89mb |---L1.77----| " + - "L2 " + - "L2.2[1686841379000000000,1686845579000000000] 1686928811.43s 98mb|--L2.2---| " + - "L2.25[1686845639000000000,1686849779000000000] 1686928811.43s 97mb |--L2.25--| " + - "L2.27[1686849839000000000,1686850559000000000] 1686928811.43s 20mb |L2.27| " + - "L2.30[1686850619000000000,1686854819000000000] 1686928811.43s 98mb |--L2.30--| " + - "L2.46[1686854879000000000,1686859019000000000] 1686928811.43s 97mb |--L2.46--| " + - "L2.54[1686859079000000000,1686859499000000000] 1686928811.43s 14mb |L2.54| " + - "L2.56[1686859559000000000,1686863699000000000] 1686928811.43s 97mb |--L2.56--| " + - "L2.59[1686863759000000000,1686867839000000000] 1686928811.43s 96mb |--L2.59--| " + - "L2.74[1686867899000000000,1686868319000000000] 1686928811.43s 14mb |L2.74| " + - "L2.78[1686868379000000000,1686873599000000000] 1686928118.43s 39mb |---L2.78----| " + - "**** Simulation run 0, type=split(HighL0OverlapTotalBacklog)(split_times=[1686842249810810810, 1686843120621621620, 1686843991432432430, 1686844862243243240]). 1 Input Files, 5mb total:" + - "L1, all files 5mb " + - "L1.6[1686841379000000000,1686845579000000000] 1686928854.57s|------------------------------------------L1.6------------------------------------------|" + - "**** 5 Output Files (parquet_file_id not yet assigned), 5mb total:" + - "L1 " + - "L1.?[1686841379000000000,1686842249810810810] 1686928854.57s 1mb|------L1.?------| " + - "L1.?[1686842249810810811,1686843120621621620] 1686928854.57s 1mb |------L1.?------| " + - "L1.?[1686843120621621621,1686843991432432430] 1686928854.57s 1mb |------L1.?------| " + - "L1.?[1686843991432432431,1686844862243243240] 1686928854.57s 1mb |------L1.?------| " + - "L1.?[1686844862243243241,1686845579000000000] 1686928854.57s 947kb |----L1.?-----| " + - "**** Simulation run 1, type=split(HighL0OverlapTotalBacklog)(split_times=[1686842249810810810, 1686843120621621620, 1686843991432432430, 1686844862243243240, 1686845733054054050, 1686846603864864860, 1686847474675675670, 1686848345486486480, 1686849216297297290, 1686850087108108100, 1686850957918918910, 1686851828729729720, 1686852699540540530]). 1 Input Files, 144mb total:" + - "L0, all files 144mb " + - "L0.13[1686841379000000000,1686853319000000000] 1686929421.02s|-----------------------------------------L0.13------------------------------------------|" + - "**** 14 Output Files (parquet_file_id not yet assigned), 144mb total:" + - "L0 " + - "L0.?[1686841379000000000,1686842249810810810] 1686929421.02s 10mb|L0.?| " + - "L0.?[1686842249810810811,1686843120621621620] 1686929421.02s 10mb |L0.?| " + - "L0.?[1686843120621621621,1686843991432432430] 1686929421.02s 10mb |L0.?| " + - "L0.?[1686843991432432431,1686844862243243240] 1686929421.02s 10mb |L0.?| " + - "L0.?[1686844862243243241,1686845733054054050] 1686929421.02s 10mb |L0.?| " + - "L0.?[1686845733054054051,1686846603864864860] 1686929421.02s 10mb |L0.?| " + - "L0.?[1686846603864864861,1686847474675675670] 1686929421.02s 10mb |L0.?| " + - "L0.?[1686847474675675671,1686848345486486480] 1686929421.02s 10mb |L0.?| " + - "L0.?[1686848345486486481,1686849216297297290] 1686929421.02s 10mb |L0.?| " + - "L0.?[1686849216297297291,1686850087108108100] 1686929421.02s 10mb |L0.?| " + - "L0.?[1686850087108108101,1686850957918918910] 1686929421.02s 10mb |L0.?| " + - "L0.?[1686850957918918911,1686851828729729720] 1686929421.02s 10mb |L0.?| " + - "L0.?[1686851828729729721,1686852699540540530] 1686929421.02s 10mb |L0.?| " + - "L0.?[1686852699540540531,1686853319000000000] 1686929421.02s 7mb |L0.?|" + - "**** Simulation run 2, type=split(HighL0OverlapTotalBacklog)(split_times=[1686842249810810810, 1686843120621621620, 1686843991432432430, 1686844862243243240, 1686845733054054050, 1686846603864864860, 1686847474675675670, 1686848345486486480, 1686849216297297290, 1686850087108108100, 1686850957918918910, 1686851828729729720, 1686852699540540530]). 1 Input Files, 72mb total:" + - "L0, all files 72mb " + - "L0.15[1686841379000000000,1686852839000000000] 1686929712.33s|-----------------------------------------L0.15------------------------------------------|" + - "**** 14 Output Files (parquet_file_id not yet assigned), 72mb total:" + - "L0 " + - "L0.?[1686841379000000000,1686842249810810810] 1686929712.33s 5mb|L0.?| " + - "L0.?[1686842249810810811,1686843120621621620] 1686929712.33s 5mb |L0.?| " + - "L0.?[1686843120621621621,1686843991432432430] 1686929712.33s 5mb |L0.?| " + - "L0.?[1686843991432432431,1686844862243243240] 1686929712.33s 5mb |L0.?| " + - "L0.?[1686844862243243241,1686845733054054050] 1686929712.33s 5mb |L0.?| " + - "L0.?[1686845733054054051,1686846603864864860] 1686929712.33s 5mb |L0.?| " + - "L0.?[1686846603864864861,1686847474675675670] 1686929712.33s 5mb |L0.?| " + - "L0.?[1686847474675675671,1686848345486486480] 1686929712.33s 5mb |L0.?| " + - "L0.?[1686848345486486481,1686849216297297290] 1686929712.33s 5mb |L0.?| " + - "L0.?[1686849216297297291,1686850087108108100] 1686929712.33s 5mb |L0.?| " + - "L0.?[1686850087108108101,1686850957918918910] 1686929712.33s 5mb |L0.?| " + - "L0.?[1686850957918918911,1686851828729729720] 1686929712.33s 5mb |L0.?| " + - "L0.?[1686851828729729721,1686852699540540530] 1686929712.33s 5mb |L0.?| " + - "L0.?[1686852699540540531,1686852839000000000] 1686929712.33s 898kb |L0.?|" + - "**** Simulation run 3, type=split(HighL0OverlapTotalBacklog)(split_times=[1686842249810810810, 1686843120621621620, 1686843991432432430, 1686844862243243240, 1686845733054054050, 1686846603864864860, 1686847474675675670, 1686848345486486480, 1686849216297297290, 1686850087108108100, 1686850957918918910, 1686851828729729720, 1686852699540540530, 1686853570351351340, 1686854441162162150]). 1 Input Files, 84mb total:" + - "L0, all files 84mb " + - "L0.9[1686841379000000000,1686855059000000000] 1686929965.33s|------------------------------------------L0.9------------------------------------------|" + - "**** 16 Output Files (parquet_file_id not yet assigned), 84mb total:" + - "L0 " + - "L0.?[1686841379000000000,1686842249810810810] 1686929965.33s 5mb|L0.?| " + - "L0.?[1686842249810810811,1686843120621621620] 1686929965.33s 5mb |L0.?| " + - "L0.?[1686843120621621621,1686843991432432430] 1686929965.33s 5mb |L0.?| " + - "L0.?[1686843991432432431,1686844862243243240] 1686929965.33s 5mb |L0.?| " + - "L0.?[1686844862243243241,1686845733054054050] 1686929965.33s 5mb |L0.?| " + - "L0.?[1686845733054054051,1686846603864864860] 1686929965.33s 5mb |L0.?| " + - "L0.?[1686846603864864861,1686847474675675670] 1686929965.33s 5mb |L0.?| " + - "L0.?[1686847474675675671,1686848345486486480] 1686929965.33s 5mb |L0.?| " + - "L0.?[1686848345486486481,1686849216297297290] 1686929965.33s 5mb |L0.?| " + - "L0.?[1686849216297297291,1686850087108108100] 1686929965.33s 5mb |L0.?| " + - "L0.?[1686850087108108101,1686850957918918910] 1686929965.33s 5mb |L0.?| " + - "L0.?[1686850957918918911,1686851828729729720] 1686929965.33s 5mb |L0.?| " + - "L0.?[1686851828729729721,1686852699540540530] 1686929965.33s 5mb |L0.?| " + - "L0.?[1686852699540540531,1686853570351351340] 1686929965.33s 5mb |L0.?| " + - "L0.?[1686853570351351341,1686854441162162150] 1686929965.33s 5mb |L0.?| " + - "L0.?[1686854441162162151,1686855059000000000] 1686929965.33s 4mb |L0.?|" + - "**** Simulation run 4, type=split(HighL0OverlapTotalBacklog)(split_times=[1686842249810810810, 1686843120621621620, 1686843991432432430, 1686844862243243240, 1686845733054054050, 1686846603864864860, 1686847474675675670, 1686848345486486480, 1686849216297297290, 1686850087108108100, 1686850957918918910, 1686851828729729720, 1686852699540540530]). 1 Input Files, 143mb total:" + - "L0, all files 143mb " + - "L0.1[1686841379000000000,1686853019000000000] 1686930563.07s|------------------------------------------L0.1------------------------------------------|" + - "**** 14 Output Files (parquet_file_id not yet assigned), 143mb total:" + - "L0 " + - "L0.?[1686841379000000000,1686842249810810810] 1686930563.07s 11mb|L0.?| " + - "L0.?[1686842249810810811,1686843120621621620] 1686930563.07s 11mb |L0.?| " + - "L0.?[1686843120621621621,1686843991432432430] 1686930563.07s 11mb |L0.?| " + - "L0.?[1686843991432432431,1686844862243243240] 1686930563.07s 11mb |L0.?| " + - "L0.?[1686844862243243241,1686845733054054050] 1686930563.07s 11mb |L0.?| " + - "L0.?[1686845733054054051,1686846603864864860] 1686930563.07s 11mb |L0.?| " + - "L0.?[1686846603864864861,1686847474675675670] 1686930563.07s 11mb |L0.?| " + - "L0.?[1686847474675675671,1686848345486486480] 1686930563.07s 11mb |L0.?| " + - "L0.?[1686848345486486481,1686849216297297290] 1686930563.07s 11mb |L0.?| " + - "L0.?[1686849216297297291,1686850087108108100] 1686930563.07s 11mb |L0.?| " + - "L0.?[1686850087108108101,1686850957918918910] 1686930563.07s 11mb |L0.?| " + - "L0.?[1686850957918918911,1686851828729729720] 1686930563.07s 11mb |L0.?| " + - "L0.?[1686851828729729721,1686852699540540530] 1686930563.07s 11mb |L0.?| " + - "L0.?[1686852699540540531,1686853019000000000] 1686930563.07s 4mb |L0.?|" + - "**** Simulation run 5, type=split(HighL0OverlapTotalBacklog)(split_times=[1686842249810810810, 1686843120621621620, 1686843991432432430, 1686844862243243240, 1686845733054054050, 1686846603864864860, 1686847474675675670, 1686848345486486480, 1686849216297297290, 1686850087108108100, 1686850957918918910, 1686851828729729720, 1686852699540540530]). 1 Input Files, 55mb total:" + - "L0, all files 55mb " + - "L0.14[1686841379000000000,1686853379000000000] 1686930780.95s|-----------------------------------------L0.14------------------------------------------|" + - "**** 14 Output Files (parquet_file_id not yet assigned), 55mb total:" + - "L0 " + - "L0.?[1686841379000000000,1686842249810810810] 1686930780.95s 4mb|L0.?| " + - "L0.?[1686842249810810811,1686843120621621620] 1686930780.95s 4mb |L0.?| " + - "L0.?[1686843120621621621,1686843991432432430] 1686930780.95s 4mb |L0.?| " + - "L0.?[1686843991432432431,1686844862243243240] 1686930780.95s 4mb |L0.?| " + - "L0.?[1686844862243243241,1686845733054054050] 1686930780.95s 4mb |L0.?| " + - "L0.?[1686845733054054051,1686846603864864860] 1686930780.95s 4mb |L0.?| " + - "L0.?[1686846603864864861,1686847474675675670] 1686930780.95s 4mb |L0.?| " + - "L0.?[1686847474675675671,1686848345486486480] 1686930780.95s 4mb |L0.?| " + - "L0.?[1686848345486486481,1686849216297297290] 1686930780.95s 4mb |L0.?| " + - "L0.?[1686849216297297291,1686850087108108100] 1686930780.95s 4mb |L0.?| " + - "L0.?[1686850087108108101,1686850957918918910] 1686930780.95s 4mb |L0.?| " + - "L0.?[1686850957918918911,1686851828729729720] 1686930780.95s 4mb |L0.?| " + - "L0.?[1686851828729729721,1686852699540540530] 1686930780.95s 4mb |L0.?| " + - "L0.?[1686852699540540531,1686853379000000000] 1686930780.95s 3mb |L0.?|" + - "**** Simulation run 6, type=split(HighL0OverlapTotalBacklog)(split_times=[1686842249810810810, 1686843120621621620, 1686843991432432430, 1686844862243243240, 1686845733054054050, 1686846603864864860, 1686847474675675670, 1686848345486486480, 1686849216297297290, 1686850087108108100, 1686850957918918910, 1686851828729729720, 1686852699540540530]). 1 Input Files, 143mb total:" + - "L0, all files 143mb " + - "L0.12[1686841379000000000,1686853079000000000] 1686931336.08s|-----------------------------------------L0.12------------------------------------------|" + - "**** 14 Output Files (parquet_file_id not yet assigned), 143mb total:" + - "L0 " + - "L0.?[1686841379000000000,1686842249810810810] 1686931336.08s 11mb|L0.?| " + - "L0.?[1686842249810810811,1686843120621621620] 1686931336.08s 11mb |L0.?| " + - "L0.?[1686843120621621621,1686843991432432430] 1686931336.08s 11mb |L0.?| " + - "L0.?[1686843991432432431,1686844862243243240] 1686931336.08s 11mb |L0.?| " + - "L0.?[1686844862243243241,1686845733054054050] 1686931336.08s 11mb |L0.?| " + - "L0.?[1686845733054054051,1686846603864864860] 1686931336.08s 11mb |L0.?| " + - "L0.?[1686846603864864861,1686847474675675670] 1686931336.08s 11mb |L0.?| " + - "L0.?[1686847474675675671,1686848345486486480] 1686931336.08s 11mb |L0.?| " + - "L0.?[1686848345486486481,1686849216297297290] 1686931336.08s 11mb |L0.?| " + - "L0.?[1686849216297297291,1686850087108108100] 1686931336.08s 11mb |L0.?| " + - "L0.?[1686850087108108101,1686850957918918910] 1686931336.08s 11mb |L0.?| " + - "L0.?[1686850957918918911,1686851828729729720] 1686931336.08s 11mb |L0.?| " + - "L0.?[1686851828729729721,1686852699540540530] 1686931336.08s 11mb |L0.?| " + - "L0.?[1686852699540540531,1686853079000000000] 1686931336.08s 5mb |L0.?|" + - "**** Simulation run 7, type=split(HighL0OverlapTotalBacklog)(split_times=[1686842249810810810, 1686843120621621620, 1686843991432432430, 1686844862243243240, 1686845733054054050, 1686846603864864860, 1686847474675675670, 1686848345486486480, 1686849216297297290, 1686850087108108100, 1686850957918918910, 1686851828729729720, 1686852699540540530]). 1 Input Files, 70mb total:" + - "L0, all files 70mb " + - "L0.17[1686841379000000000,1686852899000000000] 1686931600.58s|-----------------------------------------L0.17------------------------------------------|" + - "**** 14 Output Files (parquet_file_id not yet assigned), 70mb total:" + - "L0 " + - "L0.?[1686841379000000000,1686842249810810810] 1686931600.58s 5mb|L0.?| " + - "L0.?[1686842249810810811,1686843120621621620] 1686931600.58s 5mb |L0.?| " + - "L0.?[1686843120621621621,1686843991432432430] 1686931600.58s 5mb |L0.?| " + - "L0.?[1686843991432432431,1686844862243243240] 1686931600.58s 5mb |L0.?| " + - "L0.?[1686844862243243241,1686845733054054050] 1686931600.58s 5mb |L0.?| " + - "L0.?[1686845733054054051,1686846603864864860] 1686931600.58s 5mb |L0.?| " + - "L0.?[1686846603864864861,1686847474675675670] 1686931600.58s 5mb |L0.?| " + - "L0.?[1686847474675675671,1686848345486486480] 1686931600.58s 5mb |L0.?| " + - "L0.?[1686848345486486481,1686849216297297290] 1686931600.58s 5mb |L0.?| " + - "L0.?[1686849216297297291,1686850087108108100] 1686931600.58s 5mb |L0.?| " + - "L0.?[1686850087108108101,1686850957918918910] 1686931600.58s 5mb |L0.?| " + - "L0.?[1686850957918918911,1686851828729729720] 1686931600.58s 5mb |L0.?| " + - "L0.?[1686851828729729721,1686852699540540530] 1686931600.58s 5mb |L0.?| " + - "L0.?[1686852699540540531,1686852899000000000] 1686931600.58s 1mb |L0.?|" + - "**** Simulation run 8, type=split(HighL0OverlapTotalBacklog)(split_times=[1686842249810810810, 1686843120621621620, 1686843991432432430, 1686844862243243240, 1686845733054054050, 1686846603864864860, 1686847474675675670, 1686848345486486480, 1686849216297297290, 1686850087108108100, 1686850957918918910, 1686851828729729720, 1686852699540540530, 1686853570351351340, 1686854441162162150, 1686855311972972960]). 1 Input Files, 86mb total:" + - "L0, all files 86mb " + - "L0.10[1686841379000000000,1686855659000000000] 1686931893.7s|-----------------------------------------L0.10------------------------------------------|" + - "**** 17 Output Files (parquet_file_id not yet assigned), 86mb total:" + - "L0 " + - "L0.?[1686841379000000000,1686842249810810810] 1686931893.7s 5mb|L0.?| " + - "L0.?[1686842249810810811,1686843120621621620] 1686931893.7s 5mb |L0.?| " + - "L0.?[1686843120621621621,1686843991432432430] 1686931893.7s 5mb |L0.?| " + - "L0.?[1686843991432432431,1686844862243243240] 1686931893.7s 5mb |L0.?| " + - "L0.?[1686844862243243241,1686845733054054050] 1686931893.7s 5mb |L0.?| " + - "L0.?[1686845733054054051,1686846603864864860] 1686931893.7s 5mb |L0.?| " + - "L0.?[1686846603864864861,1686847474675675670] 1686931893.7s 5mb |L0.?| " + - "L0.?[1686847474675675671,1686848345486486480] 1686931893.7s 5mb |L0.?| " + - "L0.?[1686848345486486481,1686849216297297290] 1686931893.7s 5mb |L0.?| " + - "L0.?[1686849216297297291,1686850087108108100] 1686931893.7s 5mb |L0.?| " + - "L0.?[1686850087108108101,1686850957918918910] 1686931893.7s 5mb |L0.?| " + - "L0.?[1686850957918918911,1686851828729729720] 1686931893.7s 5mb |L0.?| " + - "L0.?[1686851828729729721,1686852699540540530] 1686931893.7s 5mb |L0.?| " + - "L0.?[1686852699540540531,1686853570351351340] 1686931893.7s 5mb |L0.?| " + - "L0.?[1686853570351351341,1686854441162162150] 1686931893.7s 5mb |L0.?| " + - "L0.?[1686854441162162151,1686855311972972960] 1686931893.7s 5mb |L0.?| " + - "L0.?[1686855311972972961,1686855659000000000] 1686931893.7s 2mb |L0.?|" + - "**** Simulation run 9, type=split(HighL0OverlapTotalBacklog)(split_times=[1686842249810810810, 1686843120621621620, 1686843991432432430, 1686844862243243240, 1686845733054054050, 1686846603864864860, 1686847474675675670, 1686848345486486480, 1686849216297297290]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.21[1686841379000000000,1686849719000000000] 1686932458.05s|-----------------------------------------L0.21------------------------------------------|" + - "**** 10 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686841379000000000,1686842249810810810] 1686932458.05s 10mb|-L0.?--| " + - "L0.?[1686842249810810811,1686843120621621620] 1686932458.05s 10mb |-L0.?--| " + - "L0.?[1686843120621621621,1686843991432432430] 1686932458.05s 10mb |-L0.?--| " + - "L0.?[1686843991432432431,1686844862243243240] 1686932458.05s 10mb |-L0.?--| " + - "L0.?[1686844862243243241,1686845733054054050] 1686932458.05s 10mb |-L0.?--| " + - "L0.?[1686845733054054051,1686846603864864860] 1686932458.05s 10mb |-L0.?--| " + - "L0.?[1686846603864864861,1686847474675675670] 1686932458.05s 10mb |-L0.?--| " + - "L0.?[1686847474675675671,1686848345486486480] 1686932458.05s 10mb |-L0.?--| " + - "L0.?[1686848345486486481,1686849216297297290] 1686932458.05s 10mb |-L0.?--| " + - "L0.?[1686849216297297291,1686849719000000000] 1686932458.05s 6mb |L0.?|" + - "**** Simulation run 10, type=split(HighL0OverlapTotalBacklog)(split_times=[1686842249810810810, 1686843120621621620, 1686843991432432430, 1686844862243243240, 1686845733054054050, 1686846603864864860, 1686847474675675670, 1686848345486486480, 1686849216297297290, 1686850087108108100, 1686850957918918910, 1686851828729729720, 1686852699540540530, 1686853570351351340]). 1 Input Files, 64mb total:" + - "L0, all files 64mb " + - "L0.23[1686841379000000000,1686854219000000000] 1686932677.39s|-----------------------------------------L0.23------------------------------------------|" + - "**** 15 Output Files (parquet_file_id not yet assigned), 64mb total:" + - "L0 " + - "L0.?[1686841379000000000,1686842249810810810] 1686932677.39s 4mb|L0.?| " + - "L0.?[1686842249810810811,1686843120621621620] 1686932677.39s 4mb |L0.?| " + - "L0.?[1686843120621621621,1686843991432432430] 1686932677.39s 4mb |L0.?| " + - "L0.?[1686843991432432431,1686844862243243240] 1686932677.39s 4mb |L0.?| " + - "L0.?[1686844862243243241,1686845733054054050] 1686932677.39s 4mb |L0.?| " + - "L0.?[1686845733054054051,1686846603864864860] 1686932677.39s 4mb |L0.?| " + - "L0.?[1686846603864864861,1686847474675675670] 1686932677.39s 4mb |L0.?| " + - "L0.?[1686847474675675671,1686848345486486480] 1686932677.39s 4mb |L0.?| " + - "L0.?[1686848345486486481,1686849216297297290] 1686932677.39s 4mb |L0.?| " + - "L0.?[1686849216297297291,1686850087108108100] 1686932677.39s 4mb |L0.?| " + - "L0.?[1686850087108108101,1686850957918918910] 1686932677.39s 4mb |L0.?| " + - "L0.?[1686850957918918911,1686851828729729720] 1686932677.39s 4mb |L0.?| " + - "L0.?[1686851828729729721,1686852699540540530] 1686932677.39s 4mb |L0.?| " + - "L0.?[1686852699540540531,1686853570351351340] 1686932677.39s 4mb |L0.?| " + - "L0.?[1686853570351351341,1686854219000000000] 1686932677.39s 3mb |L0.?|" + - "**** Simulation run 11, type=split(HighL0OverlapTotalBacklog)(split_times=[1686842249810810810, 1686843120621621620, 1686843991432432430, 1686844862243243240, 1686845733054054050, 1686846603864864860, 1686847474675675670, 1686848345486486480, 1686849216297297290, 1686850087108108100, 1686850957918918910, 1686851828729729720, 1686852699540540530]). 1 Input Files, 142mb total:" + - "L0, all files 142mb " + - "L0.16[1686841379000000000,1686853019000000000] 1686933271.57s|-----------------------------------------L0.16------------------------------------------|" + - "**** 14 Output Files (parquet_file_id not yet assigned), 142mb total:" + - "L0 " + - "L0.?[1686841379000000000,1686842249810810810] 1686933271.57s 11mb|L0.?| " + - "L0.?[1686842249810810811,1686843120621621620] 1686933271.57s 11mb |L0.?| " + - "L0.?[1686843120621621621,1686843991432432430] 1686933271.57s 11mb |L0.?| " + - "L0.?[1686843991432432431,1686844862243243240] 1686933271.57s 11mb |L0.?| " + - "L0.?[1686844862243243241,1686845733054054050] 1686933271.57s 11mb |L0.?| " + - "L0.?[1686845733054054051,1686846603864864860] 1686933271.57s 11mb |L0.?| " + - "L0.?[1686846603864864861,1686847474675675670] 1686933271.57s 11mb |L0.?| " + - "L0.?[1686847474675675671,1686848345486486480] 1686933271.57s 11mb |L0.?| " + - "L0.?[1686848345486486481,1686849216297297290] 1686933271.57s 11mb |L0.?| " + - "L0.?[1686849216297297291,1686850087108108100] 1686933271.57s 11mb |L0.?| " + - "L0.?[1686850087108108101,1686850957918918910] 1686933271.57s 11mb |L0.?| " + - "L0.?[1686850957918918911,1686851828729729720] 1686933271.57s 11mb |L0.?| " + - "L0.?[1686851828729729721,1686852699540540530] 1686933271.57s 11mb |L0.?| " + - "L0.?[1686852699540540531,1686853019000000000] 1686933271.57s 4mb |L0.?|" + - "**** Simulation run 12, type=split(HighL0OverlapTotalBacklog)(split_times=[1686842249810810810, 1686843120621621620, 1686843991432432430, 1686844862243243240, 1686845733054054050, 1686846603864864860, 1686847474675675670, 1686848345486486480, 1686849216297297290, 1686850087108108100, 1686850957918918910, 1686851828729729720, 1686852699540540530]). 1 Input Files, 71mb total:" + - "L0, all files 71mb " + - "L0.18[1686841379000000000,1686852959000000000] 1686933528.17s|-----------------------------------------L0.18------------------------------------------|" + - "**** 14 Output Files (parquet_file_id not yet assigned), 71mb total:" + - "L0 " + - "L0.?[1686841379000000000,1686842249810810810] 1686933528.17s 5mb|L0.?| " + - "L0.?[1686842249810810811,1686843120621621620] 1686933528.17s 5mb |L0.?| " + - "L0.?[1686843120621621621,1686843991432432430] 1686933528.17s 5mb |L0.?| " + - "L0.?[1686843991432432431,1686844862243243240] 1686933528.17s 5mb |L0.?| " + - "L0.?[1686844862243243241,1686845733054054050] 1686933528.17s 5mb |L0.?| " + - "L0.?[1686845733054054051,1686846603864864860] 1686933528.17s 5mb |L0.?| " + - "L0.?[1686846603864864861,1686847474675675670] 1686933528.17s 5mb |L0.?| " + - "L0.?[1686847474675675671,1686848345486486480] 1686933528.17s 5mb |L0.?| " + - "L0.?[1686848345486486481,1686849216297297290] 1686933528.17s 5mb |L0.?| " + - "L0.?[1686849216297297291,1686850087108108100] 1686933528.17s 5mb |L0.?| " + - "L0.?[1686850087108108101,1686850957918918910] 1686933528.17s 5mb |L0.?| " + - "L0.?[1686850957918918911,1686851828729729720] 1686933528.17s 5mb |L0.?| " + - "L0.?[1686851828729729721,1686852699540540530] 1686933528.17s 5mb |L0.?| " + - "L0.?[1686852699540540531,1686852959000000000] 1686933528.17s 2mb |L0.?|" + - "**** Simulation run 13, type=split(HighL0OverlapTotalBacklog)(split_times=[1686842249810810810, 1686843120621621620, 1686843991432432430, 1686844862243243240, 1686845733054054050, 1686846603864864860, 1686847474675675670, 1686848345486486480, 1686849216297297290, 1686850087108108100, 1686850957918918910, 1686851828729729720, 1686852699540540530, 1686853570351351340, 1686854441162162150]). 1 Input Files, 85mb total:" + - "L0, all files 85mb " + - "L0.19[1686841379000000000,1686855119000000000] 1686933830.06s|-----------------------------------------L0.19------------------------------------------|" + - "**** 16 Output Files (parquet_file_id not yet assigned), 85mb total:" + - "L0 " + - "L0.?[1686841379000000000,1686842249810810810] 1686933830.06s 5mb|L0.?| " + - "L0.?[1686842249810810811,1686843120621621620] 1686933830.06s 5mb |L0.?| " + - "L0.?[1686843120621621621,1686843991432432430] 1686933830.06s 5mb |L0.?| " + - "L0.?[1686843991432432431,1686844862243243240] 1686933830.06s 5mb |L0.?| " + - "L0.?[1686844862243243241,1686845733054054050] 1686933830.06s 5mb |L0.?| " + - "L0.?[1686845733054054051,1686846603864864860] 1686933830.06s 5mb |L0.?| " + - "L0.?[1686846603864864861,1686847474675675670] 1686933830.06s 5mb |L0.?| " + - "L0.?[1686847474675675671,1686848345486486480] 1686933830.06s 5mb |L0.?| " + - "L0.?[1686848345486486481,1686849216297297290] 1686933830.06s 5mb |L0.?| " + - "L0.?[1686849216297297291,1686850087108108100] 1686933830.06s 5mb |L0.?| " + - "L0.?[1686850087108108101,1686850957918918910] 1686933830.06s 5mb |L0.?| " + - "L0.?[1686850957918918911,1686851828729729720] 1686933830.06s 5mb |L0.?| " + - "L0.?[1686851828729729721,1686852699540540530] 1686933830.06s 5mb |L0.?| " + - "L0.?[1686852699540540531,1686853570351351340] 1686933830.06s 5mb |L0.?| " + - "L0.?[1686853570351351341,1686854441162162150] 1686933830.06s 5mb |L0.?| " + - "L0.?[1686854441162162151,1686855119000000000] 1686933830.06s 4mb |L0.?|" + - "**** Simulation run 14, type=split(HighL0OverlapTotalBacklog)(split_times=[1686842249810810810, 1686843120621621620, 1686843991432432430, 1686844862243243240, 1686845733054054050, 1686846603864864860, 1686847474675675670, 1686848345486486480, 1686849216297297290, 1686850087108108100, 1686850957918918910, 1686851828729729720]). 1 Input Files, 101mb total:" + - "L0, all files 101mb " + - "L0.20[1686841379000000000,1686852119000000000] 1686934254.96s|-----------------------------------------L0.20------------------------------------------|" + - "**** 13 Output Files (parquet_file_id not yet assigned), 101mb total:" + - "L0 " + - "L0.?[1686841379000000000,1686842249810810810] 1686934254.96s 8mb|L0.?-| " + - "L0.?[1686842249810810811,1686843120621621620] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686843120621621621,1686843991432432430] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686843991432432431,1686844862243243240] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686844862243243241,1686845733054054050] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686845733054054051,1686846603864864860] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686846603864864861,1686847474675675670] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686847474675675671,1686848345486486480] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686848345486486481,1686849216297297290] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686849216297297291,1686850087108108100] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686850087108108101,1686850957918918910] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686850957918918911,1686851828729729720] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686851828729729721,1686852119000000000] 1686934254.96s 3mb |L0.?|" + - "**** Simulation run 15, type=split(HighL0OverlapTotalBacklog)(split_times=[1686842249810810810, 1686843120621621620, 1686843991432432430, 1686844862243243240, 1686845733054054050, 1686846603864864860, 1686847474675675670, 1686848345486486480, 1686849216297297290, 1686850087108108100, 1686850957918918910, 1686851828729729720, 1686852699540540530, 1686853570351351340]). 1 Input Files, 143mb total:" + - "L0, all files 143mb " + - "L0.22[1686841379000000000,1686853679000000000] 1686934759.75s|-----------------------------------------L0.22------------------------------------------|" + - "**** 15 Output Files (parquet_file_id not yet assigned), 143mb total:" + - "L0 " + - "L0.?[1686841379000000000,1686842249810810810] 1686934759.75s 10mb|L0.?| " + - "L0.?[1686842249810810811,1686843120621621620] 1686934759.75s 10mb |L0.?| " + - "L0.?[1686843120621621621,1686843991432432430] 1686934759.75s 10mb |L0.?| " + - "L0.?[1686843991432432431,1686844862243243240] 1686934759.75s 10mb |L0.?| " + - "L0.?[1686844862243243241,1686845733054054050] 1686934759.75s 10mb |L0.?| " + - "L0.?[1686845733054054051,1686846603864864860] 1686934759.75s 10mb |L0.?| " + - "L0.?[1686846603864864861,1686847474675675670] 1686934759.75s 10mb |L0.?| " + - "L0.?[1686847474675675671,1686848345486486480] 1686934759.75s 10mb |L0.?| " + - "L0.?[1686848345486486481,1686849216297297290] 1686934759.75s 10mb |L0.?| " + - "L0.?[1686849216297297291,1686850087108108100] 1686934759.75s 10mb |L0.?| " + - "L0.?[1686850087108108101,1686850957918918910] 1686934759.75s 10mb |L0.?| " + - "L0.?[1686850957918918911,1686851828729729720] 1686934759.75s 10mb |L0.?| " + - "L0.?[1686851828729729721,1686852699540540530] 1686934759.75s 10mb |L0.?| " + - "L0.?[1686852699540540531,1686853570351351340] 1686934759.75s 10mb |L0.?| " + - "L0.?[1686853570351351341,1686853679000000000] 1686934759.75s 1mb |L0.?|" + - "**** Simulation run 16, type=split(HighL0OverlapTotalBacklog)(split_times=[1686842249810810810, 1686843120621621620, 1686843991432432430, 1686844862243243240, 1686845733054054050, 1686846603864864860, 1686847474675675670, 1686848345486486480, 1686849216297297290, 1686850087108108100, 1686850957918918910, 1686851828729729720, 1686852699540540530]). 1 Input Files, 72mb total:" + - "L0, all files 72mb " + - "L0.11[1686841379000000000,1686852899000000000] 1686934966.48s|-----------------------------------------L0.11------------------------------------------|" + - "**** 14 Output Files (parquet_file_id not yet assigned), 72mb total:" + - "L0 " + - "L0.?[1686841379000000000,1686842249810810810] 1686934966.48s 5mb|L0.?| " + - "L0.?[1686842249810810811,1686843120621621620] 1686934966.48s 5mb |L0.?| " + - "L0.?[1686843120621621621,1686843991432432430] 1686934966.48s 5mb |L0.?| " + - "L0.?[1686843991432432431,1686844862243243240] 1686934966.48s 5mb |L0.?| " + - "L0.?[1686844862243243241,1686845733054054050] 1686934966.48s 5mb |L0.?| " + - "L0.?[1686845733054054051,1686846603864864860] 1686934966.48s 5mb |L0.?| " + - "L0.?[1686846603864864861,1686847474675675670] 1686934966.48s 5mb |L0.?| " + - "L0.?[1686847474675675671,1686848345486486480] 1686934966.48s 5mb |L0.?| " + - "L0.?[1686848345486486481,1686849216297297290] 1686934966.48s 5mb |L0.?| " + - "L0.?[1686849216297297291,1686850087108108100] 1686934966.48s 5mb |L0.?| " + - "L0.?[1686850087108108101,1686850957918918910] 1686934966.48s 5mb |L0.?| " + - "L0.?[1686850957918918911,1686851828729729720] 1686934966.48s 5mb |L0.?| " + - "L0.?[1686851828729729721,1686852699540540530] 1686934966.48s 5mb |L0.?| " + - "L0.?[1686852699540540531,1686852899000000000] 1686934966.48s 1mb |L0.?|" + - "**** Simulation run 17, type=split(HighL0OverlapTotalBacklog)(split_times=[1686842249810810810, 1686843120621621620, 1686843991432432430, 1686844862243243240, 1686845733054054050, 1686846603864864860, 1686847474675675670, 1686848345486486480, 1686849216297297290, 1686850087108108100, 1686850957918918910, 1686851828729729720, 1686852699540540530, 1686853570351351340, 1686854441162162150, 1686855311972972960]). 1 Input Files, 83mb total:" + - "L0, all files 83mb " + - "L0.8[1686841379000000000,1686855419000000000] 1686935151.54s|------------------------------------------L0.8------------------------------------------|" + - "**** 17 Output Files (parquet_file_id not yet assigned), 83mb total:" + - "L0 " + - "L0.?[1686841379000000000,1686842249810810810] 1686935151.54s 5mb|L0.?| " + - "L0.?[1686842249810810811,1686843120621621620] 1686935151.54s 5mb |L0.?| " + - "L0.?[1686843120621621621,1686843991432432430] 1686935151.54s 5mb |L0.?| " + - "L0.?[1686843991432432431,1686844862243243240] 1686935151.54s 5mb |L0.?| " + - "L0.?[1686844862243243241,1686845733054054050] 1686935151.54s 5mb |L0.?| " + - "L0.?[1686845733054054051,1686846603864864860] 1686935151.54s 5mb |L0.?| " + - "L0.?[1686846603864864861,1686847474675675670] 1686935151.54s 5mb |L0.?| " + - "L0.?[1686847474675675671,1686848345486486480] 1686935151.54s 5mb |L0.?| " + - "L0.?[1686848345486486481,1686849216297297290] 1686935151.54s 5mb |L0.?| " + - "L0.?[1686849216297297291,1686850087108108100] 1686935151.54s 5mb |L0.?| " + - "L0.?[1686850087108108101,1686850957918918910] 1686935151.54s 5mb |L0.?| " + - "L0.?[1686850957918918911,1686851828729729720] 1686935151.54s 5mb |L0.?| " + - "L0.?[1686851828729729721,1686852699540540530] 1686935151.54s 5mb |L0.?| " + - "L0.?[1686852699540540531,1686853570351351340] 1686935151.54s 5mb |L0.?| " + - "L0.?[1686853570351351341,1686854441162162150] 1686935151.54s 5mb |L0.?| " + - "L0.?[1686854441162162151,1686855311972972960] 1686935151.54s 5mb |L0.?| " + - "L0.?[1686855311972972961,1686855419000000000] 1686935151.54s 649kb |L0.?|" + - "**** Simulation run 18, type=split(HighL0OverlapTotalBacklog)(split_times=[1686842249810810810, 1686843120621621620, 1686843991432432430, 1686844862243243240, 1686845733054054050, 1686846603864864860, 1686847474675675670, 1686848345486486480, 1686849216297297290, 1686850087108108100, 1686850957918918910, 1686851828729729720, 1686852699540540530]). 1 Input Files, 144mb total:" + - "L0, all files 144mb " + - "L0.3[1686841379000000000,1686853319000000000] 1686935546.05s|------------------------------------------L0.3------------------------------------------|" + - "**** 14 Output Files (parquet_file_id not yet assigned), 144mb total:" + - "L0 " + - "L0.?[1686841379000000000,1686842249810810810] 1686935546.05s 10mb|L0.?| " + - "L0.?[1686842249810810811,1686843120621621620] 1686935546.05s 10mb |L0.?| " + - "L0.?[1686843120621621621,1686843991432432430] 1686935546.05s 10mb |L0.?| " + - "L0.?[1686843991432432431,1686844862243243240] 1686935546.05s 10mb |L0.?| " + - "L0.?[1686844862243243241,1686845733054054050] 1686935546.05s 10mb |L0.?| " + - "L0.?[1686845733054054051,1686846603864864860] 1686935546.05s 10mb |L0.?| " + - "L0.?[1686846603864864861,1686847474675675670] 1686935546.05s 10mb |L0.?| " + - "L0.?[1686847474675675671,1686848345486486480] 1686935546.05s 10mb |L0.?| " + - "L0.?[1686848345486486481,1686849216297297290] 1686935546.05s 10mb |L0.?| " + - "L0.?[1686849216297297291,1686850087108108100] 1686935546.05s 10mb |L0.?| " + - "L0.?[1686850087108108101,1686850957918918910] 1686935546.05s 10mb |L0.?| " + - "L0.?[1686850957918918911,1686851828729729720] 1686935546.05s 10mb |L0.?| " + - "L0.?[1686851828729729721,1686852699540540530] 1686935546.05s 10mb |L0.?| " + - "L0.?[1686852699540540531,1686853319000000000] 1686935546.05s 7mb |L0.?|" + - "**** Simulation run 19, type=split(HighL0OverlapTotalBacklog)(split_times=[1686842249810810810, 1686843120621621620, 1686843991432432430, 1686844862243243240, 1686845733054054050, 1686846603864864860, 1686847474675675670, 1686848345486486480, 1686849216297297290, 1686850087108108100, 1686850957918918910, 1686851828729729720, 1686852699540540530]). 1 Input Files, 72mb total:" + - "L0, all files 72mb " + - "L0.7[1686841379000000000,1686852839000000000] 1686935742.51s|------------------------------------------L0.7------------------------------------------|" + - "**** 14 Output Files (parquet_file_id not yet assigned), 72mb total:" + - "L0 " + - "L0.?[1686841379000000000,1686842249810810810] 1686935742.51s 5mb|L0.?| " + - "L0.?[1686842249810810811,1686843120621621620] 1686935742.51s 5mb |L0.?| " + - "L0.?[1686843120621621621,1686843991432432430] 1686935742.51s 5mb |L0.?| " + - "L0.?[1686843991432432431,1686844862243243240] 1686935742.51s 5mb |L0.?| " + - "L0.?[1686844862243243241,1686845733054054050] 1686935742.51s 5mb |L0.?| " + - "L0.?[1686845733054054051,1686846603864864860] 1686935742.51s 5mb |L0.?| " + - "L0.?[1686846603864864861,1686847474675675670] 1686935742.51s 5mb |L0.?| " + - "L0.?[1686847474675675671,1686848345486486480] 1686935742.51s 5mb |L0.?| " + - "L0.?[1686848345486486481,1686849216297297290] 1686935742.51s 5mb |L0.?| " + - "L0.?[1686849216297297291,1686850087108108100] 1686935742.51s 5mb |L0.?| " + - "L0.?[1686850087108108101,1686850957918918910] 1686935742.51s 5mb |L0.?| " + - "L0.?[1686850957918918911,1686851828729729720] 1686935742.51s 5mb |L0.?| " + - "L0.?[1686851828729729721,1686852699540540530] 1686935742.51s 5mb |L0.?| " + - "L0.?[1686852699540540531,1686852839000000000] 1686935742.51s 899kb |L0.?|" + - "**** Simulation run 20, type=split(HighL0OverlapTotalBacklog)(split_times=[1686842249810810810, 1686843120621621620, 1686843991432432430, 1686844862243243240, 1686845733054054050, 1686846603864864860, 1686847474675675670, 1686848345486486480, 1686849216297297290, 1686850087108108100, 1686850957918918910, 1686851828729729720, 1686852699540540530, 1686853570351351340, 1686854441162162150]). 1 Input Files, 83mb total:" + - "L0, all files 83mb " + - "L0.5[1686841379000000000,1686854759000000000] 1686935947.46s|------------------------------------------L0.5------------------------------------------|" + - "**** 16 Output Files (parquet_file_id not yet assigned), 83mb total:" + - "L0 " + - "L0.?[1686841379000000000,1686842249810810810] 1686935947.46s 5mb|L0.?| " + - "L0.?[1686842249810810811,1686843120621621620] 1686935947.46s 5mb |L0.?| " + - "L0.?[1686843120621621621,1686843991432432430] 1686935947.46s 5mb |L0.?| " + - "L0.?[1686843991432432431,1686844862243243240] 1686935947.46s 5mb |L0.?| " + - "L0.?[1686844862243243241,1686845733054054050] 1686935947.46s 5mb |L0.?| " + - "L0.?[1686845733054054051,1686846603864864860] 1686935947.46s 5mb |L0.?| " + - "L0.?[1686846603864864861,1686847474675675670] 1686935947.46s 5mb |L0.?| " + - "L0.?[1686847474675675671,1686848345486486480] 1686935947.46s 5mb |L0.?| " + - "L0.?[1686848345486486481,1686849216297297290] 1686935947.46s 5mb |L0.?| " + - "L0.?[1686849216297297291,1686850087108108100] 1686935947.46s 5mb |L0.?| " + - "L0.?[1686850087108108101,1686850957918918910] 1686935947.46s 5mb |L0.?| " + - "L0.?[1686850957918918911,1686851828729729720] 1686935947.46s 5mb |L0.?| " + - "L0.?[1686851828729729721,1686852699540540530] 1686935947.46s 5mb |L0.?| " + - "L0.?[1686852699540540531,1686853570351351340] 1686935947.46s 5mb |L0.?| " + - "L0.?[1686853570351351341,1686854441162162150] 1686935947.46s 5mb |L0.?| " + - "L0.?[1686854441162162151,1686854759000000000] 1686935947.46s 2mb |L0.?|" + - "**** Simulation run 21, type=split(HighL0OverlapTotalBacklog)(split_times=[1686842249810810810, 1686843120621621620, 1686843991432432430, 1686844862243243240, 1686845733054054050, 1686846603864864860, 1686847474675675670, 1686848345486486480, 1686849216297297290, 1686850087108108100, 1686850957918918910, 1686851828729729720, 1686852699540540530, 1686853570351351340, 1686854441162162150, 1686855311972972960, 1686856182783783770, 1686857053594594580, 1686857924405405390, 1686858795216216200, 1686859666027027010, 1686860536837837820, 1686861407648648630, 1686862278459459440, 1686863149270270250, 1686864020081081060, 1686864890891891870, 1686865761702702680, 1686866632513513490, 1686867503324324300, 1686868374135135110, 1686869244945945920, 1686870115756756730, 1686870986567567540]). 1 Input Files, 98mb total:" + - "L0, all files 98mb " + - "L0.4[1686841379000000000,1686871559000000000] 1686936871.55s|------------------------------------------L0.4------------------------------------------|" + - "**** 35 Output Files (parquet_file_id not yet assigned), 98mb total:" + - "L0 " + - "L0.?[1686841379000000000,1686842249810810810] 1686936871.55s 3mb|L0.?| " + - "L0.?[1686842249810810811,1686843120621621620] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686843120621621621,1686843991432432430] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686843991432432431,1686844862243243240] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686844862243243241,1686845733054054050] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686845733054054051,1686846603864864860] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686846603864864861,1686847474675675670] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686847474675675671,1686848345486486480] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686848345486486481,1686849216297297290] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686849216297297291,1686850087108108100] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686850087108108101,1686850957918918910] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686850957918918911,1686851828729729720] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686851828729729721,1686852699540540530] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686852699540540531,1686853570351351340] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686853570351351341,1686854441162162150] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686854441162162151,1686855311972972960] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686855311972972961,1686856182783783770] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686856182783783771,1686857053594594580] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686857053594594581,1686857924405405390] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686857924405405391,1686858795216216200] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686858795216216201,1686859666027027010] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686859666027027011,1686860536837837820] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686860536837837821,1686861407648648630] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686861407648648631,1686862278459459440] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686862278459459441,1686863149270270250] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686863149270270251,1686864020081081060] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686864020081081061,1686864890891891870] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686864890891891871,1686865761702702680] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686865761702702681,1686866632513513490] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686866632513513491,1686867503324324300] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686867503324324301,1686868374135135110] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686868374135135111,1686869244945945920] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686869244945945921,1686870115756756730] 1686936871.55s 3mb |L0.?| " + - "L0.?[1686870115756756731,1686870986567567540] 1686936871.55s 3mb |L0.?|" + - "L0.?[1686870986567567541,1686871559000000000] 1686936871.55s 2mb |L0.?|" + - "**** Simulation run 22, type=split(HighL0OverlapTotalBacklog)(split_times=[1686845733054054050, 1686846603864864860, 1686847474675675670, 1686848345486486480, 1686849216297297290]). 1 Input Files, 5mb total:" + - "L1, all files 5mb " + - "L1.24[1686845639000000000,1686849779000000000] 1686928854.57s|-----------------------------------------L1.24------------------------------------------|" + - "**** 6 Output Files (parquet_file_id not yet assigned), 5mb total:" + - "L1 " + - "L1.?[1686845639000000000,1686845733054054050] 1686928854.57s 123kb|L1.?| " + - "L1.?[1686845733054054051,1686846603864864860] 1686928854.57s 1mb |------L1.?------| " + - "L1.?[1686846603864864861,1686847474675675670] 1686928854.57s 1mb |------L1.?------| " + - "L1.?[1686847474675675671,1686848345486486480] 1686928854.57s 1mb |------L1.?------| " + - "L1.?[1686848345486486481,1686849216297297290] 1686928854.57s 1mb |------L1.?------| " + - "L1.?[1686849216297297291,1686849779000000000] 1686928854.57s 734kb |---L1.?---| " + - "**** Simulation run 23, type=split(HighL0OverlapTotalBacklog)(split_times=[1686850087108108100, 1686850957918918910, 1686851828729729720, 1686852699540540530, 1686853570351351340, 1686854441162162150, 1686855311972972960, 1686856182783783770, 1686857053594594580, 1686857924405405390]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.26[1686849779000000000,1686858119000000000] 1686932458.05s|-----------------------------------------L0.26------------------------------------------|" + - "**** 11 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686849779000000000,1686850087108108100] 1686932458.05s 4mb|L0.?| " + - "L0.?[1686850087108108101,1686850957918918910] 1686932458.05s 10mb |-L0.?--| " + - "L0.?[1686850957918918911,1686851828729729720] 1686932458.05s 10mb |-L0.?--| " + - "L0.?[1686851828729729721,1686852699540540530] 1686932458.05s 10mb |-L0.?--| " + - "L0.?[1686852699540540531,1686853570351351340] 1686932458.05s 10mb |-L0.?--| " + - "L0.?[1686853570351351341,1686854441162162150] 1686932458.05s 10mb |-L0.?--| " + - "L0.?[1686854441162162151,1686855311972972960] 1686932458.05s 10mb |-L0.?--| " + - "L0.?[1686855311972972961,1686856182783783770] 1686932458.05s 10mb |-L0.?--| " + - "L0.?[1686856182783783771,1686857053594594580] 1686932458.05s 10mb |-L0.?--| " + - "L0.?[1686857053594594581,1686857924405405390] 1686932458.05s 10mb |-L0.?--| " + - "L0.?[1686857924405405391,1686858119000000000] 1686932458.05s 2mb |L0.?|" + - "**** Simulation run 24, type=split(HighL0OverlapTotalBacklog)(split_times=[1686850087108108100]). 1 Input Files, 975kb total:" + - "L1, all files 975kb " + - "L1.28[1686849839000000000,1686850559000000000] 1686928854.57s|-----------------------------------------L1.28------------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 975kb total:" + - "L1 " + - "L1.?[1686849839000000000,1686850087108108100] 1686928854.57s 336kb|------------L1.?-------------| " + - "L1.?[1686850087108108101,1686850559000000000] 1686928854.57s 639kb |--------------------------L1.?--------------------------| " + - "**** Simulation run 25, type=split(HighL0OverlapTotalBacklog)(split_times=[1686850957918918910, 1686851828729729720, 1686852699540540530, 1686853570351351340, 1686854441162162150]). 1 Input Files, 5mb total:" + - "L1, all files 5mb " + - "L1.29[1686850619000000000,1686854819000000000] 1686928854.57s|-----------------------------------------L1.29------------------------------------------|" + - "**** 6 Output Files (parquet_file_id not yet assigned), 5mb total:" + - "L1 " + - "L1.?[1686850619000000000,1686850957918918910] 1686928854.57s 440kb|L1.?-| " + - "L1.?[1686850957918918911,1686851828729729720] 1686928854.57s 1mb |------L1.?------| " + - "L1.?[1686851828729729721,1686852699540540530] 1686928854.57s 1mb |------L1.?------| " + - "L1.?[1686852699540540531,1686853570351351340] 1686928854.57s 1mb |------L1.?------| " + - "L1.?[1686853570351351341,1686854441162162150] 1686928854.57s 1mb |------L1.?------| " + - "L1.?[1686854441162162151,1686854819000000000] 1686928854.57s 490kb |-L1.?-| " + - "**** Simulation run 26, type=split(HighL0OverlapTotalBacklog)(split_times=[1686852699540540530, 1686853570351351340, 1686854441162162150, 1686855311972972960, 1686856182783783770, 1686857053594594580, 1686857924405405390, 1686858795216216200, 1686859666027027010, 1686860536837837820, 1686861407648648630, 1686862278459459440]). 1 Input Files, 101mb total:" + - "L0, all files 101mb " + - "L0.31[1686852179000000000,1686862859000000000] 1686934254.96s|-----------------------------------------L0.31------------------------------------------|" + - "**** 13 Output Files (parquet_file_id not yet assigned), 101mb total:" + - "L0 " + - "L0.?[1686852179000000000,1686852699540540530] 1686934254.96s 5mb|L0.?| " + - "L0.?[1686852699540540531,1686853570351351340] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686853570351351341,1686854441162162150] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686854441162162151,1686855311972972960] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686855311972972961,1686856182783783770] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686856182783783771,1686857053594594580] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686857053594594581,1686857924405405390] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686857924405405391,1686858795216216200] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686858795216216201,1686859666027027010] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686859666027027011,1686860536837837820] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686860536837837821,1686861407648648630] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686861407648648631,1686862278459459440] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686862278459459441,1686862859000000000] 1686934254.96s 5mb |L0.?|" + - "**** Simulation run 27, type=split(HighL0OverlapTotalBacklog)(split_times=[1686853570351351340, 1686854441162162150, 1686855311972972960, 1686856182783783770, 1686857053594594580, 1686857924405405390, 1686858795216216200, 1686859666027027010, 1686860536837837820, 1686861407648648630, 1686862278459459440, 1686863149270270250, 1686864020081081060]). 1 Input Files, 133mb total:" + - "L0, all files 133mb " + - "L0.33[1686852899000000000,1686864359000000000] 1686929712.33s|-----------------------------------------L0.33------------------------------------------|" + - "**** 14 Output Files (parquet_file_id not yet assigned), 133mb total:" + - "L0 " + - "L0.?[1686852899000000000,1686853570351351340] 1686929712.33s 8mb|L0.?| " + - "L0.?[1686853570351351341,1686854441162162150] 1686929712.33s 10mb |L0.?| " + - "L0.?[1686854441162162151,1686855311972972960] 1686929712.33s 10mb |L0.?| " + - "L0.?[1686855311972972961,1686856182783783770] 1686929712.33s 10mb |L0.?| " + - "L0.?[1686856182783783771,1686857053594594580] 1686929712.33s 10mb |L0.?| " + - "L0.?[1686857053594594581,1686857924405405390] 1686929712.33s 10mb |L0.?| " + - "L0.?[1686857924405405391,1686858795216216200] 1686929712.33s 10mb |L0.?| " + - "L0.?[1686858795216216201,1686859666027027010] 1686929712.33s 10mb |L0.?| " + - "L0.?[1686859666027027011,1686860536837837820] 1686929712.33s 10mb |L0.?| " + - "L0.?[1686860536837837821,1686861407648648630] 1686929712.33s 10mb |L0.?| " + - "L0.?[1686861407648648631,1686862278459459440] 1686929712.33s 10mb |L0.?| " + - "L0.?[1686862278459459441,1686863149270270250] 1686929712.33s 10mb |L0.?| " + - "L0.?[1686863149270270251,1686864020081081060] 1686929712.33s 10mb |L0.?| " + - "L0.?[1686864020081081061,1686864359000000000] 1686929712.33s 4mb |L0.?|" + - "**** Simulation run 28, type=split(HighL0OverlapTotalBacklog)(split_times=[1686853570351351340, 1686854441162162150, 1686855311972972960, 1686856182783783770, 1686857053594594580, 1686857924405405390, 1686858795216216200, 1686859666027027010, 1686860536837837820, 1686861407648648630, 1686862278459459440, 1686863149270270250, 1686864020081081060]). 1 Input Files, 133mb total:" + - "L0, all files 133mb " + - "L0.32[1686852899000000000,1686864359000000000] 1686935742.51s|-----------------------------------------L0.32------------------------------------------|" + - "**** 14 Output Files (parquet_file_id not yet assigned), 133mb total:" + - "L0 " + - "L0.?[1686852899000000000,1686853570351351340] 1686935742.51s 8mb|L0.?| " + - "L0.?[1686853570351351341,1686854441162162150] 1686935742.51s 10mb |L0.?| " + - "L0.?[1686854441162162151,1686855311972972960] 1686935742.51s 10mb |L0.?| " + - "L0.?[1686855311972972961,1686856182783783770] 1686935742.51s 10mb |L0.?| " + - "L0.?[1686856182783783771,1686857053594594580] 1686935742.51s 10mb |L0.?| " + - "L0.?[1686857053594594581,1686857924405405390] 1686935742.51s 10mb |L0.?| " + - "L0.?[1686857924405405391,1686858795216216200] 1686935742.51s 10mb |L0.?| " + - "L0.?[1686858795216216201,1686859666027027010] 1686935742.51s 10mb |L0.?| " + - "L0.?[1686859666027027011,1686860536837837820] 1686935742.51s 10mb |L0.?| " + - "L0.?[1686860536837837821,1686861407648648630] 1686935742.51s 10mb |L0.?| " + - "L0.?[1686861407648648631,1686862278459459440] 1686935742.51s 10mb |L0.?| " + - "L0.?[1686862278459459441,1686863149270270250] 1686935742.51s 10mb |L0.?| " + - "L0.?[1686863149270270251,1686864020081081060] 1686935742.51s 10mb |L0.?| " + - "L0.?[1686864020081081061,1686864359000000000] 1686935742.51s 4mb |L0.?|" + - "**** Simulation run 29, type=split(HighL0OverlapTotalBacklog)(split_times=[1686853570351351340, 1686854441162162150, 1686855311972972960, 1686856182783783770, 1686857053594594580, 1686857924405405390, 1686858795216216200, 1686859666027027010, 1686860536837837820, 1686861407648648630, 1686862278459459440, 1686863149270270250, 1686864020081081060]). 1 Input Files, 131mb total:" + - "L0, all files 131mb " + - "L0.34[1686852959000000000,1686864419000000000] 1686931600.58s|-----------------------------------------L0.34------------------------------------------|" + - "**** 14 Output Files (parquet_file_id not yet assigned), 131mb total:" + - "L0 " + - "L0.?[1686852959000000000,1686853570351351340] 1686931600.58s 7mb|L0.?| " + - "L0.?[1686853570351351341,1686854441162162150] 1686931600.58s 10mb |L0.?| " + - "L0.?[1686854441162162151,1686855311972972960] 1686931600.58s 10mb |L0.?| " + - "L0.?[1686855311972972961,1686856182783783770] 1686931600.58s 10mb |L0.?| " + - "L0.?[1686856182783783771,1686857053594594580] 1686931600.58s 10mb |L0.?| " + - "L0.?[1686857053594594581,1686857924405405390] 1686931600.58s 10mb |L0.?| " + - "L0.?[1686857924405405391,1686858795216216200] 1686931600.58s 10mb |L0.?| " + - "L0.?[1686858795216216201,1686859666027027010] 1686931600.58s 10mb |L0.?| " + - "L0.?[1686859666027027011,1686860536837837820] 1686931600.58s 10mb |L0.?| " + - "L0.?[1686860536837837821,1686861407648648630] 1686931600.58s 10mb |L0.?| " + - "L0.?[1686861407648648631,1686862278459459440] 1686931600.58s 10mb |L0.?| " + - "L0.?[1686862278459459441,1686863149270270250] 1686931600.58s 10mb |L0.?| " + - "L0.?[1686863149270270251,1686864020081081060] 1686931600.58s 10mb |L0.?| " + - "L0.?[1686864020081081061,1686864419000000000] 1686931600.58s 5mb |L0.?|" + - "**** Simulation run 30, type=split(HighL0OverlapTotalBacklog)(split_times=[1686853570351351340, 1686854441162162150, 1686855311972972960, 1686856182783783770, 1686857053594594580, 1686857924405405390, 1686858795216216200, 1686859666027027010, 1686860536837837820, 1686861407648648630, 1686862278459459440, 1686863149270270250, 1686864020081081060]). 1 Input Files, 133mb total:" + - "L0, all files 133mb " + - "L0.35[1686852959000000000,1686864419000000000] 1686934966.48s|-----------------------------------------L0.35------------------------------------------|" + - "**** 14 Output Files (parquet_file_id not yet assigned), 133mb total:" + - "L0 " + - "L0.?[1686852959000000000,1686853570351351340] 1686934966.48s 7mb|L0.?| " + - "L0.?[1686853570351351341,1686854441162162150] 1686934966.48s 10mb |L0.?| " + - "L0.?[1686854441162162151,1686855311972972960] 1686934966.48s 10mb |L0.?| " + - "L0.?[1686855311972972961,1686856182783783770] 1686934966.48s 10mb |L0.?| " + - "L0.?[1686856182783783771,1686857053594594580] 1686934966.48s 10mb |L0.?| " + - "L0.?[1686857053594594581,1686857924405405390] 1686934966.48s 10mb |L0.?| " + - "L0.?[1686857924405405391,1686858795216216200] 1686934966.48s 10mb |L0.?| " + - "L0.?[1686858795216216201,1686859666027027010] 1686934966.48s 10mb |L0.?| " + - "L0.?[1686859666027027011,1686860536837837820] 1686934966.48s 10mb |L0.?| " + - "L0.?[1686860536837837821,1686861407648648630] 1686934966.48s 10mb |L0.?| " + - "L0.?[1686861407648648631,1686862278459459440] 1686934966.48s 10mb |L0.?| " + - "L0.?[1686862278459459441,1686863149270270250] 1686934966.48s 10mb |L0.?| " + - "L0.?[1686863149270270251,1686864020081081060] 1686934966.48s 10mb |L0.?| " + - "L0.?[1686864020081081061,1686864419000000000] 1686934966.48s 5mb |L0.?|" + - "**** Simulation run 31, type=split(HighL0OverlapTotalBacklog)(split_times=[1686853570351351340, 1686854441162162150, 1686855311972972960, 1686856182783783770, 1686857053594594580, 1686857924405405390, 1686858795216216200, 1686859666027027010, 1686860536837837820, 1686861407648648630, 1686862278459459440, 1686863149270270250, 1686864020081081060]). 1 Input Files, 132mb total:" + - "L0, all files 132mb " + - "L0.36[1686853019000000000,1686864599000000000] 1686933528.17s|-----------------------------------------L0.36------------------------------------------|" + - "**** 14 Output Files (parquet_file_id not yet assigned), 132mb total:" + - "L0 " + - "L0.?[1686853019000000000,1686853570351351340] 1686933528.17s 6mb|L0.?| " + - "L0.?[1686853570351351341,1686854441162162150] 1686933528.17s 10mb |L0.?| " + - "L0.?[1686854441162162151,1686855311972972960] 1686933528.17s 10mb |L0.?| " + - "L0.?[1686855311972972961,1686856182783783770] 1686933528.17s 10mb |L0.?| " + - "L0.?[1686856182783783771,1686857053594594580] 1686933528.17s 10mb |L0.?| " + - "L0.?[1686857053594594581,1686857924405405390] 1686933528.17s 10mb |L0.?| " + - "L0.?[1686857924405405391,1686858795216216200] 1686933528.17s 10mb |L0.?| " + - "L0.?[1686858795216216201,1686859666027027010] 1686933528.17s 10mb |L0.?| " + - "L0.?[1686859666027027011,1686860536837837820] 1686933528.17s 10mb |L0.?| " + - "L0.?[1686860536837837821,1686861407648648630] 1686933528.17s 10mb |L0.?| " + - "L0.?[1686861407648648631,1686862278459459440] 1686933528.17s 10mb |L0.?| " + - "L0.?[1686862278459459441,1686863149270270250] 1686933528.17s 10mb |L0.?| " + - "L0.?[1686863149270270251,1686864020081081060] 1686933528.17s 10mb |L0.?| " + - "L0.?[1686864020081081061,1686864599000000000] 1686933528.17s 7mb |L0.?|" + - "**** Simulation run 32, type=split(HighL0OverlapTotalBacklog)(split_times=[1686853570351351340, 1686854441162162150, 1686855311972972960, 1686856182783783770, 1686857053594594580, 1686857924405405390, 1686858795216216200, 1686859666027027010, 1686860536837837820, 1686861407648648630, 1686862278459459440, 1686863149270270250, 1686864020081081060]). 1 Input Files, 80mb total:" + - "L0, all files 80mb " + - "L0.38[1686853079000000000,1686864659000000000] 1686930563.07s|-----------------------------------------L0.38------------------------------------------|" + - "**** 14 Output Files (parquet_file_id not yet assigned), 80mb total:" + - "L0 " + - "L0.?[1686853079000000000,1686853570351351340] 1686930563.07s 3mb|L0.?| " + - "L0.?[1686853570351351341,1686854441162162150] 1686930563.07s 6mb |L0.?| " + - "L0.?[1686854441162162151,1686855311972972960] 1686930563.07s 6mb |L0.?| " + - "L0.?[1686855311972972961,1686856182783783770] 1686930563.07s 6mb |L0.?| " + - "L0.?[1686856182783783771,1686857053594594580] 1686930563.07s 6mb |L0.?| " + - "L0.?[1686857053594594581,1686857924405405390] 1686930563.07s 6mb |L0.?| " + - "L0.?[1686857924405405391,1686858795216216200] 1686930563.07s 6mb |L0.?| " + - "L0.?[1686858795216216201,1686859666027027010] 1686930563.07s 6mb |L0.?| " + - "L0.?[1686859666027027011,1686860536837837820] 1686930563.07s 6mb |L0.?| " + - "L0.?[1686860536837837821,1686861407648648630] 1686930563.07s 6mb |L0.?| " + - "L0.?[1686861407648648631,1686862278459459440] 1686930563.07s 6mb |L0.?| " + - "L0.?[1686862278459459441,1686863149270270250] 1686930563.07s 6mb |L0.?| " + - "L0.?[1686863149270270251,1686864020081081060] 1686930563.07s 6mb |L0.?| " + - "L0.?[1686864020081081061,1686864659000000000] 1686930563.07s 4mb |L0.?|" + - "**** Simulation run 33, type=split(HighL0OverlapTotalBacklog)(split_times=[1686853570351351340, 1686854441162162150, 1686855311972972960, 1686856182783783770, 1686857053594594580, 1686857924405405390, 1686858795216216200, 1686859666027027010, 1686860536837837820, 1686861407648648630, 1686862278459459440, 1686863149270270250, 1686864020081081060]). 1 Input Files, 80mb total:" + - "L0, all files 80mb " + - "L0.37[1686853079000000000,1686864659000000000] 1686933271.57s|-----------------------------------------L0.37------------------------------------------|" + - "**** 14 Output Files (parquet_file_id not yet assigned), 80mb total:" + - "L0 " + - "L0.?[1686853079000000000,1686853570351351340] 1686933271.57s 3mb|L0.?| " + - "L0.?[1686853570351351341,1686854441162162150] 1686933271.57s 6mb |L0.?| " + - "L0.?[1686854441162162151,1686855311972972960] 1686933271.57s 6mb |L0.?| " + - "L0.?[1686855311972972961,1686856182783783770] 1686933271.57s 6mb |L0.?| " + - "L0.?[1686856182783783771,1686857053594594580] 1686933271.57s 6mb |L0.?| " + - "L0.?[1686857053594594581,1686857924405405390] 1686933271.57s 6mb |L0.?| " + - "L0.?[1686857924405405391,1686858795216216200] 1686933271.57s 6mb |L0.?| " + - "L0.?[1686858795216216201,1686859666027027010] 1686933271.57s 6mb |L0.?| " + - "L0.?[1686859666027027011,1686860536837837820] 1686933271.57s 6mb |L0.?| " + - "L0.?[1686860536837837821,1686861407648648630] 1686933271.57s 6mb |L0.?| " + - "L0.?[1686861407648648631,1686862278459459440] 1686933271.57s 6mb |L0.?| " + - "L0.?[1686862278459459441,1686863149270270250] 1686933271.57s 6mb |L0.?| " + - "L0.?[1686863149270270251,1686864020081081060] 1686933271.57s 6mb |L0.?| " + - "L0.?[1686864020081081061,1686864659000000000] 1686933271.57s 4mb |L0.?|" + - "**** Simulation run 34, type=split(HighL0OverlapTotalBacklog)(split_times=[1686853570351351340, 1686854441162162150, 1686855311972972960, 1686856182783783770, 1686857053594594580, 1686857924405405390, 1686858795216216200, 1686859666027027010, 1686860536837837820, 1686861407648648630, 1686862278459459440, 1686863149270270250, 1686864020081081060]). 1 Input Files, 79mb total:" + - "L0, all files 79mb " + - "L0.39[1686853139000000000,1686864839000000000] 1686931336.08s|-----------------------------------------L0.39------------------------------------------|" + - "**** 14 Output Files (parquet_file_id not yet assigned), 79mb total:" + - "L0 " + - "L0.?[1686853139000000000,1686853570351351340] 1686931336.08s 3mb|L0.?| " + - "L0.?[1686853570351351341,1686854441162162150] 1686931336.08s 6mb |L0.?| " + - "L0.?[1686854441162162151,1686855311972972960] 1686931336.08s 6mb |L0.?| " + - "L0.?[1686855311972972961,1686856182783783770] 1686931336.08s 6mb |L0.?| " + - "L0.?[1686856182783783771,1686857053594594580] 1686931336.08s 6mb |L0.?| " + - "L0.?[1686857053594594581,1686857924405405390] 1686931336.08s 6mb |L0.?| " + - "L0.?[1686857924405405391,1686858795216216200] 1686931336.08s 6mb |L0.?| " + - "L0.?[1686858795216216201,1686859666027027010] 1686931336.08s 6mb |L0.?| " + - "L0.?[1686859666027027011,1686860536837837820] 1686931336.08s 6mb |L0.?| " + - "L0.?[1686860536837837821,1686861407648648630] 1686931336.08s 6mb |L0.?| " + - "L0.?[1686861407648648631,1686862278459459440] 1686931336.08s 6mb |L0.?| " + - "L0.?[1686862278459459441,1686863149270270250] 1686931336.08s 6mb |L0.?| " + - "L0.?[1686863149270270251,1686864020081081060] 1686931336.08s 6mb |L0.?| " + - "L0.?[1686864020081081061,1686864839000000000] 1686931336.08s 6mb |L0.?| " + - "**** Simulation run 35, type=split(HighL0OverlapTotalBacklog)(split_times=[1686853570351351340, 1686854441162162150, 1686855311972972960, 1686856182783783770, 1686857053594594580, 1686857924405405390, 1686858795216216200, 1686859666027027010, 1686860536837837820, 1686861407648648630, 1686862278459459440, 1686863149270270250, 1686864020081081060, 1686864890891891870]). 1 Input Files, 77mb total:" + - "L0, all files 77mb " + - "L0.40[1686853379000000000,1686865259000000000] 1686929421.02s|-----------------------------------------L0.40------------------------------------------|" + - "**** 15 Output Files (parquet_file_id not yet assigned), 77mb total:" + - "L0 " + - "L0.?[1686853379000000000,1686853570351351340] 1686929421.02s 1mb|L0.?| " + - "L0.?[1686853570351351341,1686854441162162150] 1686929421.02s 6mb |L0.?| " + - "L0.?[1686854441162162151,1686855311972972960] 1686929421.02s 6mb |L0.?| " + - "L0.?[1686855311972972961,1686856182783783770] 1686929421.02s 6mb |L0.?| " + - "L0.?[1686856182783783771,1686857053594594580] 1686929421.02s 6mb |L0.?| " + - "L0.?[1686857053594594581,1686857924405405390] 1686929421.02s 6mb |L0.?| " + - "L0.?[1686857924405405391,1686858795216216200] 1686929421.02s 6mb |L0.?| " + - "L0.?[1686858795216216201,1686859666027027010] 1686929421.02s 6mb |L0.?| " + - "L0.?[1686859666027027011,1686860536837837820] 1686929421.02s 6mb |L0.?| " + - "L0.?[1686860536837837821,1686861407648648630] 1686929421.02s 6mb |L0.?| " + - "L0.?[1686861407648648631,1686862278459459440] 1686929421.02s 6mb |L0.?| " + - "L0.?[1686862278459459441,1686863149270270250] 1686929421.02s 6mb |L0.?| " + - "L0.?[1686863149270270251,1686864020081081060] 1686929421.02s 6mb |L0.?| " + - "L0.?[1686864020081081061,1686864890891891870] 1686929421.02s 6mb |L0.?| " + - "L0.?[1686864890891891871,1686865259000000000] 1686929421.02s 2mb |L0.?|" + - "**** Simulation run 36, type=split(HighL0OverlapTotalBacklog)(split_times=[1686853570351351340, 1686854441162162150, 1686855311972972960, 1686856182783783770, 1686857053594594580, 1686857924405405390, 1686858795216216200, 1686859666027027010, 1686860536837837820, 1686861407648648630, 1686862278459459440, 1686863149270270250, 1686864020081081060, 1686864890891891870]). 1 Input Files, 77mb total:" + - "L0, all files 77mb " + - "L0.41[1686853379000000000,1686865259000000000] 1686935546.05s|-----------------------------------------L0.41------------------------------------------|" + - "**** 15 Output Files (parquet_file_id not yet assigned), 77mb total:" + - "L0 " + - "L0.?[1686853379000000000,1686853570351351340] 1686935546.05s 1mb|L0.?| " + - "L0.?[1686853570351351341,1686854441162162150] 1686935546.05s 6mb |L0.?| " + - "L0.?[1686854441162162151,1686855311972972960] 1686935546.05s 6mb |L0.?| " + - "L0.?[1686855311972972961,1686856182783783770] 1686935546.05s 6mb |L0.?| " + - "L0.?[1686856182783783771,1686857053594594580] 1686935546.05s 6mb |L0.?| " + - "L0.?[1686857053594594581,1686857924405405390] 1686935546.05s 6mb |L0.?| " + - "L0.?[1686857924405405391,1686858795216216200] 1686935546.05s 6mb |L0.?| " + - "L0.?[1686858795216216201,1686859666027027010] 1686935546.05s 6mb |L0.?| " + - "L0.?[1686859666027027011,1686860536837837820] 1686935546.05s 6mb |L0.?| " + - "L0.?[1686860536837837821,1686861407648648630] 1686935546.05s 6mb |L0.?| " + - "L0.?[1686861407648648631,1686862278459459440] 1686935546.05s 6mb |L0.?| " + - "L0.?[1686862278459459441,1686863149270270250] 1686935546.05s 6mb |L0.?| " + - "L0.?[1686863149270270251,1686864020081081060] 1686935546.05s 6mb |L0.?| " + - "L0.?[1686864020081081061,1686864890891891870] 1686935546.05s 6mb |L0.?| " + - "L0.?[1686864890891891871,1686865259000000000] 1686935546.05s 2mb |L0.?|" + - "**** Simulation run 37, type=split(HighL0OverlapTotalBacklog)(split_times=[1686853570351351340, 1686854441162162150, 1686855311972972960, 1686856182783783770, 1686857053594594580, 1686857924405405390, 1686858795216216200, 1686859666027027010, 1686860536837837820, 1686861407648648630, 1686862278459459440, 1686863149270270250, 1686864020081081060, 1686864890891891870]). 1 Input Files, 124mb total:" + - "L0, all files 124mb " + - "L0.42[1686853439000000000,1686865439000000000] 1686930780.95s|-----------------------------------------L0.42------------------------------------------|" + - "**** 15 Output Files (parquet_file_id not yet assigned), 124mb total:" + - "L0 " + - "L0.?[1686853439000000000,1686853570351351340] 1686930780.95s 1mb|L0.?| " + - "L0.?[1686853570351351341,1686854441162162150] 1686930780.95s 9mb|L0.?| " + - "L0.?[1686854441162162151,1686855311972972960] 1686930780.95s 9mb |L0.?| " + - "L0.?[1686855311972972961,1686856182783783770] 1686930780.95s 9mb |L0.?| " + - "L0.?[1686856182783783771,1686857053594594580] 1686930780.95s 9mb |L0.?| " + - "L0.?[1686857053594594581,1686857924405405390] 1686930780.95s 9mb |L0.?| " + - "L0.?[1686857924405405391,1686858795216216200] 1686930780.95s 9mb |L0.?| " + - "L0.?[1686858795216216201,1686859666027027010] 1686930780.95s 9mb |L0.?| " + - "L0.?[1686859666027027011,1686860536837837820] 1686930780.95s 9mb |L0.?| " + - "L0.?[1686860536837837821,1686861407648648630] 1686930780.95s 9mb |L0.?| " + - "L0.?[1686861407648648631,1686862278459459440] 1686930780.95s 9mb |L0.?| " + - "L0.?[1686862278459459441,1686863149270270250] 1686930780.95s 9mb |L0.?| " + - "L0.?[1686863149270270251,1686864020081081060] 1686930780.95s 9mb |L0.?| " + - "L0.?[1686864020081081061,1686864890891891870] 1686930780.95s 9mb |L0.?| " + - "L0.?[1686864890891891871,1686865439000000000] 1686930780.95s 6mb |L0.?|" + - "**** Simulation run 38, type=split(HighL0OverlapTotalBacklog)(split_times=[1686854441162162150, 1686855311972972960, 1686856182783783770, 1686857053594594580, 1686857924405405390, 1686858795216216200, 1686859666027027010, 1686860536837837820, 1686861407648648630, 1686862278459459440, 1686863149270270250, 1686864020081081060, 1686864890891891870, 1686865761702702680]). 1 Input Files, 73mb total:" + - "L0, all files 73mb " + - "L0.43[1686853739000000000,1686866039000000000] 1686934759.75s|-----------------------------------------L0.43------------------------------------------|" + - "**** 15 Output Files (parquet_file_id not yet assigned), 73mb total:" + - "L0 " + - "L0.?[1686853739000000000,1686854441162162150] 1686934759.75s 4mb|L0.?| " + - "L0.?[1686854441162162151,1686855311972972960] 1686934759.75s 5mb |L0.?| " + - "L0.?[1686855311972972961,1686856182783783770] 1686934759.75s 5mb |L0.?| " + - "L0.?[1686856182783783771,1686857053594594580] 1686934759.75s 5mb |L0.?| " + - "L0.?[1686857053594594581,1686857924405405390] 1686934759.75s 5mb |L0.?| " + - "L0.?[1686857924405405391,1686858795216216200] 1686934759.75s 5mb |L0.?| " + - "L0.?[1686858795216216201,1686859666027027010] 1686934759.75s 5mb |L0.?| " + - "L0.?[1686859666027027011,1686860536837837820] 1686934759.75s 5mb |L0.?| " + - "L0.?[1686860536837837821,1686861407648648630] 1686934759.75s 5mb |L0.?| " + - "L0.?[1686861407648648631,1686862278459459440] 1686934759.75s 5mb |L0.?| " + - "L0.?[1686862278459459441,1686863149270270250] 1686934759.75s 5mb |L0.?| " + - "L0.?[1686863149270270251,1686864020081081060] 1686934759.75s 5mb |L0.?| " + - "L0.?[1686864020081081061,1686864890891891870] 1686934759.75s 5mb |L0.?| " + - "L0.?[1686864890891891871,1686865761702702680] 1686934759.75s 5mb |L0.?| " + - "L0.?[1686865761702702681,1686866039000000000] 1686934759.75s 2mb |L0.?|" + - "**** Simulation run 39, type=split(HighL0OverlapTotalBacklog)(split_times=[1686854441162162150, 1686855311972972960, 1686856182783783770, 1686857053594594580, 1686857924405405390, 1686858795216216200, 1686859666027027010, 1686860536837837820, 1686861407648648630, 1686862278459459440, 1686863149270270250, 1686864020081081060, 1686864890891891870, 1686865761702702680, 1686866632513513490]). 1 Input Files, 77mb total:" + - "L0, all files 77mb " + - "L0.44[1686854279000000000,1686867059000000000] 1686932677.39s|-----------------------------------------L0.44------------------------------------------|" + - "**** 16 Output Files (parquet_file_id not yet assigned), 77mb total:" + - "L0 " + - "L0.?[1686854279000000000,1686854441162162150] 1686932677.39s 1006kb|L0.?| " + - "L0.?[1686854441162162151,1686855311972972960] 1686932677.39s 5mb |L0.?| " + - "L0.?[1686855311972972961,1686856182783783770] 1686932677.39s 5mb |L0.?| " + - "L0.?[1686856182783783771,1686857053594594580] 1686932677.39s 5mb |L0.?| " + - "L0.?[1686857053594594581,1686857924405405390] 1686932677.39s 5mb |L0.?| " + - "L0.?[1686857924405405391,1686858795216216200] 1686932677.39s 5mb |L0.?| " + - "L0.?[1686858795216216201,1686859666027027010] 1686932677.39s 5mb |L0.?| " + - "L0.?[1686859666027027011,1686860536837837820] 1686932677.39s 5mb |L0.?| " + - "L0.?[1686860536837837821,1686861407648648630] 1686932677.39s 5mb |L0.?| " + - "L0.?[1686861407648648631,1686862278459459440] 1686932677.39s 5mb |L0.?| " + - "L0.?[1686862278459459441,1686863149270270250] 1686932677.39s 5mb |L0.?| " + - "L0.?[1686863149270270251,1686864020081081060] 1686932677.39s 5mb |L0.?| " + - "L0.?[1686864020081081061,1686864890891891870] 1686932677.39s 5mb |L0.?| " + - "L0.?[1686864890891891871,1686865761702702680] 1686932677.39s 5mb |L0.?| " + - "L0.?[1686865761702702681,1686866632513513490] 1686932677.39s 5mb |L0.?| " + - "L0.?[1686866632513513491,1686867059000000000] 1686932677.39s 3mb |L0.?|" + - "**** Simulation run 40, type=split(HighL0OverlapTotalBacklog)(split_times=[1686855311972972960, 1686856182783783770, 1686857053594594580, 1686857924405405390, 1686858795216216200, 1686859666027027010, 1686860536837837820, 1686861407648648630, 1686862278459459440, 1686863149270270250, 1686864020081081060, 1686864890891891870, 1686865761702702680, 1686866632513513490, 1686867503324324300]). 1 Input Files, 89mb total:" + - "L0, all files 89mb " + - "L0.45[1686854819000000000,1686868199000000000] 1686935947.46s|-----------------------------------------L0.45------------------------------------------|" + - "**** 16 Output Files (parquet_file_id not yet assigned), 89mb total:" + - "L0 " + - "L0.?[1686854819000000000,1686855311972972960] 1686935947.46s 3mb|L0.?| " + - "L0.?[1686855311972972961,1686856182783783770] 1686935947.46s 6mb |L0.?| " + - "L0.?[1686856182783783771,1686857053594594580] 1686935947.46s 6mb |L0.?| " + - "L0.?[1686857053594594581,1686857924405405390] 1686935947.46s 6mb |L0.?| " + - "L0.?[1686857924405405391,1686858795216216200] 1686935947.46s 6mb |L0.?| " + - "L0.?[1686858795216216201,1686859666027027010] 1686935947.46s 6mb |L0.?| " + - "L0.?[1686859666027027011,1686860536837837820] 1686935947.46s 6mb |L0.?| " + - "L0.?[1686860536837837821,1686861407648648630] 1686935947.46s 6mb |L0.?| " + - "L0.?[1686861407648648631,1686862278459459440] 1686935947.46s 6mb |L0.?| " + - "L0.?[1686862278459459441,1686863149270270250] 1686935947.46s 6mb |L0.?| " + - "L0.?[1686863149270270251,1686864020081081060] 1686935947.46s 6mb |L0.?| " + - "L0.?[1686864020081081061,1686864890891891870] 1686935947.46s 6mb |L0.?| " + - "L0.?[1686864890891891871,1686865761702702680] 1686935947.46s 6mb |L0.?| " + - "L0.?[1686865761702702681,1686866632513513490] 1686935947.46s 6mb |L0.?| " + - "L0.?[1686866632513513491,1686867503324324300] 1686935947.46s 6mb |L0.?| " + - "L0.?[1686867503324324301,1686868199000000000] 1686935947.46s 5mb |L0.?|" + - "**** Simulation run 41, type=split(HighL0OverlapTotalBacklog)(split_times=[1686855311972972960, 1686856182783783770, 1686857053594594580, 1686857924405405390, 1686858795216216200]). 1 Input Files, 5mb total:" + - "L1, all files 5mb " + - "L1.47[1686854879000000000,1686859019000000000] 1686928854.57s|-----------------------------------------L1.47------------------------------------------|" + - "**** 6 Output Files (parquet_file_id not yet assigned), 5mb total:" + - "L1 " + - "L1.?[1686854879000000000,1686855311972972960] 1686928854.57s 556kb|-L1.?--| " + - "L1.?[1686855311972972961,1686856182783783770] 1686928854.57s 1mb |------L1.?------| " + - "L1.?[1686856182783783771,1686857053594594580] 1686928854.57s 1mb |------L1.?------| " + - "L1.?[1686857053594594581,1686857924405405390] 1686928854.57s 1mb |------L1.?------| " + - "L1.?[1686857924405405391,1686858795216216200] 1686928854.57s 1mb |------L1.?------| " + - "L1.?[1686858795216216201,1686859019000000000] 1686928854.57s 287kb |L1.?|" + - "**** Simulation run 42, type=split(HighL0OverlapTotalBacklog)(split_times=[1686855311972972960, 1686856182783783770, 1686857053594594580, 1686857924405405390, 1686858795216216200, 1686859666027027010, 1686860536837837820, 1686861407648648630, 1686862278459459440, 1686863149270270250, 1686864020081081060, 1686864890891891870, 1686865761702702680, 1686866632513513490, 1686867503324324300, 1686868374135135110]). 1 Input Files, 93mb total:" + - "L0, all files 93mb " + - "L0.48[1686855119000000000,1686868739000000000] 1686929965.33s|-----------------------------------------L0.48------------------------------------------|" + - "**** 17 Output Files (parquet_file_id not yet assigned), 93mb total:" + - "L0 " + - "L0.?[1686855119000000000,1686855311972972960] 1686929965.33s 1mb|L0.?| " + - "L0.?[1686855311972972961,1686856182783783770] 1686929965.33s 6mb |L0.?| " + - "L0.?[1686856182783783771,1686857053594594580] 1686929965.33s 6mb |L0.?| " + - "L0.?[1686857053594594581,1686857924405405390] 1686929965.33s 6mb |L0.?| " + - "L0.?[1686857924405405391,1686858795216216200] 1686929965.33s 6mb |L0.?| " + - "L0.?[1686858795216216201,1686859666027027010] 1686929965.33s 6mb |L0.?| " + - "L0.?[1686859666027027011,1686860536837837820] 1686929965.33s 6mb |L0.?| " + - "L0.?[1686860536837837821,1686861407648648630] 1686929965.33s 6mb |L0.?| " + - "L0.?[1686861407648648631,1686862278459459440] 1686929965.33s 6mb |L0.?| " + - "L0.?[1686862278459459441,1686863149270270250] 1686929965.33s 6mb |L0.?| " + - "L0.?[1686863149270270251,1686864020081081060] 1686929965.33s 6mb |L0.?| " + - "L0.?[1686864020081081061,1686864890891891870] 1686929965.33s 6mb |L0.?| " + - "L0.?[1686864890891891871,1686865761702702680] 1686929965.33s 6mb |L0.?| " + - "L0.?[1686865761702702681,1686866632513513490] 1686929965.33s 6mb |L0.?| " + - "L0.?[1686866632513513491,1686867503324324300] 1686929965.33s 6mb |L0.?| " + - "L0.?[1686867503324324301,1686868374135135110] 1686929965.33s 6mb |L0.?| " + - "L0.?[1686868374135135111,1686868739000000000] 1686929965.33s 2mb |L0.?|" + - "**** Simulation run 43, type=split(HighL0OverlapTotalBacklog)(split_times=[1686855311972972960, 1686856182783783770, 1686857053594594580, 1686857924405405390, 1686858795216216200, 1686859666027027010, 1686860536837837820, 1686861407648648630, 1686862278459459440, 1686863149270270250, 1686864020081081060, 1686864890891891870, 1686865761702702680, 1686866632513513490, 1686867503324324300, 1686868374135135110]). 1 Input Files, 92mb total:" + - "L0, all files 92mb " + - "L0.49[1686855179000000000,1686868859000000000] 1686933830.06s|-----------------------------------------L0.49------------------------------------------|" + - "**** 17 Output Files (parquet_file_id not yet assigned), 92mb total:" + - "L0 " + - "L0.?[1686855179000000000,1686855311972972960] 1686933830.06s 920kb|L0.?| " + - "L0.?[1686855311972972961,1686856182783783770] 1686933830.06s 6mb|L0.?| " + - "L0.?[1686856182783783771,1686857053594594580] 1686933830.06s 6mb |L0.?| " + - "L0.?[1686857053594594581,1686857924405405390] 1686933830.06s 6mb |L0.?| " + - "L0.?[1686857924405405391,1686858795216216200] 1686933830.06s 6mb |L0.?| " + - "L0.?[1686858795216216201,1686859666027027010] 1686933830.06s 6mb |L0.?| " + - "L0.?[1686859666027027011,1686860536837837820] 1686933830.06s 6mb |L0.?| " + - "L0.?[1686860536837837821,1686861407648648630] 1686933830.06s 6mb |L0.?| " + - "L0.?[1686861407648648631,1686862278459459440] 1686933830.06s 6mb |L0.?| " + - "L0.?[1686862278459459441,1686863149270270250] 1686933830.06s 6mb |L0.?| " + - "L0.?[1686863149270270251,1686864020081081060] 1686933830.06s 6mb |L0.?| " + - "L0.?[1686864020081081061,1686864890891891870] 1686933830.06s 6mb |L0.?| " + - "L0.?[1686864890891891871,1686865761702702680] 1686933830.06s 6mb |L0.?| " + - "L0.?[1686865761702702681,1686866632513513490] 1686933830.06s 6mb |L0.?| " + - "L0.?[1686866632513513491,1686867503324324300] 1686933830.06s 6mb |L0.?| " + - "L0.?[1686867503324324301,1686868374135135110] 1686933830.06s 6mb |L0.?| " + - "L0.?[1686868374135135111,1686868859000000000] 1686933830.06s 3mb |L0.?|" + - "**** Simulation run 44, type=split(HighL0OverlapTotalBacklog)(split_times=[1686856182783783770, 1686857053594594580, 1686857924405405390, 1686858795216216200, 1686859666027027010, 1686860536837837820, 1686861407648648630, 1686862278459459440, 1686863149270270250, 1686864020081081060, 1686864890891891870, 1686865761702702680, 1686866632513513490, 1686867503324324300, 1686868374135135110, 1686869244945945920]). 1 Input Files, 97mb total:" + - "L0, all files 97mb " + - "L0.50[1686855479000000000,1686869519000000000] 1686935151.54s|-----------------------------------------L0.50------------------------------------------|" + - "**** 17 Output Files (parquet_file_id not yet assigned), 97mb total:" + - "L0 " + - "L0.?[1686855479000000000,1686856182783783770] 1686935151.54s 5mb|L0.?| " + - "L0.?[1686856182783783771,1686857053594594580] 1686935151.54s 6mb |L0.?| " + - "L0.?[1686857053594594581,1686857924405405390] 1686935151.54s 6mb |L0.?| " + - "L0.?[1686857924405405391,1686858795216216200] 1686935151.54s 6mb |L0.?| " + - "L0.?[1686858795216216201,1686859666027027010] 1686935151.54s 6mb |L0.?| " + - "L0.?[1686859666027027011,1686860536837837820] 1686935151.54s 6mb |L0.?| " + - "L0.?[1686860536837837821,1686861407648648630] 1686935151.54s 6mb |L0.?| " + - "L0.?[1686861407648648631,1686862278459459440] 1686935151.54s 6mb |L0.?| " + - "L0.?[1686862278459459441,1686863149270270250] 1686935151.54s 6mb |L0.?| " + - "L0.?[1686863149270270251,1686864020081081060] 1686935151.54s 6mb |L0.?| " + - "L0.?[1686864020081081061,1686864890891891870] 1686935151.54s 6mb |L0.?| " + - "L0.?[1686864890891891871,1686865761702702680] 1686935151.54s 6mb |L0.?| " + - "L0.?[1686865761702702681,1686866632513513490] 1686935151.54s 6mb |L0.?| " + - "L0.?[1686866632513513491,1686867503324324300] 1686935151.54s 6mb |L0.?| " + - "L0.?[1686867503324324301,1686868374135135110] 1686935151.54s 6mb |L0.?| " + - "L0.?[1686868374135135111,1686869244945945920] 1686935151.54s 6mb |L0.?| " + - "L0.?[1686869244945945921,1686869519000000000] 1686935151.54s 2mb |L0.?|" + - "**** Simulation run 45, type=split(HighL0OverlapTotalBacklog)(split_times=[1686856182783783770, 1686857053594594580, 1686857924405405390, 1686858795216216200, 1686859666027027010, 1686860536837837820, 1686861407648648630, 1686862278459459440, 1686863149270270250, 1686864020081081060, 1686864890891891870, 1686865761702702680, 1686866632513513490, 1686867503324324300, 1686868374135135110, 1686869244945945920]). 1 Input Files, 95mb total:" + - "L0, all files 95mb " + - "L0.51[1686855719000000000,1686869939000000000] 1686931893.7s|-----------------------------------------L0.51------------------------------------------|" + - "**** 17 Output Files (parquet_file_id not yet assigned), 95mb total:" + - "L0 " + - "L0.?[1686855719000000000,1686856182783783770] 1686931893.7s 3mb|L0.?| " + - "L0.?[1686856182783783771,1686857053594594580] 1686931893.7s 6mb |L0.?| " + - "L0.?[1686857053594594581,1686857924405405390] 1686931893.7s 6mb |L0.?| " + - "L0.?[1686857924405405391,1686858795216216200] 1686931893.7s 6mb |L0.?| " + - "L0.?[1686858795216216201,1686859666027027010] 1686931893.7s 6mb |L0.?| " + - "L0.?[1686859666027027011,1686860536837837820] 1686931893.7s 6mb |L0.?| " + - "L0.?[1686860536837837821,1686861407648648630] 1686931893.7s 6mb |L0.?| " + - "L0.?[1686861407648648631,1686862278459459440] 1686931893.7s 6mb |L0.?| " + - "L0.?[1686862278459459441,1686863149270270250] 1686931893.7s 6mb |L0.?| " + - "L0.?[1686863149270270251,1686864020081081060] 1686931893.7s 6mb |L0.?| " + - "L0.?[1686864020081081061,1686864890891891870] 1686931893.7s 6mb |L0.?| " + - "L0.?[1686864890891891871,1686865761702702680] 1686931893.7s 6mb |L0.?| " + - "L0.?[1686865761702702681,1686866632513513490] 1686931893.7s 6mb |L0.?| " + - "L0.?[1686866632513513491,1686867503324324300] 1686931893.7s 6mb |L0.?| " + - "L0.?[1686867503324324301,1686868374135135110] 1686931893.7s 6mb |L0.?| " + - "L0.?[1686868374135135111,1686869244945945920] 1686931893.7s 6mb |L0.?| " + - "L0.?[1686869244945945921,1686869939000000000] 1686931893.7s 5mb |L0.?|" + - "**** Simulation run 46, type=split(HighL0OverlapTotalBacklog)(split_times=[1686858795216216200, 1686859666027027010, 1686860536837837820, 1686861407648648630, 1686862278459459440, 1686863149270270250, 1686864020081081060, 1686864890891891870, 1686865761702702680]). 1 Input Files, 94mb total:" + - "L0, all files 94mb " + - "L0.52[1686858179000000000,1686865979000000000] 1686932458.05s|-----------------------------------------L0.52------------------------------------------|" + - "**** 10 Output Files (parquet_file_id not yet assigned), 94mb total:" + - "L0 " + - "L0.?[1686858179000000000,1686858795216216200] 1686932458.05s 7mb|L0.?-| " + - "L0.?[1686858795216216201,1686859666027027010] 1686932458.05s 10mb |--L0.?--| " + - "L0.?[1686859666027027011,1686860536837837820] 1686932458.05s 10mb |--L0.?--| " + - "L0.?[1686860536837837821,1686861407648648630] 1686932458.05s 10mb |--L0.?--| " + - "L0.?[1686861407648648631,1686862278459459440] 1686932458.05s 10mb |--L0.?--| " + - "L0.?[1686862278459459441,1686863149270270250] 1686932458.05s 10mb |--L0.?--| " + - "L0.?[1686863149270270251,1686864020081081060] 1686932458.05s 10mb |--L0.?--| " + - "L0.?[1686864020081081061,1686864890891891870] 1686932458.05s 10mb |--L0.?--| " + - "L0.?[1686864890891891871,1686865761702702680] 1686932458.05s 10mb |--L0.?--| " + - "L0.?[1686865761702702681,1686865979000000000] 1686932458.05s 3mb |L0.?|" + - "**** Simulation run 47, type=split(HighL0OverlapTotalBacklog)(split_times=[1686859666027027010, 1686860536837837820, 1686861407648648630, 1686862278459459440, 1686863149270270250]). 1 Input Files, 5mb total:" + - "L1, all files 5mb " + - "L1.55[1686859559000000000,1686863699000000000] 1686928854.57s|-----------------------------------------L1.55------------------------------------------|" + - "**** 6 Output Files (parquet_file_id not yet assigned), 5mb total:" + - "L1 " + - "L1.?[1686859559000000000,1686859666027027010] 1686928854.57s 137kb|L1.?| " + - "L1.?[1686859666027027011,1686860536837837820] 1686928854.57s 1mb |------L1.?------| " + - "L1.?[1686860536837837821,1686861407648648630] 1686928854.57s 1mb |------L1.?------| " + - "L1.?[1686861407648648631,1686862278459459440] 1686928854.57s 1mb |------L1.?------| " + - "L1.?[1686862278459459441,1686863149270270250] 1686928854.57s 1mb |------L1.?------| " + - "L1.?[1686863149270270251,1686863699000000000] 1686928854.57s 703kb |--L1.?---| " + - "**** Simulation run 48, type=split(HighL0OverlapTotalBacklog)(split_times=[1686863149270270250, 1686864020081081060, 1686864890891891870, 1686865761702702680, 1686866632513513490, 1686867503324324300, 1686868374135135110, 1686869244945945920, 1686870115756756730, 1686870986567567540, 1686871857378378350, 1686872728189189160]). 1 Input Files, 98mb total:" + - "L0, all files 98mb " + - "L0.57[1686862919000000000,1686873599000000000] 1686934254.96s|-----------------------------------------L0.57------------------------------------------|" + - "**** 13 Output Files (parquet_file_id not yet assigned), 98mb total:" + - "L0 " + - "L0.?[1686862919000000000,1686863149270270250] 1686934254.96s 2mb|L0.?| " + - "L0.?[1686863149270270251,1686864020081081060] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686864020081081061,1686864890891891870] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686864890891891871,1686865761702702680] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686865761702702681,1686866632513513490] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686866632513513491,1686867503324324300] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686867503324324301,1686868374135135110] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686868374135135111,1686869244945945920] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686869244945945921,1686870115756756730] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686870115756756731,1686870986567567540] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686870986567567541,1686871857378378350] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686871857378378351,1686872728189189160] 1686934254.96s 8mb |L0.?-| " + - "L0.?[1686872728189189161,1686873599000000000] 1686934254.96s 8mb |L0.?-| " + - "**** Simulation run 49, type=split(HighL0OverlapTotalBacklog)(split_times=[1686864020081081060, 1686864890891891870, 1686865761702702680, 1686866632513513490, 1686867503324324300]). 1 Input Files, 5mb total:" + - "L1, all files 5mb " + - "L1.58[1686863759000000000,1686867659000000000] 1686928854.57s|-----------------------------------------L1.58------------------------------------------|" + - "**** 6 Output Files (parquet_file_id not yet assigned), 5mb total:" + - "L1 " + - "L1.?[1686863759000000000,1686864020081081060] 1686928854.57s 329kb|L1.?| " + - "L1.?[1686864020081081061,1686864890891891870] 1686928854.57s 1mb |-------L1.?-------| " + - "L1.?[1686864890891891871,1686865761702702680] 1686928854.57s 1mb |-------L1.?-------| " + - "L1.?[1686865761702702681,1686866632513513490] 1686928854.57s 1mb |-------L1.?-------| " + - "L1.?[1686866632513513491,1686867503324324300] 1686928854.57s 1mb |-------L1.?-------| " + - "L1.?[1686867503324324301,1686867659000000000] 1686928854.57s 196kb |L1.?|" + - "**** Simulation run 50, type=split(HighL0OverlapTotalBacklog)(split_times=[1686864890891891870, 1686865761702702680, 1686866632513513490, 1686867503324324300, 1686868374135135110, 1686869244945945920, 1686870115756756730, 1686870986567567540, 1686871857378378350, 1686872728189189160]). 1 Input Files, 75mb total:" + - "L0, all files 75mb " + - "L0.60[1686864419000000000,1686873599000000000] 1686929712.33s|-----------------------------------------L0.60------------------------------------------|" + - "**** 11 Output Files (parquet_file_id not yet assigned), 75mb total:" + - "L0 " + - "L0.?[1686864419000000000,1686864890891891870] 1686929712.33s 4mb|L0.?| " + - "L0.?[1686864890891891871,1686865761702702680] 1686929712.33s 7mb |-L0.?-| " + - "L0.?[1686865761702702681,1686866632513513490] 1686929712.33s 7mb |-L0.?-| " + - "L0.?[1686866632513513491,1686867503324324300] 1686929712.33s 7mb |-L0.?-| " + - "L0.?[1686867503324324301,1686868374135135110] 1686929712.33s 7mb |-L0.?-| " + - "L0.?[1686868374135135111,1686869244945945920] 1686929712.33s 7mb |-L0.?-| " + - "L0.?[1686869244945945921,1686870115756756730] 1686929712.33s 7mb |-L0.?-| " + - "L0.?[1686870115756756731,1686870986567567540] 1686929712.33s 7mb |-L0.?-| " + - "L0.?[1686870986567567541,1686871857378378350] 1686929712.33s 7mb |-L0.?-| " + - "L0.?[1686871857378378351,1686872728189189160] 1686929712.33s 7mb |-L0.?-| " + - "L0.?[1686872728189189161,1686873599000000000] 1686929712.33s 7mb |-L0.?-| " + - "**** Simulation run 51, type=split(HighL0OverlapTotalBacklog)(split_times=[1686864890891891870, 1686865761702702680, 1686866632513513490, 1686867503324324300, 1686868374135135110, 1686869244945945920, 1686870115756756730, 1686870986567567540, 1686871857378378350, 1686872728189189160]). 1 Input Files, 75mb total:" + - "L0, all files 75mb " + - "L0.61[1686864419000000000,1686873599000000000] 1686935742.51s|-----------------------------------------L0.61------------------------------------------|" + - "**** 11 Output Files (parquet_file_id not yet assigned), 75mb total:" + - "L0 " + - "L0.?[1686864419000000000,1686864890891891870] 1686935742.51s 4mb|L0.?| " + - "L0.?[1686864890891891871,1686865761702702680] 1686935742.51s 7mb |-L0.?-| " + - "L0.?[1686865761702702681,1686866632513513490] 1686935742.51s 7mb |-L0.?-| " + - "L0.?[1686866632513513491,1686867503324324300] 1686935742.51s 7mb |-L0.?-| " + - "L0.?[1686867503324324301,1686868374135135110] 1686935742.51s 7mb |-L0.?-| " + - "L0.?[1686868374135135111,1686869244945945920] 1686935742.51s 7mb |-L0.?-| " + - "L0.?[1686869244945945921,1686870115756756730] 1686935742.51s 7mb |-L0.?-| " + - "L0.?[1686870115756756731,1686870986567567540] 1686935742.51s 7mb |-L0.?-| " + - "L0.?[1686870986567567541,1686871857378378350] 1686935742.51s 7mb |-L0.?-| " + - "L0.?[1686871857378378351,1686872728189189160] 1686935742.51s 7mb |-L0.?-| " + - "L0.?[1686872728189189161,1686873599000000000] 1686935742.51s 7mb |-L0.?-| " + - "**** Simulation run 52, type=split(HighL0OverlapTotalBacklog)(split_times=[1686864890891891870, 1686865761702702680, 1686866632513513490, 1686867503324324300, 1686868374135135110, 1686869244945945920, 1686870115756756730, 1686870986567567540, 1686871857378378350, 1686872728189189160]). 1 Input Files, 79mb total:" + - "L0, all files 79mb " + - "L0.63[1686864479000000000,1686873599000000000] 1686931600.58s|-----------------------------------------L0.63------------------------------------------|" + - "**** 11 Output Files (parquet_file_id not yet assigned), 79mb total:" + - "L0 " + - "L0.?[1686864479000000000,1686864890891891870] 1686931600.58s 4mb|L0.?| " + - "L0.?[1686864890891891871,1686865761702702680] 1686931600.58s 8mb |-L0.?-| " + - "L0.?[1686865761702702681,1686866632513513490] 1686931600.58s 8mb |-L0.?-| " + - "L0.?[1686866632513513491,1686867503324324300] 1686931600.58s 8mb |-L0.?-| " + - "L0.?[1686867503324324301,1686868374135135110] 1686931600.58s 8mb |-L0.?-| " + - "L0.?[1686868374135135111,1686869244945945920] 1686931600.58s 8mb |-L0.?-| " + - "L0.?[1686869244945945921,1686870115756756730] 1686931600.58s 8mb |-L0.?-| " + - "L0.?[1686870115756756731,1686870986567567540] 1686931600.58s 8mb |-L0.?-| " + - "L0.?[1686870986567567541,1686871857378378350] 1686931600.58s 8mb |-L0.?-| " + - "L0.?[1686871857378378351,1686872728189189160] 1686931600.58s 8mb |-L0.?-| " + - "L0.?[1686872728189189161,1686873599000000000] 1686931600.58s 8mb |-L0.?-| " + - "**** Simulation run 53, type=split(HighL0OverlapTotalBacklog)(split_times=[1686864890891891870, 1686865761702702680, 1686866632513513490, 1686867503324324300, 1686868374135135110, 1686869244945945920, 1686870115756756730, 1686870986567567540, 1686871857378378350, 1686872728189189160]). 1 Input Files, 74mb total:" + - "L0, all files 74mb " + - "L0.62[1686864479000000000,1686873599000000000] 1686934966.48s|-----------------------------------------L0.62------------------------------------------|" + - "**** 11 Output Files (parquet_file_id not yet assigned), 74mb total:" + - "L0 " + - "L0.?[1686864479000000000,1686864890891891870] 1686934966.48s 3mb|L0.?| " + - "L0.?[1686864890891891871,1686865761702702680] 1686934966.48s 7mb |-L0.?-| " + - "L0.?[1686865761702702681,1686866632513513490] 1686934966.48s 7mb |-L0.?-| " + - "L0.?[1686866632513513491,1686867503324324300] 1686934966.48s 7mb |-L0.?-| " + - "L0.?[1686867503324324301,1686868374135135110] 1686934966.48s 7mb |-L0.?-| " + - "L0.?[1686868374135135111,1686869244945945920] 1686934966.48s 7mb |-L0.?-| " + - "L0.?[1686869244945945921,1686870115756756730] 1686934966.48s 7mb |-L0.?-| " + - "L0.?[1686870115756756731,1686870986567567540] 1686934966.48s 7mb |-L0.?-| " + - "L0.?[1686870986567567541,1686871857378378350] 1686934966.48s 7mb |-L0.?-| " + - "L0.?[1686871857378378351,1686872728189189160] 1686934966.48s 7mb |-L0.?-| " + - "L0.?[1686872728189189161,1686873599000000000] 1686934966.48s 7mb |-L0.?-| " + - "**** Simulation run 54, type=split(HighL0OverlapTotalBacklog)(split_times=[1686864890891891870, 1686865761702702680, 1686866632513513490, 1686867503324324300, 1686868374135135110, 1686869244945945920, 1686870115756756730, 1686870986567567540, 1686871857378378350, 1686872728189189160]). 1 Input Files, 73mb total:" + - "L0, all files 73mb " + - "L0.64[1686864659000000000,1686873599000000000] 1686933528.17s|-----------------------------------------L0.64------------------------------------------|" + - "**** 11 Output Files (parquet_file_id not yet assigned), 73mb total:" + - "L0 " + - "L0.?[1686864659000000000,1686864890891891870] 1686933528.17s 2mb|L0.?| " + - "L0.?[1686864890891891871,1686865761702702680] 1686933528.17s 7mb |-L0.?-| " + - "L0.?[1686865761702702681,1686866632513513490] 1686933528.17s 7mb |-L0.?-| " + - "L0.?[1686866632513513491,1686867503324324300] 1686933528.17s 7mb |-L0.?-| " + - "L0.?[1686867503324324301,1686868374135135110] 1686933528.17s 7mb |-L0.?-| " + - "L0.?[1686868374135135111,1686869244945945920] 1686933528.17s 7mb |-L0.?-| " + - "L0.?[1686869244945945921,1686870115756756730] 1686933528.17s 7mb |-L0.?-| " + - "L0.?[1686870115756756731,1686870986567567540] 1686933528.17s 7mb |-L0.?-| " + - "L0.?[1686870986567567541,1686871857378378350] 1686933528.17s 7mb |-L0.?-| " + - "L0.?[1686871857378378351,1686872728189189160] 1686933528.17s 7mb |-L0.?-| " + - "L0.?[1686872728189189161,1686873599000000000] 1686933528.17s 7mb |-L0.?-| " + - "**** Simulation run 55, type=split(HighL0OverlapTotalBacklog)(split_times=[1686864890891891870, 1686865761702702680, 1686866632513513490, 1686867503324324300, 1686868374135135110, 1686869244945945920, 1686870115756756730, 1686870986567567540, 1686871857378378350, 1686872728189189160]). 1 Input Files, 54mb total:" + - "L0, all files 54mb " + - "L0.65[1686864719000000000,1686873599000000000] 1686930563.07s|-----------------------------------------L0.65------------------------------------------|" + - "**** 11 Output Files (parquet_file_id not yet assigned), 54mb total:" + - "L0 " + - "L0.?[1686864719000000000,1686864890891891870] 1686930563.07s 1mb|L0.?| " + - "L0.?[1686864890891891871,1686865761702702680] 1686930563.07s 5mb |-L0.?-| " + - "L0.?[1686865761702702681,1686866632513513490] 1686930563.07s 5mb |-L0.?-| " + - "L0.?[1686866632513513491,1686867503324324300] 1686930563.07s 5mb |-L0.?-| " + - "L0.?[1686867503324324301,1686868374135135110] 1686930563.07s 5mb |-L0.?-| " + - "L0.?[1686868374135135111,1686869244945945920] 1686930563.07s 5mb |-L0.?-| " + - "L0.?[1686869244945945921,1686870115756756730] 1686930563.07s 5mb |-L0.?-| " + - "L0.?[1686870115756756731,1686870986567567540] 1686930563.07s 5mb |-L0.?-| " + - "L0.?[1686870986567567541,1686871857378378350] 1686930563.07s 5mb |-L0.?-| " + - "L0.?[1686871857378378351,1686872728189189160] 1686930563.07s 5mb |-L0.?-| " + - "L0.?[1686872728189189161,1686873599000000000] 1686930563.07s 5mb |-L0.?-| " + - "**** Simulation run 56, type=split(HighL0OverlapTotalBacklog)(split_times=[1686864890891891870, 1686865761702702680, 1686866632513513490, 1686867503324324300, 1686868374135135110, 1686869244945945920, 1686870115756756730, 1686870986567567540, 1686871857378378350, 1686872728189189160]). 1 Input Files, 54mb total:" + - "L0, all files 54mb " + - "L0.66[1686864719000000000,1686873599000000000] 1686933271.57s|-----------------------------------------L0.66------------------------------------------|" + - "**** 11 Output Files (parquet_file_id not yet assigned), 54mb total:" + - "L0 " + - "L0.?[1686864719000000000,1686864890891891870] 1686933271.57s 1mb|L0.?| " + - "L0.?[1686864890891891871,1686865761702702680] 1686933271.57s 5mb |-L0.?-| " + - "L0.?[1686865761702702681,1686866632513513490] 1686933271.57s 5mb |-L0.?-| " + - "L0.?[1686866632513513491,1686867503324324300] 1686933271.57s 5mb |-L0.?-| " + - "L0.?[1686867503324324301,1686868374135135110] 1686933271.57s 5mb |-L0.?-| " + - "L0.?[1686868374135135111,1686869244945945920] 1686933271.57s 5mb |-L0.?-| " + - "L0.?[1686869244945945921,1686870115756756730] 1686933271.57s 5mb |-L0.?-| " + - "L0.?[1686870115756756731,1686870986567567540] 1686933271.57s 5mb |-L0.?-| " + - "L0.?[1686870986567567541,1686871857378378350] 1686933271.57s 5mb |-L0.?-| " + - "L0.?[1686871857378378351,1686872728189189160] 1686933271.57s 5mb |-L0.?-| " + - "L0.?[1686872728189189161,1686873599000000000] 1686933271.57s 5mb |-L0.?-| " + - "**** Simulation run 57, type=split(HighL0OverlapTotalBacklog)(split_times=[1686865761702702680, 1686866632513513490, 1686867503324324300, 1686868374135135110, 1686869244945945920, 1686870115756756730, 1686870986567567540, 1686871857378378350, 1686872728189189160]). 1 Input Files, 53mb total:" + - "L0, all files 53mb " + - "L0.67[1686864899000000000,1686873599000000000] 1686931336.08s|-----------------------------------------L0.67------------------------------------------|" + - "**** 10 Output Files (parquet_file_id not yet assigned), 53mb total:" + - "L0 " + - "L0.?[1686864899000000000,1686865761702702680] 1686931336.08s 5mb|-L0.?-| " + - "L0.?[1686865761702702681,1686866632513513490] 1686931336.08s 5mb |-L0.?--| " + - "L0.?[1686866632513513491,1686867503324324300] 1686931336.08s 5mb |-L0.?--| " + - "L0.?[1686867503324324301,1686868374135135110] 1686931336.08s 5mb |-L0.?--| " + - "L0.?[1686868374135135111,1686869244945945920] 1686931336.08s 5mb |-L0.?--| " + - "L0.?[1686869244945945921,1686870115756756730] 1686931336.08s 5mb |-L0.?--| " + - "L0.?[1686870115756756731,1686870986567567540] 1686931336.08s 5mb |-L0.?--| " + - "L0.?[1686870986567567541,1686871857378378350] 1686931336.08s 5mb |-L0.?--| " + - "L0.?[1686871857378378351,1686872728189189160] 1686931336.08s 5mb |-L0.?--| " + - "L0.?[1686872728189189161,1686873599000000000] 1686931336.08s 5mb |-L0.?--| " + - "**** Simulation run 58, type=split(HighL0OverlapTotalBacklog)(split_times=[1686865761702702680, 1686866632513513490, 1686867503324324300, 1686868374135135110, 1686869244945945920, 1686870115756756730, 1686870986567567540, 1686871857378378350, 1686872728189189160]). 1 Input Files, 49mb total:" + - "L0, all files 49mb " + - "L0.68[1686865319000000000,1686873599000000000] 1686929421.02s|-----------------------------------------L0.68------------------------------------------|" + - "**** 10 Output Files (parquet_file_id not yet assigned), 49mb total:" + - "L0 " + - "L0.?[1686865319000000000,1686865761702702680] 1686929421.02s 3mb|L0.?| " + - "L0.?[1686865761702702681,1686866632513513490] 1686929421.02s 5mb |-L0.?--| " + - "L0.?[1686866632513513491,1686867503324324300] 1686929421.02s 5mb |-L0.?--| " + - "L0.?[1686867503324324301,1686868374135135110] 1686929421.02s 5mb |-L0.?--| " + - "L0.?[1686868374135135111,1686869244945945920] 1686929421.02s 5mb |-L0.?--| " + - "L0.?[1686869244945945921,1686870115756756730] 1686929421.02s 5mb |-L0.?--| " + - "L0.?[1686870115756756731,1686870986567567540] 1686929421.02s 5mb |-L0.?--| " + - "L0.?[1686870986567567541,1686871857378378350] 1686929421.02s 5mb |-L0.?--| " + - "L0.?[1686871857378378351,1686872728189189160] 1686929421.02s 5mb |-L0.?--| " + - "L0.?[1686872728189189161,1686873599000000000] 1686929421.02s 5mb |-L0.?--| " + - "**** Simulation run 59, type=split(HighL0OverlapTotalBacklog)(split_times=[1686865761702702680, 1686866632513513490, 1686867503324324300, 1686868374135135110, 1686869244945945920, 1686870115756756730, 1686870986567567540, 1686871857378378350, 1686872728189189160]). 1 Input Files, 49mb total:" + - "L0, all files 49mb " + - "L0.69[1686865319000000000,1686873599000000000] 1686935546.05s|-----------------------------------------L0.69------------------------------------------|" + - "**** 10 Output Files (parquet_file_id not yet assigned), 49mb total:" + - "L0 " + - "L0.?[1686865319000000000,1686865761702702680] 1686935546.05s 3mb|L0.?| " + - "L0.?[1686865761702702681,1686866632513513490] 1686935546.05s 5mb |-L0.?--| " + - "L0.?[1686866632513513491,1686867503324324300] 1686935546.05s 5mb |-L0.?--| " + - "L0.?[1686867503324324301,1686868374135135110] 1686935546.05s 5mb |-L0.?--| " + - "L0.?[1686868374135135111,1686869244945945920] 1686935546.05s 5mb |-L0.?--| " + - "L0.?[1686869244945945921,1686870115756756730] 1686935546.05s 5mb |-L0.?--| " + - "L0.?[1686870115756756731,1686870986567567540] 1686935546.05s 5mb |-L0.?--| " + - "L0.?[1686870986567567541,1686871857378378350] 1686935546.05s 5mb |-L0.?--| " + - "L0.?[1686871857378378351,1686872728189189160] 1686935546.05s 5mb |-L0.?--| " + - "L0.?[1686872728189189161,1686873599000000000] 1686935546.05s 5mb |-L0.?--| " + - "**** Simulation run 60, type=split(HighL0OverlapTotalBacklog)(split_times=[1686865761702702680, 1686866632513513490, 1686867503324324300, 1686868374135135110, 1686869244945945920, 1686870115756756730, 1686870986567567540, 1686871857378378350, 1686872728189189160]). 1 Input Files, 88mb total:" + - "L0, all files 88mb " + - "L0.70[1686865499000000000,1686873599000000000] 1686930780.95s|-----------------------------------------L0.70------------------------------------------|" + - "**** 10 Output Files (parquet_file_id not yet assigned), 88mb total:" + - "L0 " + - "L0.?[1686865499000000000,1686865761702702680] 1686930780.95s 3mb|L0.?| " + - "L0.?[1686865761702702681,1686866632513513490] 1686930780.95s 9mb |-L0.?--| " + - "L0.?[1686866632513513491,1686867503324324300] 1686930780.95s 9mb |-L0.?--| " + - "L0.?[1686867503324324301,1686868374135135110] 1686930780.95s 9mb |-L0.?--| " + - "L0.?[1686868374135135111,1686869244945945920] 1686930780.95s 9mb |-L0.?--| " + - "L0.?[1686869244945945921,1686870115756756730] 1686930780.95s 9mb |-L0.?--| " + - "L0.?[1686870115756756731,1686870986567567540] 1686930780.95s 9mb |-L0.?--| " + - "L0.?[1686870986567567541,1686871857378378350] 1686930780.95s 9mb |-L0.?--| " + - "L0.?[1686871857378378351,1686872728189189160] 1686930780.95s 9mb |-L0.?--| " + - "L0.?[1686872728189189161,1686873599000000000] 1686930780.95s 9mb |-L0.?--| " + - "**** Simulation run 61, type=split(HighL0OverlapTotalBacklog)(split_times=[1686866632513513490, 1686867503324324300, 1686868374135135110, 1686869244945945920, 1686870115756756730, 1686870986567567540, 1686871857378378350, 1686872728189189160]). 1 Input Files, 45mb total:" + - "L0, all files 45mb " + - "L0.71[1686866099000000000,1686873599000000000] 1686934759.75s|-----------------------------------------L0.71------------------------------------------|" + - "**** 9 Output Files (parquet_file_id not yet assigned), 45mb total:" + - "L0 " + - "L0.?[1686866099000000000,1686866632513513490] 1686934759.75s 3mb|L0.?| " + - "L0.?[1686866632513513491,1686867503324324300] 1686934759.75s 5mb |--L0.?--| " + - "L0.?[1686867503324324301,1686868374135135110] 1686934759.75s 5mb |--L0.?--| " + - "L0.?[1686868374135135111,1686869244945945920] 1686934759.75s 5mb |--L0.?--| " + - "L0.?[1686869244945945921,1686870115756756730] 1686934759.75s 5mb |--L0.?--| " + - "L0.?[1686870115756756731,1686870986567567540] 1686934759.75s 5mb |--L0.?--| " + - "L0.?[1686870986567567541,1686871857378378350] 1686934759.75s 5mb |--L0.?--| " + - "L0.?[1686871857378378351,1686872728189189160] 1686934759.75s 5mb |--L0.?--| " + - "L0.?[1686872728189189161,1686873599000000000] 1686934759.75s 5mb |--L0.?--| " + - "**** Simulation run 62, type=split(HighL0OverlapTotalBacklog)(split_times=[1686867503324324300, 1686868374135135110, 1686869244945945920, 1686870115756756730, 1686870986567567540, 1686871857378378350, 1686872728189189160]). 1 Input Files, 109mb total:" + - "L0, all files 109mb " + - "L0.72[1686867119000000000,1686873599000000000] 1686932677.39s|-----------------------------------------L0.72------------------------------------------|" + - "**** 8 Output Files (parquet_file_id not yet assigned), 109mb total:" + - "L0 " + - "L0.?[1686867119000000000,1686867503324324300] 1686932677.39s 6mb|L0.?| " + - "L0.?[1686867503324324301,1686868374135135110] 1686932677.39s 15mb |---L0.?---| " + - "L0.?[1686868374135135111,1686869244945945920] 1686932677.39s 15mb |---L0.?---| " + - "L0.?[1686869244945945921,1686870115756756730] 1686932677.39s 15mb |---L0.?---| " + - "L0.?[1686870115756756731,1686870986567567540] 1686932677.39s 15mb |---L0.?---| " + - "L0.?[1686870986567567541,1686871857378378350] 1686932677.39s 15mb |---L0.?---| " + - "L0.?[1686871857378378351,1686872728189189160] 1686932677.39s 15mb |---L0.?---| " + - "L0.?[1686872728189189161,1686873599000000000] 1686932677.39s 15mb |---L0.?---| " + - "**** Simulation run 63, type=split(HighL0OverlapTotalBacklog)(split_times=[1686868374135135110, 1686869244945945920, 1686870115756756730, 1686870986567567540, 1686871857378378350, 1686872728189189160]). 1 Input Files, 67mb total:" + - "L0, all files 67mb " + - "L0.76[1686868259000000000,1686873599000000000] 1686935947.46s|-----------------------------------------L0.76------------------------------------------|" + - "**** 7 Output Files (parquet_file_id not yet assigned), 67mb total:" + - "L0 " + - "L0.?[1686868259000000000,1686868374135135110] 1686935947.46s 1mb|L0.?| " + - "L0.?[1686868374135135111,1686869244945945920] 1686935947.46s 11mb |----L0.?----| " + - "L0.?[1686869244945945921,1686870115756756730] 1686935947.46s 11mb |----L0.?----| " + - "L0.?[1686870115756756731,1686870986567567540] 1686935947.46s 11mb |----L0.?----| " + - "L0.?[1686870986567567541,1686871857378378350] 1686935947.46s 11mb |----L0.?----| " + - "L0.?[1686871857378378351,1686872728189189160] 1686935947.46s 11mb |----L0.?----| " + - "L0.?[1686872728189189161,1686873599000000000] 1686935947.46s 11mb |----L0.?----| " + - "**** Simulation run 64, type=split(HighL0OverlapTotalBacklog)(split_times=[1686869244945945920, 1686870115756756730, 1686870986567567540, 1686871857378378350, 1686872728189189160]). 1 Input Files, 89mb total:" + - "L1, all files 89mb " + - "L1.77[1686868379000000000,1686873599000000000] 1686928854.57s|-----------------------------------------L1.77------------------------------------------|" + - "**** 6 Output Files (parquet_file_id not yet assigned), 89mb total:" + - "L1 " + - "L1.?[1686868379000000000,1686869244945945920] 1686928854.57s 15mb|----L1.?----| " + - "L1.?[1686869244945945921,1686870115756756730] 1686928854.57s 15mb |----L1.?-----| " + - "L1.?[1686870115756756731,1686870986567567540] 1686928854.57s 15mb |----L1.?-----| " + - "L1.?[1686870986567567541,1686871857378378350] 1686928854.57s 15mb |----L1.?-----| " + - "L1.?[1686871857378378351,1686872728189189160] 1686928854.57s 15mb |----L1.?-----| " + - "L1.?[1686872728189189161,1686873599000000000] 1686928854.57s 15mb |----L1.?-----| " + - "**** Simulation run 65, type=split(HighL0OverlapTotalBacklog)(split_times=[1686869244945945920, 1686870115756756730, 1686870986567567540, 1686871857378378350, 1686872728189189160]). 1 Input Files, 58mb total:" + - "L0, all files 58mb " + - "L0.79[1686868799000000000,1686873599000000000] 1686929965.33s|-----------------------------------------L0.79------------------------------------------|" + - "**** 6 Output Files (parquet_file_id not yet assigned), 58mb total:" + - "L0 " + - "L0.?[1686868799000000000,1686869244945945920] 1686929965.33s 5mb|-L0.?-| " + - "L0.?[1686869244945945921,1686870115756756730] 1686929965.33s 11mb |-----L0.?-----| " + - "L0.?[1686870115756756731,1686870986567567540] 1686929965.33s 11mb |-----L0.?-----| " + - "L0.?[1686870986567567541,1686871857378378350] 1686929965.33s 11mb |-----L0.?-----| " + - "L0.?[1686871857378378351,1686872728189189160] 1686929965.33s 11mb |-----L0.?-----| " + - "L0.?[1686872728189189161,1686873599000000000] 1686929965.33s 11mb |-----L0.?-----| " + - "**** Simulation run 66, type=split(HighL0OverlapTotalBacklog)(split_times=[1686869244945945920, 1686870115756756730, 1686870986567567540, 1686871857378378350, 1686872728189189160]). 1 Input Files, 57mb total:" + - "L0, all files 57mb " + - "L0.80[1686868919000000000,1686873599000000000] 1686933830.06s|-----------------------------------------L0.80------------------------------------------|" + - "**** 6 Output Files (parquet_file_id not yet assigned), 57mb total:" + - "L0 " + - "L0.?[1686868919000000000,1686869244945945920] 1686933830.06s 4mb|L0.?| " + - "L0.?[1686869244945945921,1686870115756756730] 1686933830.06s 11mb |-----L0.?-----| " + - "L0.?[1686870115756756731,1686870986567567540] 1686933830.06s 11mb |-----L0.?-----| " + - "L0.?[1686870986567567541,1686871857378378350] 1686933830.06s 11mb |-----L0.?-----| " + - "L0.?[1686871857378378351,1686872728189189160] 1686933830.06s 11mb |-----L0.?-----| " + - "L0.?[1686872728189189161,1686873599000000000] 1686933830.06s 11mb |-----L0.?-----| " + - "**** Simulation run 67, type=split(HighL0OverlapTotalBacklog)(split_times=[1686870115756756730, 1686870986567567540, 1686871857378378350, 1686872728189189160]). 1 Input Files, 49mb total:" + - "L0, all files 49mb " + - "L0.81[1686869579000000000,1686873599000000000] 1686935151.54s|-----------------------------------------L0.81------------------------------------------|" + - "**** 5 Output Files (parquet_file_id not yet assigned), 49mb total:" + - "L0 " + - "L0.?[1686869579000000000,1686870115756756730] 1686935151.54s 6mb|---L0.?---| " + - "L0.?[1686870115756756731,1686870986567567540] 1686935151.54s 11mb |------L0.?-------| " + - "L0.?[1686870986567567541,1686871857378378350] 1686935151.54s 11mb |------L0.?-------| " + - "L0.?[1686871857378378351,1686872728189189160] 1686935151.54s 11mb |------L0.?-------| " + - "L0.?[1686872728189189161,1686873599000000000] 1686935151.54s 11mb |------L0.?-------| " + - "**** Simulation run 68, type=split(HighL0OverlapTotalBacklog)(split_times=[1686870115756756730, 1686870986567567540, 1686871857378378350, 1686872728189189160]). 1 Input Files, 44mb total:" + - "L0, all files 44mb " + - "L0.82[1686869999000000000,1686873599000000000] 1686931893.7s|-----------------------------------------L0.82------------------------------------------|" + - "**** 5 Output Files (parquet_file_id not yet assigned), 44mb total:" + - "L0 " + - "L0.?[1686869999000000000,1686870115756756730] 1686931893.7s 1mb|L0.?| " + - "L0.?[1686870115756756731,1686870986567567540] 1686931893.7s 11mb |-------L0.?--------| " + - "L0.?[1686870986567567541,1686871857378378350] 1686931893.7s 11mb |-------L0.?--------| " + - "L0.?[1686871857378378351,1686872728189189160] 1686931893.7s 11mb |-------L0.?--------| " + - "L0.?[1686872728189189161,1686873599000000000] 1686931893.7s 11mb |-------L0.?--------| " + - "**** Simulation run 69, type=split(HighL0OverlapTotalBacklog)(split_times=[1686871857378378350, 1686872728189189160]). 1 Input Files, 9mb total:" + - "L0, all files 9mb " + - "L0.83[1686871619000000000,1686873599000000000] 1686936871.55s|-----------------------------------------L0.83------------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 9mb total:" + - "L0 " + - "L0.?[1686871619000000000,1686871857378378350] 1686936871.55s 1mb|--L0.?--| " + - "L0.?[1686871857378378351,1686872728189189160] 1686936871.55s 4mb |----------------L0.?-----------------| " + - "L0.?[1686872728189189161,1686873599000000000] 1686936871.55s 4mb |----------------L0.?-----------------| " + - "Committing partition 1:" + - " Soft Deleting 70 files: L0.1, L0.3, L0.4, L0.5, L1.6, L0.7, L0.8, L0.9, L0.10, L0.11, L0.12, L0.13, L0.14, L0.15, L0.16, L0.17, L0.18, L0.19, L0.20, L0.21, L0.22, L0.23, L1.24, L0.26, L1.28, L1.29, L0.31, L0.32, L0.33, L0.34, L0.35, L0.36, L0.37, L0.38, L0.39, L0.40, L0.41, L0.42, L0.43, L0.44, L0.45, L1.47, L0.48, L0.49, L0.50, L0.51, L0.52, L1.55, L0.57, L1.58, L0.60, L0.61, L0.62, L0.63, L0.64, L0.65, L0.66, L0.67, L0.68, L0.69, L0.70, L0.71, L0.72, L0.76, L1.77, L0.79, L0.80, L0.81, L0.82, L0.83" + - " Creating 852 files" + - "**** Simulation run 70, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686842589641148927]). 20 Input Files, 144mb total:" + - "L0 " + - "L0.89[1686841379000000000,1686842249810810810] 1686929421.02s 10mb|-------------------L0.89-------------------| " + - "L0.90[1686842249810810811,1686843120621621620] 1686929421.02s 10mb |------------------L0.90-------------------| " + - "L0.103[1686841379000000000,1686842249810810810] 1686929712.33s 5mb|------------------L0.103-------------------| " + - "L0.104[1686842249810810811,1686843120621621620] 1686929712.33s 5mb |------------------L0.104------------------| " + - "L0.117[1686841379000000000,1686842249810810810] 1686929965.33s 5mb|------------------L0.117-------------------| " + - "L0.118[1686842249810810811,1686843120621621620] 1686929965.33s 5mb |------------------L0.118------------------| " + - "L0.133[1686841379000000000,1686842249810810810] 1686930563.07s 11mb|------------------L0.133-------------------| " + - "L0.134[1686842249810810811,1686843120621621620] 1686930563.07s 11mb |------------------L0.134------------------| " + - "L0.147[1686841379000000000,1686842249810810810] 1686930780.95s 4mb|------------------L0.147-------------------| " + - "L0.148[1686842249810810811,1686843120621621620] 1686930780.95s 4mb |------------------L0.148------------------| " + - "L0.161[1686841379000000000,1686842249810810810] 1686931336.08s 11mb|------------------L0.161-------------------| " + - "L0.162[1686842249810810811,1686843120621621620] 1686931336.08s 11mb |------------------L0.162------------------| " + - "L0.175[1686841379000000000,1686842249810810810] 1686931600.58s 5mb|------------------L0.175-------------------| " + - "L0.176[1686842249810810811,1686843120621621620] 1686931600.58s 5mb |------------------L0.176------------------| " + - "L0.189[1686841379000000000,1686842249810810810] 1686931893.7s 5mb|------------------L0.189-------------------| " + - "L0.190[1686842249810810811,1686843120621621620] 1686931893.7s 5mb |------------------L0.190------------------| " + - "L0.206[1686841379000000000,1686842249810810810] 1686932458.05s 10mb|------------------L0.206-------------------| " + - "L0.207[1686842249810810811,1686843120621621620] 1686932458.05s 10mb |------------------L0.207------------------| " + - "L0.216[1686841379000000000,1686842249810810810] 1686932677.39s 4mb|------------------L0.216-------------------| " + - "L0.217[1686842249810810811,1686843120621621620] 1686932677.39s 4mb |------------------L0.217------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 144mb total:" + - "L0 " + - "L0.?[1686841379000000000,1686842589641148927] 1686932677.39s 100mb|----------------------------L0.?----------------------------| " + - "L0.?[1686842589641148928,1686843120621621620] 1686932677.39s 44mb |----------L0.?-----------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.89, L0.90, L0.103, L0.104, L0.117, L0.118, L0.133, L0.134, L0.147, L0.148, L0.161, L0.162, L0.175, L0.176, L0.189, L0.190, L0.206, L0.207, L0.216, L0.217" + - " Creating 2 files" + - "**** Simulation run 71, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686842593136179151]). 20 Input Files, 143mb total:" + - "L0 " + - "L0.231[1686841379000000000,1686842249810810810] 1686933271.57s 11mb|------------------L0.231-------------------| " + - "L0.232[1686842249810810811,1686843120621621620] 1686933271.57s 11mb |------------------L0.232------------------| " + - "L0.245[1686841379000000000,1686842249810810810] 1686933528.17s 5mb|------------------L0.245-------------------| " + - "L0.246[1686842249810810811,1686843120621621620] 1686933528.17s 5mb |------------------L0.246------------------| " + - "L0.259[1686841379000000000,1686842249810810810] 1686933830.06s 5mb|------------------L0.259-------------------| " + - "L0.260[1686842249810810811,1686843120621621620] 1686933830.06s 5mb |------------------L0.260------------------| " + - "L0.275[1686841379000000000,1686842249810810810] 1686934254.96s 8mb|------------------L0.275-------------------| " + - "L0.276[1686842249810810811,1686843120621621620] 1686934254.96s 8mb |------------------L0.276------------------| " + - "L0.288[1686841379000000000,1686842249810810810] 1686934759.75s 10mb|------------------L0.288-------------------| " + - "L0.289[1686842249810810811,1686843120621621620] 1686934759.75s 10mb |------------------L0.289------------------| " + - "L0.303[1686841379000000000,1686842249810810810] 1686934966.48s 5mb|------------------L0.303-------------------| " + - "L0.304[1686842249810810811,1686843120621621620] 1686934966.48s 5mb |------------------L0.304------------------| " + - "L0.317[1686841379000000000,1686842249810810810] 1686935151.54s 5mb|------------------L0.317-------------------| " + - "L0.318[1686842249810810811,1686843120621621620] 1686935151.54s 5mb |------------------L0.318------------------| " + - "L0.334[1686841379000000000,1686842249810810810] 1686935546.05s 10mb|------------------L0.334-------------------| " + - "L0.335[1686842249810810811,1686843120621621620] 1686935546.05s 10mb |------------------L0.335------------------| " + - "L0.348[1686841379000000000,1686842249810810810] 1686935742.51s 5mb|------------------L0.348-------------------| " + - "L0.349[1686842249810810811,1686843120621621620] 1686935742.51s 5mb |------------------L0.349------------------| " + - "L0.362[1686841379000000000,1686842249810810810] 1686935947.46s 5mb|------------------L0.362-------------------| " + - "L0.363[1686842249810810811,1686843120621621620] 1686935947.46s 5mb |------------------L0.363------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 143mb total:" + - "L0 " + - "L0.?[1686841379000000000,1686842593136179151] 1686935947.46s 100mb|----------------------------L0.?----------------------------| " + - "L0.?[1686842593136179152,1686843120621621620] 1686935947.46s 43mb |----------L0.?-----------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.231, L0.232, L0.245, L0.246, L0.259, L0.260, L0.275, L0.276, L0.288, L0.289, L0.303, L0.304, L0.317, L0.318, L0.334, L0.335, L0.348, L0.349, L0.362, L0.363" + - " Creating 2 files" + - "**** Simulation run 72, type=compact(ManySmallFiles). 2 Input Files, 6mb total:" + - "L0, all files 3mb " + - "L0.378[1686841379000000000,1686842249810810810] 1686936871.55s|------------------L0.378-------------------| " + - "L0.379[1686842249810810811,1686843120621621620] 1686936871.55s |------------------L0.379------------------| " + - "**** 1 Output Files (parquet_file_id not yet assigned), 6mb total:" + - "L0, all files 6mb " + - "L0.?[1686841379000000000,1686843120621621620] 1686936871.55s|------------------------------------------L0.?------------------------------------------|" + - "Committing partition 1:" + - " Soft Deleting 2 files: L0.378, L0.379" + - " Creating 1 files" + - "**** Simulation run 73, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686844331262770547]). 20 Input Files, 144mb total:" + - "L0 " + - "L0.91[1686843120621621621,1686843991432432430] 1686929421.02s 10mb|------------------L0.91-------------------| " + - "L0.92[1686843991432432431,1686844862243243240] 1686929421.02s 10mb |------------------L0.92-------------------| " + - "L0.105[1686843120621621621,1686843991432432430] 1686929712.33s 5mb|------------------L0.105------------------| " + - "L0.106[1686843991432432431,1686844862243243240] 1686929712.33s 5mb |------------------L0.106------------------| " + - "L0.119[1686843120621621621,1686843991432432430] 1686929965.33s 5mb|------------------L0.119------------------| " + - "L0.120[1686843991432432431,1686844862243243240] 1686929965.33s 5mb |------------------L0.120------------------| " + - "L0.135[1686843120621621621,1686843991432432430] 1686930563.07s 11mb|------------------L0.135------------------| " + - "L0.136[1686843991432432431,1686844862243243240] 1686930563.07s 11mb |------------------L0.136------------------| " + - "L0.149[1686843120621621621,1686843991432432430] 1686930780.95s 4mb|------------------L0.149------------------| " + - "L0.150[1686843991432432431,1686844862243243240] 1686930780.95s 4mb |------------------L0.150------------------| " + - "L0.163[1686843120621621621,1686843991432432430] 1686931336.08s 11mb|------------------L0.163------------------| " + - "L0.164[1686843991432432431,1686844862243243240] 1686931336.08s 11mb |------------------L0.164------------------| " + - "L0.177[1686843120621621621,1686843991432432430] 1686931600.58s 5mb|------------------L0.177------------------| " + - "L0.178[1686843991432432431,1686844862243243240] 1686931600.58s 5mb |------------------L0.178------------------| " + - "L0.191[1686843120621621621,1686843991432432430] 1686931893.7s 5mb|------------------L0.191------------------| " + - "L0.192[1686843991432432431,1686844862243243240] 1686931893.7s 5mb |------------------L0.192------------------| " + - "L0.208[1686843120621621621,1686843991432432430] 1686932458.05s 10mb|------------------L0.208------------------| " + - "L0.209[1686843991432432431,1686844862243243240] 1686932458.05s 10mb |------------------L0.209------------------| " + - "L0.218[1686843120621621621,1686843991432432430] 1686932677.39s 4mb|------------------L0.218------------------| " + - "L0.219[1686843991432432431,1686844862243243240] 1686932677.39s 4mb |------------------L0.219------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 144mb total:" + - "L0 " + - "L0.?[1686843120621621621,1686844331262770547] 1686932677.39s 100mb|----------------------------L0.?----------------------------| " + - "L0.?[1686844331262770548,1686844862243243240] 1686932677.39s 44mb |----------L0.?-----------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.91, L0.92, L0.105, L0.106, L0.119, L0.120, L0.135, L0.136, L0.149, L0.150, L0.163, L0.164, L0.177, L0.178, L0.191, L0.192, L0.208, L0.209, L0.218, L0.219" + - " Creating 2 files" + - "**** Simulation run 74, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686844334757800771]). 20 Input Files, 143mb total:" + - "L0 " + - "L0.233[1686843120621621621,1686843991432432430] 1686933271.57s 11mb|------------------L0.233------------------| " + - "L0.234[1686843991432432431,1686844862243243240] 1686933271.57s 11mb |------------------L0.234------------------| " + - "L0.247[1686843120621621621,1686843991432432430] 1686933528.17s 5mb|------------------L0.247------------------| " + - "L0.248[1686843991432432431,1686844862243243240] 1686933528.17s 5mb |------------------L0.248------------------| " + - "L0.261[1686843120621621621,1686843991432432430] 1686933830.06s 5mb|------------------L0.261------------------| " + - "L0.262[1686843991432432431,1686844862243243240] 1686933830.06s 5mb |------------------L0.262------------------| " + - "L0.277[1686843120621621621,1686843991432432430] 1686934254.96s 8mb|------------------L0.277------------------| " + - "L0.278[1686843991432432431,1686844862243243240] 1686934254.96s 8mb |------------------L0.278------------------| " + - "L0.290[1686843120621621621,1686843991432432430] 1686934759.75s 10mb|------------------L0.290------------------| " + - "L0.291[1686843991432432431,1686844862243243240] 1686934759.75s 10mb |------------------L0.291------------------| " + - "L0.305[1686843120621621621,1686843991432432430] 1686934966.48s 5mb|------------------L0.305------------------| " + - "L0.306[1686843991432432431,1686844862243243240] 1686934966.48s 5mb |------------------L0.306------------------| " + - "L0.319[1686843120621621621,1686843991432432430] 1686935151.54s 5mb|------------------L0.319------------------| " + - "L0.320[1686843991432432431,1686844862243243240] 1686935151.54s 5mb |------------------L0.320------------------| " + - "L0.336[1686843120621621621,1686843991432432430] 1686935546.05s 10mb|------------------L0.336------------------| " + - "L0.337[1686843991432432431,1686844862243243240] 1686935546.05s 10mb |------------------L0.337------------------| " + - "L0.350[1686843120621621621,1686843991432432430] 1686935742.51s 5mb|------------------L0.350------------------| " + - "L0.351[1686843991432432431,1686844862243243240] 1686935742.51s 5mb |------------------L0.351------------------| " + - "L0.364[1686843120621621621,1686843991432432430] 1686935947.46s 5mb|------------------L0.364------------------| " + - "L0.365[1686843991432432431,1686844862243243240] 1686935947.46s 5mb |------------------L0.365------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 143mb total:" + - "L0 " + - "L0.?[1686843120621621621,1686844334757800771] 1686935947.46s 100mb|----------------------------L0.?----------------------------| " + - "L0.?[1686844334757800772,1686844862243243240] 1686935947.46s 43mb |----------L0.?-----------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.233, L0.234, L0.247, L0.248, L0.261, L0.262, L0.277, L0.278, L0.290, L0.291, L0.305, L0.306, L0.319, L0.320, L0.336, L0.337, L0.350, L0.351, L0.364, L0.365" + - " Creating 2 files" + - "**** Simulation run 75, type=compact(ManySmallFiles). 2 Input Files, 6mb total:" + - "L0, all files 3mb " + - "L0.380[1686843120621621621,1686843991432432430] 1686936871.55s|------------------L0.380------------------| " + - "L0.381[1686843991432432431,1686844862243243240] 1686936871.55s |------------------L0.381------------------| " + - "**** 1 Output Files (parquet_file_id not yet assigned), 6mb total:" + - "L0, all files 6mb " + - "L0.?[1686843120621621621,1686844862243243240] 1686936871.55s|------------------------------------------L0.?------------------------------------------|" + - "Committing partition 1:" + - " Soft Deleting 2 files: L0.380, L0.381" + - " Creating 1 files" + - "**** Simulation run 76, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686846072884392167]). 20 Input Files, 144mb total:" + - "L0 " + - "L0.93[1686844862243243241,1686845733054054050] 1686929421.02s 10mb|------------------L0.93-------------------| " + - "L0.94[1686845733054054051,1686846603864864860] 1686929421.02s 10mb |------------------L0.94-------------------| " + - "L0.107[1686844862243243241,1686845733054054050] 1686929712.33s 5mb|------------------L0.107------------------| " + - "L0.108[1686845733054054051,1686846603864864860] 1686929712.33s 5mb |------------------L0.108------------------| " + - "L0.121[1686844862243243241,1686845733054054050] 1686929965.33s 5mb|------------------L0.121------------------| " + - "L0.122[1686845733054054051,1686846603864864860] 1686929965.33s 5mb |------------------L0.122------------------| " + - "L0.137[1686844862243243241,1686845733054054050] 1686930563.07s 11mb|------------------L0.137------------------| " + - "L0.138[1686845733054054051,1686846603864864860] 1686930563.07s 11mb |------------------L0.138------------------| " + - "L0.151[1686844862243243241,1686845733054054050] 1686930780.95s 4mb|------------------L0.151------------------| " + - "L0.152[1686845733054054051,1686846603864864860] 1686930780.95s 4mb |------------------L0.152------------------| " + - "L0.165[1686844862243243241,1686845733054054050] 1686931336.08s 11mb|------------------L0.165------------------| " + - "L0.166[1686845733054054051,1686846603864864860] 1686931336.08s 11mb |------------------L0.166------------------| " + - "L0.179[1686844862243243241,1686845733054054050] 1686931600.58s 5mb|------------------L0.179------------------| " + - "L0.180[1686845733054054051,1686846603864864860] 1686931600.58s 5mb |------------------L0.180------------------| " + - "L0.193[1686844862243243241,1686845733054054050] 1686931893.7s 5mb|------------------L0.193------------------| " + - "L0.194[1686845733054054051,1686846603864864860] 1686931893.7s 5mb |------------------L0.194------------------| " + - "L0.210[1686844862243243241,1686845733054054050] 1686932458.05s 10mb|------------------L0.210------------------| " + - "L0.211[1686845733054054051,1686846603864864860] 1686932458.05s 10mb |------------------L0.211------------------| " + - "L0.220[1686844862243243241,1686845733054054050] 1686932677.39s 4mb|------------------L0.220------------------| " + - "L0.221[1686845733054054051,1686846603864864860] 1686932677.39s 4mb |------------------L0.221------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 144mb total:" + - "L0 " + - "L0.?[1686844862243243241,1686846072884392167] 1686932677.39s 100mb|----------------------------L0.?----------------------------| " + - "L0.?[1686846072884392168,1686846603864864860] 1686932677.39s 44mb |----------L0.?-----------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.93, L0.94, L0.107, L0.108, L0.121, L0.122, L0.137, L0.138, L0.151, L0.152, L0.165, L0.166, L0.179, L0.180, L0.193, L0.194, L0.210, L0.211, L0.220, L0.221" + - " Creating 2 files" + - "**** Simulation run 77, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686846076379422391]). 20 Input Files, 143mb total:" + - "L0 " + - "L0.235[1686844862243243241,1686845733054054050] 1686933271.57s 11mb|------------------L0.235------------------| " + - "L0.236[1686845733054054051,1686846603864864860] 1686933271.57s 11mb |------------------L0.236------------------| " + - "L0.249[1686844862243243241,1686845733054054050] 1686933528.17s 5mb|------------------L0.249------------------| " + - "L0.250[1686845733054054051,1686846603864864860] 1686933528.17s 5mb |------------------L0.250------------------| " + - "L0.263[1686844862243243241,1686845733054054050] 1686933830.06s 5mb|------------------L0.263------------------| " + - "L0.264[1686845733054054051,1686846603864864860] 1686933830.06s 5mb |------------------L0.264------------------| " + - "L0.279[1686844862243243241,1686845733054054050] 1686934254.96s 8mb|------------------L0.279------------------| " + - "L0.280[1686845733054054051,1686846603864864860] 1686934254.96s 8mb |------------------L0.280------------------| " + - "L0.292[1686844862243243241,1686845733054054050] 1686934759.75s 10mb|------------------L0.292------------------| " + - "L0.293[1686845733054054051,1686846603864864860] 1686934759.75s 10mb |------------------L0.293------------------| " + - "L0.307[1686844862243243241,1686845733054054050] 1686934966.48s 5mb|------------------L0.307------------------| " + - "L0.308[1686845733054054051,1686846603864864860] 1686934966.48s 5mb |------------------L0.308------------------| " + - "L0.321[1686844862243243241,1686845733054054050] 1686935151.54s 5mb|------------------L0.321------------------| " + - "L0.322[1686845733054054051,1686846603864864860] 1686935151.54s 5mb |------------------L0.322------------------| " + - "L0.338[1686844862243243241,1686845733054054050] 1686935546.05s 10mb|------------------L0.338------------------| " + - "L0.339[1686845733054054051,1686846603864864860] 1686935546.05s 10mb |------------------L0.339------------------| " + - "L0.352[1686844862243243241,1686845733054054050] 1686935742.51s 5mb|------------------L0.352------------------| " + - "L0.353[1686845733054054051,1686846603864864860] 1686935742.51s 5mb |------------------L0.353------------------| " + - "L0.366[1686844862243243241,1686845733054054050] 1686935947.46s 5mb|------------------L0.366------------------| " + - "L0.367[1686845733054054051,1686846603864864860] 1686935947.46s 5mb |------------------L0.367------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 143mb total:" + - "L0 " + - "L0.?[1686844862243243241,1686846076379422391] 1686935947.46s 100mb|----------------------------L0.?----------------------------| " + - "L0.?[1686846076379422392,1686846603864864860] 1686935947.46s 43mb |----------L0.?-----------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.235, L0.236, L0.249, L0.250, L0.263, L0.264, L0.279, L0.280, L0.292, L0.293, L0.307, L0.308, L0.321, L0.322, L0.338, L0.339, L0.352, L0.353, L0.366, L0.367" + - " Creating 2 files" + - "**** Simulation run 78, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686847814506013787]). 20 Input Files, 144mb total:" + - "L0 " + - "L0.95[1686846603864864861,1686847474675675670] 1686929421.02s 10mb|------------------L0.95-------------------| " + - "L0.96[1686847474675675671,1686848345486486480] 1686929421.02s 10mb |------------------L0.96-------------------| " + - "L0.109[1686846603864864861,1686847474675675670] 1686929712.33s 5mb|------------------L0.109------------------| " + - "L0.110[1686847474675675671,1686848345486486480] 1686929712.33s 5mb |------------------L0.110------------------| " + - "L0.123[1686846603864864861,1686847474675675670] 1686929965.33s 5mb|------------------L0.123------------------| " + - "L0.124[1686847474675675671,1686848345486486480] 1686929965.33s 5mb |------------------L0.124------------------| " + - "L0.139[1686846603864864861,1686847474675675670] 1686930563.07s 11mb|------------------L0.139------------------| " + - "L0.140[1686847474675675671,1686848345486486480] 1686930563.07s 11mb |------------------L0.140------------------| " + - "L0.153[1686846603864864861,1686847474675675670] 1686930780.95s 4mb|------------------L0.153------------------| " + - "L0.154[1686847474675675671,1686848345486486480] 1686930780.95s 4mb |------------------L0.154------------------| " + - "L0.167[1686846603864864861,1686847474675675670] 1686931336.08s 11mb|------------------L0.167------------------| " + - "L0.168[1686847474675675671,1686848345486486480] 1686931336.08s 11mb |------------------L0.168------------------| " + - "L0.181[1686846603864864861,1686847474675675670] 1686931600.58s 5mb|------------------L0.181------------------| " + - "L0.182[1686847474675675671,1686848345486486480] 1686931600.58s 5mb |------------------L0.182------------------| " + - "L0.195[1686846603864864861,1686847474675675670] 1686931893.7s 5mb|------------------L0.195------------------| " + - "L0.196[1686847474675675671,1686848345486486480] 1686931893.7s 5mb |------------------L0.196------------------| " + - "L0.212[1686846603864864861,1686847474675675670] 1686932458.05s 10mb|------------------L0.212------------------| " + - "L0.213[1686847474675675671,1686848345486486480] 1686932458.05s 10mb |------------------L0.213------------------| " + - "L0.222[1686846603864864861,1686847474675675670] 1686932677.39s 4mb|------------------L0.222------------------| " + - "L0.223[1686847474675675671,1686848345486486480] 1686932677.39s 4mb |------------------L0.223------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 144mb total:" + - "L0 " + - "L0.?[1686846603864864861,1686847814506013787] 1686932677.39s 100mb|----------------------------L0.?----------------------------| " + - "L0.?[1686847814506013788,1686848345486486480] 1686932677.39s 44mb |----------L0.?-----------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.95, L0.96, L0.109, L0.110, L0.123, L0.124, L0.139, L0.140, L0.153, L0.154, L0.167, L0.168, L0.181, L0.182, L0.195, L0.196, L0.212, L0.213, L0.222, L0.223" + - " Creating 2 files" + - "**** Simulation run 79, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686847818001044011]). 20 Input Files, 143mb total:" + - "L0 " + - "L0.237[1686846603864864861,1686847474675675670] 1686933271.57s 11mb|------------------L0.237------------------| " + - "L0.238[1686847474675675671,1686848345486486480] 1686933271.57s 11mb |------------------L0.238------------------| " + - "L0.251[1686846603864864861,1686847474675675670] 1686933528.17s 5mb|------------------L0.251------------------| " + - "L0.252[1686847474675675671,1686848345486486480] 1686933528.17s 5mb |------------------L0.252------------------| " + - "L0.265[1686846603864864861,1686847474675675670] 1686933830.06s 5mb|------------------L0.265------------------| " + - "L0.266[1686847474675675671,1686848345486486480] 1686933830.06s 5mb |------------------L0.266------------------| " + - "L0.281[1686846603864864861,1686847474675675670] 1686934254.96s 8mb|------------------L0.281------------------| " + - "L0.282[1686847474675675671,1686848345486486480] 1686934254.96s 8mb |------------------L0.282------------------| " + - "L0.294[1686846603864864861,1686847474675675670] 1686934759.75s 10mb|------------------L0.294------------------| " + - "L0.295[1686847474675675671,1686848345486486480] 1686934759.75s 10mb |------------------L0.295------------------| " + - "L0.309[1686846603864864861,1686847474675675670] 1686934966.48s 5mb|------------------L0.309------------------| " + - "L0.310[1686847474675675671,1686848345486486480] 1686934966.48s 5mb |------------------L0.310------------------| " + - "L0.323[1686846603864864861,1686847474675675670] 1686935151.54s 5mb|------------------L0.323------------------| " + - "L0.324[1686847474675675671,1686848345486486480] 1686935151.54s 5mb |------------------L0.324------------------| " + - "L0.340[1686846603864864861,1686847474675675670] 1686935546.05s 10mb|------------------L0.340------------------| " + - "L0.341[1686847474675675671,1686848345486486480] 1686935546.05s 10mb |------------------L0.341------------------| " + - "L0.354[1686846603864864861,1686847474675675670] 1686935742.51s 5mb|------------------L0.354------------------| " + - "L0.355[1686847474675675671,1686848345486486480] 1686935742.51s 5mb |------------------L0.355------------------| " + - "L0.368[1686846603864864861,1686847474675675670] 1686935947.46s 5mb|------------------L0.368------------------| " + - "L0.369[1686847474675675671,1686848345486486480] 1686935947.46s 5mb |------------------L0.369------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 143mb total:" + - "L0 " + - "L0.?[1686846603864864861,1686847818001044011] 1686935947.46s 100mb|----------------------------L0.?----------------------------| " + - "L0.?[1686847818001044012,1686848345486486480] 1686935947.46s 43mb |----------L0.?-----------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.237, L0.238, L0.251, L0.252, L0.265, L0.266, L0.281, L0.282, L0.294, L0.295, L0.309, L0.310, L0.323, L0.324, L0.340, L0.341, L0.354, L0.355, L0.368, L0.369" + - " Creating 2 files" + - "**** Simulation run 80, type=compact(ManySmallFiles). 2 Input Files, 6mb total:" + - "L0, all files 3mb " + - "L0.384[1686846603864864861,1686847474675675670] 1686936871.55s|------------------L0.384------------------| " + - "L0.385[1686847474675675671,1686848345486486480] 1686936871.55s |------------------L0.385------------------| " + - "**** 1 Output Files (parquet_file_id not yet assigned), 6mb total:" + - "L0, all files 6mb " + - "L0.?[1686846603864864861,1686848345486486480] 1686936871.55s|------------------------------------------L0.?------------------------------------------|" + - "Committing partition 1:" + - " Soft Deleting 2 files: L0.384, L0.385" + - " Creating 1 files" + - "**** Simulation run 81, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686849600239388909]). 20 Input Files, 139mb total:" + - "L0 " + - "L0.97[1686848345486486481,1686849216297297290] 1686929421.02s 10mb|------------------L0.97-------------------| " + - "L0.98[1686849216297297291,1686850087108108100] 1686929421.02s 10mb |------------------L0.98-------------------| " + - "L0.111[1686848345486486481,1686849216297297290] 1686929712.33s 5mb|------------------L0.111------------------| " + - "L0.112[1686849216297297291,1686850087108108100] 1686929712.33s 5mb |------------------L0.112------------------| " + - "L0.125[1686848345486486481,1686849216297297290] 1686929965.33s 5mb|------------------L0.125------------------| " + - "L0.126[1686849216297297291,1686850087108108100] 1686929965.33s 5mb |------------------L0.126------------------| " + - "L0.141[1686848345486486481,1686849216297297290] 1686930563.07s 11mb|------------------L0.141------------------| " + - "L0.142[1686849216297297291,1686850087108108100] 1686930563.07s 11mb |------------------L0.142------------------| " + - "L0.155[1686848345486486481,1686849216297297290] 1686930780.95s 4mb|------------------L0.155------------------| " + - "L0.156[1686849216297297291,1686850087108108100] 1686930780.95s 4mb |------------------L0.156------------------| " + - "L0.169[1686848345486486481,1686849216297297290] 1686931336.08s 11mb|------------------L0.169------------------| " + - "L0.170[1686849216297297291,1686850087108108100] 1686931336.08s 11mb |------------------L0.170------------------| " + - "L0.183[1686848345486486481,1686849216297297290] 1686931600.58s 5mb|------------------L0.183------------------| " + - "L0.184[1686849216297297291,1686850087108108100] 1686931600.58s 5mb |------------------L0.184------------------| " + - "L0.197[1686848345486486481,1686849216297297290] 1686931893.7s 5mb|------------------L0.197------------------| " + - "L0.198[1686849216297297291,1686850087108108100] 1686931893.7s 5mb |------------------L0.198------------------| " + - "L0.214[1686848345486486481,1686849216297297290] 1686932458.05s 10mb|------------------L0.214------------------| " + - "L0.215[1686849216297297291,1686849719000000000] 1686932458.05s 6mb |--------L0.215---------| " + - "L0.419[1686849779000000000,1686850087108108100] 1686932458.05s 4mb |---L0.419----| " + - "L0.224[1686848345486486481,1686849216297297290] 1686932677.39s 4mb|------------------L0.224------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 139mb total:" + - "L0 " + - "L0.?[1686848345486486481,1686849600239388909] 1686932677.39s 100mb|-----------------------------L0.?-----------------------------| " + - "L0.?[1686849600239388910,1686850087108108100] 1686932677.39s 39mb |---------L0.?----------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.97, L0.98, L0.111, L0.112, L0.125, L0.126, L0.141, L0.142, L0.155, L0.156, L0.169, L0.170, L0.183, L0.184, L0.197, L0.198, L0.214, L0.215, L0.224, L0.419" + - " Creating 2 files" + - "**** Simulation run 82, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686849568759166090]). 20 Input Files, 142mb total:" + - "L0 " + - "L0.225[1686849216297297291,1686850087108108100] 1686932677.39s 4mb |------------------L0.225------------------| " + - "L0.239[1686848345486486481,1686849216297297290] 1686933271.57s 11mb|------------------L0.239------------------| " + - "L0.240[1686849216297297291,1686850087108108100] 1686933271.57s 11mb |------------------L0.240------------------| " + - "L0.253[1686848345486486481,1686849216297297290] 1686933528.17s 5mb|------------------L0.253------------------| " + - "L0.254[1686849216297297291,1686850087108108100] 1686933528.17s 5mb |------------------L0.254------------------| " + - "L0.267[1686848345486486481,1686849216297297290] 1686933830.06s 5mb|------------------L0.267------------------| " + - "L0.268[1686849216297297291,1686850087108108100] 1686933830.06s 5mb |------------------L0.268------------------| " + - "L0.283[1686848345486486481,1686849216297297290] 1686934254.96s 8mb|------------------L0.283------------------| " + - "L0.284[1686849216297297291,1686850087108108100] 1686934254.96s 8mb |------------------L0.284------------------| " + - "L0.296[1686848345486486481,1686849216297297290] 1686934759.75s 10mb|------------------L0.296------------------| " + - "L0.297[1686849216297297291,1686850087108108100] 1686934759.75s 10mb |------------------L0.297------------------| " + - "L0.311[1686848345486486481,1686849216297297290] 1686934966.48s 5mb|------------------L0.311------------------| " + - "L0.312[1686849216297297291,1686850087108108100] 1686934966.48s 5mb |------------------L0.312------------------| " + - "L0.325[1686848345486486481,1686849216297297290] 1686935151.54s 5mb|------------------L0.325------------------| " + - "L0.326[1686849216297297291,1686850087108108100] 1686935151.54s 5mb |------------------L0.326------------------| " + - "L0.342[1686848345486486481,1686849216297297290] 1686935546.05s 10mb|------------------L0.342------------------| " + - "L0.343[1686849216297297291,1686850087108108100] 1686935546.05s 10mb |------------------L0.343------------------| " + - "L0.356[1686848345486486481,1686849216297297290] 1686935742.51s 5mb|------------------L0.356------------------| " + - "L0.357[1686849216297297291,1686850087108108100] 1686935742.51s 5mb |------------------L0.357------------------| " + - "L0.370[1686848345486486481,1686849216297297290] 1686935947.46s 5mb|------------------L0.370------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 142mb total:" + - "L0 " + - "L0.?[1686848345486486481,1686849568759166090] 1686935947.46s 100mb|----------------------------L0.?-----------------------------| " + - "L0.?[1686849568759166091,1686850087108108100] 1686935947.46s 42mb |----------L0.?----------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.225, L0.239, L0.240, L0.253, L0.254, L0.267, L0.268, L0.283, L0.284, L0.296, L0.297, L0.311, L0.312, L0.325, L0.326, L0.342, L0.343, L0.356, L0.357, L0.370" + - " Creating 2 files" + - "**** Simulation run 83, type=compact(ManySmallFiles). 3 Input Files, 11mb total:" + - "L0 " + - "L0.371[1686849216297297291,1686850087108108100] 1686935947.46s 5mb |------------------L0.371------------------| " + - "L0.386[1686848345486486481,1686849216297297290] 1686936871.55s 3mb|------------------L0.386------------------| " + - "L0.387[1686849216297297291,1686850087108108100] 1686936871.55s 3mb |------------------L0.387------------------| " + - "**** 1 Output Files (parquet_file_id not yet assigned), 11mb total:" + - "L0, all files 11mb " + - "L0.?[1686848345486486481,1686850087108108100] 1686936871.55s|------------------------------------------L0.?------------------------------------------|" + - "Committing partition 1:" + - " Soft Deleting 3 files: L0.371, L0.386, L0.387" + - " Creating 1 files" + - "**** Simulation run 84, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686851297766913590]). 20 Input Files, 144mb total:" + - "L0 " + - "L0.99[1686850087108108101,1686850957918918910] 1686929421.02s 10mb|------------------L0.99-------------------| " + - "L0.100[1686850957918918911,1686851828729729720] 1686929421.02s 10mb |------------------L0.100------------------| " + - "L0.113[1686850087108108101,1686850957918918910] 1686929712.33s 5mb|------------------L0.113------------------| " + - "L0.114[1686850957918918911,1686851828729729720] 1686929712.33s 5mb |------------------L0.114------------------| " + - "L0.127[1686850087108108101,1686850957918918910] 1686929965.33s 5mb|------------------L0.127------------------| " + - "L0.128[1686850957918918911,1686851828729729720] 1686929965.33s 5mb |------------------L0.128------------------| " + - "L0.143[1686850087108108101,1686850957918918910] 1686930563.07s 11mb|------------------L0.143------------------| " + - "L0.144[1686850957918918911,1686851828729729720] 1686930563.07s 11mb |------------------L0.144------------------| " + - "L0.157[1686850087108108101,1686850957918918910] 1686930780.95s 4mb|------------------L0.157------------------| " + - "L0.158[1686850957918918911,1686851828729729720] 1686930780.95s 4mb |------------------L0.158------------------| " + - "L0.171[1686850087108108101,1686850957918918910] 1686931336.08s 11mb|------------------L0.171------------------| " + - "L0.172[1686850957918918911,1686851828729729720] 1686931336.08s 11mb |------------------L0.172------------------| " + - "L0.185[1686850087108108101,1686850957918918910] 1686931600.58s 5mb|------------------L0.185------------------| " + - "L0.186[1686850957918918911,1686851828729729720] 1686931600.58s 5mb |------------------L0.186------------------| " + - "L0.199[1686850087108108101,1686850957918918910] 1686931893.7s 5mb|------------------L0.199------------------| " + - "L0.200[1686850957918918911,1686851828729729720] 1686931893.7s 5mb |------------------L0.200------------------| " + - "L0.420[1686850087108108101,1686850957918918910] 1686932458.05s 10mb|------------------L0.420------------------| " + - "L0.421[1686850957918918911,1686851828729729720] 1686932458.05s 10mb |------------------L0.421------------------| " + - "L0.226[1686850087108108101,1686850957918918910] 1686932677.39s 4mb|------------------L0.226------------------| " + - "L0.227[1686850957918918911,1686851828729729720] 1686932677.39s 4mb |------------------L0.227------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 144mb total:" + - "L0 " + - "L0.?[1686850087108108101,1686851297766913590] 1686932677.39s 100mb|----------------------------L0.?----------------------------| " + - "L0.?[1686851297766913591,1686851828729729720] 1686932677.39s 44mb |----------L0.?-----------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.99, L0.100, L0.113, L0.114, L0.127, L0.128, L0.143, L0.144, L0.157, L0.158, L0.171, L0.172, L0.185, L0.186, L0.199, L0.200, L0.226, L0.227, L0.420, L0.421" + - " Creating 2 files" + - "**** Simulation run 85, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686851301244287251]). 20 Input Files, 143mb total:" + - "L0 " + - "L0.241[1686850087108108101,1686850957918918910] 1686933271.57s 11mb|------------------L0.241------------------| " + - "L0.242[1686850957918918911,1686851828729729720] 1686933271.57s 11mb |------------------L0.242------------------| " + - "L0.255[1686850087108108101,1686850957918918910] 1686933528.17s 5mb|------------------L0.255------------------| " + - "L0.256[1686850957918918911,1686851828729729720] 1686933528.17s 5mb |------------------L0.256------------------| " + - "L0.269[1686850087108108101,1686850957918918910] 1686933830.06s 5mb|------------------L0.269------------------| " + - "L0.270[1686850957918918911,1686851828729729720] 1686933830.06s 5mb |------------------L0.270------------------| " + - "L0.285[1686850087108108101,1686850957918918910] 1686934254.96s 8mb|------------------L0.285------------------| " + - "L0.286[1686850957918918911,1686851828729729720] 1686934254.96s 8mb |------------------L0.286------------------| " + - "L0.298[1686850087108108101,1686850957918918910] 1686934759.75s 10mb|------------------L0.298------------------| " + - "L0.299[1686850957918918911,1686851828729729720] 1686934759.75s 10mb |------------------L0.299------------------| " + - "L0.313[1686850087108108101,1686850957918918910] 1686934966.48s 5mb|------------------L0.313------------------| " + - "L0.314[1686850957918918911,1686851828729729720] 1686934966.48s 5mb |------------------L0.314------------------| " + - "L0.327[1686850087108108101,1686850957918918910] 1686935151.54s 5mb|------------------L0.327------------------| " + - "L0.328[1686850957918918911,1686851828729729720] 1686935151.54s 5mb |------------------L0.328------------------| " + - "L0.344[1686850087108108101,1686850957918918910] 1686935546.05s 10mb|------------------L0.344------------------| " + - "L0.345[1686850957918918911,1686851828729729720] 1686935546.05s 10mb |------------------L0.345------------------| " + - "L0.358[1686850087108108101,1686850957918918910] 1686935742.51s 5mb|------------------L0.358------------------| " + - "L0.359[1686850957918918911,1686851828729729720] 1686935742.51s 5mb |------------------L0.359------------------| " + - "L0.372[1686850087108108101,1686850957918918910] 1686935947.46s 5mb|------------------L0.372------------------| " + - "L0.373[1686850957918918911,1686851828729729720] 1686935947.46s 5mb |------------------L0.373------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 143mb total:" + - "L0 " + - "L0.?[1686850087108108101,1686851301244287251] 1686935947.46s 100mb|----------------------------L0.?----------------------------| " + - "L0.?[1686851301244287252,1686851828729729720] 1686935947.46s 43mb |----------L0.?-----------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.241, L0.242, L0.255, L0.256, L0.269, L0.270, L0.285, L0.286, L0.298, L0.299, L0.313, L0.314, L0.327, L0.328, L0.344, L0.345, L0.358, L0.359, L0.372, L0.373" + - " Creating 2 files" + - "**** Simulation run 86, type=compact(ManySmallFiles). 2 Input Files, 6mb total:" + - "L0, all files 3mb " + - "L0.382[1686844862243243241,1686845733054054050] 1686936871.55s|------------------L0.382------------------| " + - "L0.383[1686845733054054051,1686846603864864860] 1686936871.55s |------------------L0.383------------------| " + - "**** 1 Output Files (parquet_file_id not yet assigned), 6mb total:" + - "L0, all files 6mb " + - "L0.?[1686844862243243241,1686846603864864860] 1686936871.55s|------------------------------------------L0.?------------------------------------------|" + - "Committing partition 1:" + - " Soft Deleting 2 files: L0.382, L0.383" + - " Creating 1 files" + - "**** Simulation run 87, type=compact(ManySmallFiles). 2 Input Files, 6mb total:" + - "L0, all files 3mb " + - "L0.388[1686850087108108101,1686850957918918910] 1686936871.55s|------------------L0.388------------------| " + - "L0.389[1686850957918918911,1686851828729729720] 1686936871.55s |------------------L0.389------------------| " + - "**** 1 Output Files (parquet_file_id not yet assigned), 6mb total:" + - "L0, all files 6mb " + - "L0.?[1686850087108108101,1686851828729729720] 1686936871.55s|------------------------------------------L0.?------------------------------------------|" + - "Committing partition 1:" + - " Soft Deleting 2 files: L0.388, L0.389" + - " Creating 1 files" + - "**** Simulation run 88, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686853222027027016]). 20 Input Files, 102mb total:" + - "L0 " + - "L0.101[1686851828729729721,1686852699540540530] 1686929421.02s 10mb|------------------L0.101------------------| " + - "L0.102[1686852699540540531,1686853319000000000] 1686929421.02s 7mb |------------L0.102------------| " + - "L0.563[1686853379000000000,1686853570351351340] 1686929421.02s 1mb |L0.563-| " + - "L0.115[1686851828729729721,1686852699540540530] 1686929712.33s 5mb|------------------L0.115------------------| " + - "L0.116[1686852699540540531,1686852839000000000] 1686929712.33s 898kb |L0.116| " + - "L0.451[1686852899000000000,1686853570351351340] 1686929712.33s 8mb |-------------L0.451-------------| " + - "L0.129[1686851828729729721,1686852699540540530] 1686929965.33s 5mb|------------------L0.129------------------| " + - "L0.130[1686852699540540531,1686853570351351340] 1686929965.33s 5mb |------------------L0.130------------------| " + - "L0.145[1686851828729729721,1686852699540540530] 1686930563.07s 11mb|------------------L0.145------------------| " + - "L0.146[1686852699540540531,1686853019000000000] 1686930563.07s 4mb |----L0.146----| " + - "L0.521[1686853079000000000,1686853570351351340] 1686930563.07s 3mb |--------L0.521---------| " + - "L0.159[1686851828729729721,1686852699540540530] 1686930780.95s 4mb|------------------L0.159------------------| " + - "L0.160[1686852699540540531,1686853379000000000] 1686930780.95s 3mb |-------------L0.160--------------| " + - "L0.593[1686853439000000000,1686853570351351340] 1686930780.95s 1mb |L0.593|" + - "L0.173[1686851828729729721,1686852699540540530] 1686931336.08s 11mb|------------------L0.173------------------| " + - "L0.174[1686852699540540531,1686853079000000000] 1686931336.08s 5mb |-----L0.174------| " + - "L0.549[1686853139000000000,1686853570351351340] 1686931336.08s 3mb |-------L0.549-------| " + - "L0.187[1686851828729729721,1686852699540540530] 1686931600.58s 5mb|------------------L0.187------------------| " + - "L0.188[1686852699540540531,1686852899000000000] 1686931600.58s 1mb |-L0.188-| " + - "L0.479[1686852959000000000,1686853570351351340] 1686931600.58s 7mb |-----------L0.479------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 102mb total:" + - "L0 " + - "L0.?[1686851828729729721,1686853222027027016] 1686931600.58s 82mb|--------------------------------L0.?---------------------------------| " + - "L0.?[1686853222027027017,1686853570351351340] 1686931600.58s 20mb |-----L0.?------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.101, L0.102, L0.115, L0.116, L0.129, L0.130, L0.145, L0.146, L0.159, L0.160, L0.173, L0.174, L0.187, L0.188, L0.451, L0.479, L0.521, L0.549, L0.563, L0.593" + - " Creating 2 files" + - "**** Simulation run 89, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686853236700974398]). 20 Input Files, 124mb total:" + - "L0 " + - "L0.201[1686851828729729721,1686852699540540530] 1686931893.7s 5mb|------------------L0.201------------------| " + - "L0.202[1686852699540540531,1686853570351351340] 1686931893.7s 5mb |------------------L0.202------------------| " + - "L0.422[1686851828729729721,1686852699540540530] 1686932458.05s 10mb|------------------L0.422------------------| " + - "L0.423[1686852699540540531,1686853570351351340] 1686932458.05s 10mb |------------------L0.423------------------| " + - "L0.228[1686851828729729721,1686852699540540530] 1686932677.39s 4mb|------------------L0.228------------------| " + - "L0.229[1686852699540540531,1686853570351351340] 1686932677.39s 4mb |------------------L0.229------------------| " + - "L0.243[1686851828729729721,1686852699540540530] 1686933271.57s 11mb|------------------L0.243------------------| " + - "L0.244[1686852699540540531,1686853019000000000] 1686933271.57s 4mb |----L0.244----| " + - "L0.535[1686853079000000000,1686853570351351340] 1686933271.57s 3mb |--------L0.535---------| " + - "L0.257[1686851828729729721,1686852699540540530] 1686933528.17s 5mb|------------------L0.257------------------| " + - "L0.258[1686852699540540531,1686852959000000000] 1686933528.17s 2mb |--L0.258---| " + - "L0.507[1686853019000000000,1686853570351351340] 1686933528.17s 6mb |----------L0.507----------| " + - "L0.271[1686851828729729721,1686852699540540530] 1686933830.06s 5mb|------------------L0.271------------------| " + - "L0.272[1686852699540540531,1686853570351351340] 1686933830.06s 5mb |------------------L0.272------------------| " + - "L0.287[1686851828729729721,1686852119000000000] 1686934254.96s 3mb|---L0.287----| " + - "L0.438[1686852179000000000,1686852699540540530] 1686934254.96s 5mb |---------L0.438---------| " + - "L0.439[1686852699540540531,1686853570351351340] 1686934254.96s 8mb |------------------L0.439------------------| " + - "L0.300[1686851828729729721,1686852699540540530] 1686934759.75s 10mb|------------------L0.300------------------| " + - "L0.301[1686852699540540531,1686853570351351340] 1686934759.75s 10mb |------------------L0.301------------------| " + - "L0.315[1686851828729729721,1686852699540540530] 1686934966.48s 5mb|------------------L0.315------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 124mb total:" + - "L0 " + - "L0.?[1686851828729729721,1686853236700974398] 1686934966.48s 100mb|---------------------------------L0.?---------------------------------| " + - "L0.?[1686853236700974399,1686853570351351340] 1686934966.48s 24mb |-----L0.?------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.201, L0.202, L0.228, L0.229, L0.243, L0.244, L0.257, L0.258, L0.271, L0.272, L0.287, L0.300, L0.301, L0.315, L0.422, L0.423, L0.438, L0.439, L0.507, L0.535" + - " Creating 2 files" + - "**** Simulation run 90, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686853222027027016]). 14 Input Files, 68mb total:" + - "L0 " + - "L0.316[1686852699540540531,1686852899000000000] 1686934966.48s 1mb |-L0.316-| " + - "L0.493[1686852959000000000,1686853570351351340] 1686934966.48s 7mb |-----------L0.493------------| " + - "L0.329[1686851828729729721,1686852699540540530] 1686935151.54s 5mb|------------------L0.329------------------| " + - "L0.330[1686852699540540531,1686853570351351340] 1686935151.54s 5mb |------------------L0.330------------------| " + - "L0.346[1686851828729729721,1686852699540540530] 1686935546.05s 10mb|------------------L0.346------------------| " + - "L0.347[1686852699540540531,1686853319000000000] 1686935546.05s 7mb |------------L0.347------------| " + - "L0.578[1686853379000000000,1686853570351351340] 1686935546.05s 1mb |L0.578-| " + - "L0.360[1686851828729729721,1686852699540540530] 1686935742.51s 5mb|------------------L0.360------------------| " + - "L0.361[1686852699540540531,1686852839000000000] 1686935742.51s 899kb |L0.361| " + - "L0.465[1686852899000000000,1686853570351351340] 1686935742.51s 8mb |-------------L0.465-------------| " + - "L0.374[1686851828729729721,1686852699540540530] 1686935947.46s 5mb|------------------L0.374------------------| " + - "L0.375[1686852699540540531,1686853570351351340] 1686935947.46s 5mb |------------------L0.375------------------| " + - "L0.390[1686851828729729721,1686852699540540530] 1686936871.55s 3mb|------------------L0.390------------------| " + - "L0.391[1686852699540540531,1686853570351351340] 1686936871.55s 3mb |------------------L0.391------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 68mb total:" + - "L0 " + - "L0.?[1686851828729729721,1686853222027027016] 1686936871.55s 55mb|--------------------------------L0.?---------------------------------| " + - "L0.?[1686853222027027017,1686853570351351340] 1686936871.55s 14mb |-----L0.?------| " + - "Committing partition 1:" + - " Soft Deleting 14 files: L0.316, L0.329, L0.330, L0.346, L0.347, L0.360, L0.361, L0.374, L0.375, L0.390, L0.391, L0.465, L0.493, L0.578" + - " Creating 2 files" + - "**** Simulation run 91, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686854830189955965]). 20 Input Files, 138mb total:" + - "L0 " + - "L0.564[1686853570351351341,1686854441162162150] 1686929421.02s 6mb|------------------L0.564------------------| " + - "L0.565[1686854441162162151,1686855311972972960] 1686929421.02s 6mb |------------------L0.565------------------| " + - "L0.452[1686853570351351341,1686854441162162150] 1686929712.33s 10mb|------------------L0.452------------------| " + - "L0.453[1686854441162162151,1686855311972972960] 1686929712.33s 10mb |------------------L0.453------------------| " + - "L0.131[1686853570351351341,1686854441162162150] 1686929965.33s 5mb|------------------L0.131------------------| " + - "L0.132[1686854441162162151,1686855059000000000] 1686929965.33s 4mb |-----------L0.132------------| " + - "L0.661[1686855119000000000,1686855311972972960] 1686929965.33s 1mb |L0.661-| " + - "L0.522[1686853570351351341,1686854441162162150] 1686930563.07s 6mb|------------------L0.522------------------| " + - "L0.523[1686854441162162151,1686855311972972960] 1686930563.07s 6mb |------------------L0.523------------------| " + - "L0.594[1686853570351351341,1686854441162162150] 1686930780.95s 9mb|------------------L0.594------------------| " + - "L0.595[1686854441162162151,1686855311972972960] 1686930780.95s 9mb |------------------L0.595------------------| " + - "L0.550[1686853570351351341,1686854441162162150] 1686931336.08s 6mb|------------------L0.550------------------| " + - "L0.551[1686854441162162151,1686855311972972960] 1686931336.08s 6mb |------------------L0.551------------------| " + - "L0.480[1686853570351351341,1686854441162162150] 1686931600.58s 10mb|------------------L0.480------------------| " + - "L0.481[1686854441162162151,1686855311972972960] 1686931600.58s 10mb |------------------L0.481------------------| " + - "L0.203[1686853570351351341,1686854441162162150] 1686931893.7s 5mb|------------------L0.203------------------| " + - "L0.204[1686854441162162151,1686855311972972960] 1686931893.7s 5mb |------------------L0.204------------------| " + - "L0.424[1686853570351351341,1686854441162162150] 1686932458.05s 10mb|------------------L0.424------------------| " + - "L0.425[1686854441162162151,1686855311972972960] 1686932458.05s 10mb |------------------L0.425------------------| " + - "L0.230[1686853570351351341,1686854219000000000] 1686932677.39s 3mb|------------L0.230-------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 138mb total:" + - "L0 " + - "L0.?[1686853570351351341,1686854830189955965] 1686932677.39s 100mb|-----------------------------L0.?------------------------------| " + - "L0.?[1686854830189955966,1686855311972972960] 1686932677.39s 38mb |---------L0.?---------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.131, L0.132, L0.203, L0.204, L0.230, L0.424, L0.425, L0.452, L0.453, L0.480, L0.481, L0.522, L0.523, L0.550, L0.551, L0.564, L0.565, L0.594, L0.595, L0.661" + - " Creating 2 files" + - "**** Simulation run 92, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686854963648648636]). 20 Input Files, 118mb total:" + - "L0 " + - "L0.623[1686854279000000000,1686854441162162150] 1686932677.39s 1006kb |L0.623| " + - "L0.624[1686854441162162151,1686855311972972960] 1686932677.39s 5mb |------------------L0.624------------------| " + - "L0.536[1686853570351351341,1686854441162162150] 1686933271.57s 6mb|------------------L0.536------------------| " + - "L0.537[1686854441162162151,1686855311972972960] 1686933271.57s 6mb |------------------L0.537------------------| " + - "L0.508[1686853570351351341,1686854441162162150] 1686933528.17s 10mb|------------------L0.508------------------| " + - "L0.509[1686854441162162151,1686855311972972960] 1686933528.17s 10mb |------------------L0.509------------------| " + - "L0.273[1686853570351351341,1686854441162162150] 1686933830.06s 5mb|------------------L0.273------------------| " + - "L0.274[1686854441162162151,1686855119000000000] 1686933830.06s 4mb |-------------L0.274--------------| " + - "L0.678[1686855179000000000,1686855311972972960] 1686933830.06s 920kb |L0.678|" + - "L0.440[1686853570351351341,1686854441162162150] 1686934254.96s 8mb|------------------L0.440------------------| " + - "L0.441[1686854441162162151,1686855311972972960] 1686934254.96s 8mb |------------------L0.441------------------| " + - "L0.302[1686853570351351341,1686853679000000000] 1686934759.75s 1mb|L0.302| " + - "L0.608[1686853739000000000,1686854441162162150] 1686934759.75s 4mb |--------------L0.608--------------| " + - "L0.609[1686854441162162151,1686855311972972960] 1686934759.75s 5mb |------------------L0.609------------------| " + - "L0.494[1686853570351351341,1686854441162162150] 1686934966.48s 10mb|------------------L0.494------------------| " + - "L0.495[1686854441162162151,1686855311972972960] 1686934966.48s 10mb |------------------L0.495------------------| " + - "L0.331[1686853570351351341,1686854441162162150] 1686935151.54s 5mb|------------------L0.331------------------| " + - "L0.332[1686854441162162151,1686855311972972960] 1686935151.54s 5mb |------------------L0.332------------------| " + - "L0.579[1686853570351351341,1686854441162162150] 1686935546.05s 6mb|------------------L0.579------------------| " + - "L0.580[1686854441162162151,1686855311972972960] 1686935546.05s 6mb |------------------L0.580------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 118mb total:" + - "L0 " + - "L0.?[1686853570351351341,1686854963648648636] 1686935546.05s 94mb|--------------------------------L0.?---------------------------------| " + - "L0.?[1686854963648648637,1686855311972972960] 1686935546.05s 24mb |-----L0.?------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.273, L0.274, L0.302, L0.331, L0.332, L0.440, L0.441, L0.494, L0.495, L0.508, L0.509, L0.536, L0.537, L0.579, L0.580, L0.608, L0.609, L0.623, L0.624, L0.678" + - " Creating 2 files" + - "**** Simulation run 93, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686854963648648636]). 7 Input Files, 37mb total:" + - "L0 " + - "L0.466[1686853570351351341,1686854441162162150] 1686935742.51s 10mb|------------------L0.466------------------| " + - "L0.467[1686854441162162151,1686855311972972960] 1686935742.51s 10mb |------------------L0.467------------------| " + - "L0.376[1686853570351351341,1686854441162162150] 1686935947.46s 5mb|------------------L0.376------------------| " + - "L0.377[1686854441162162151,1686854759000000000] 1686935947.46s 2mb |----L0.377----| " + - "L0.639[1686854819000000000,1686855311972972960] 1686935947.46s 3mb |--------L0.639---------| " + - "L0.392[1686853570351351341,1686854441162162150] 1686936871.55s 3mb|------------------L0.392------------------| " + - "L0.393[1686854441162162151,1686855311972972960] 1686936871.55s 3mb |------------------L0.393------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 37mb total:" + - "L0 " + - "L0.?[1686853570351351341,1686854963648648636] 1686936871.55s 29mb|--------------------------------L0.?---------------------------------| " + - "L0.?[1686854963648648637,1686855311972972960] 1686936871.55s 7mb |-----L0.?------| " + - "Committing partition 1:" + - " Soft Deleting 7 files: L0.376, L0.377, L0.392, L0.393, L0.466, L0.467, L0.639" + - " Creating 2 files" + - "**** Simulation run 94, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686856536496842959]). 20 Input Files, 142mb total:" + - "L0 " + - "L0.566[1686855311972972961,1686856182783783770] 1686929421.02s 6mb|------------------L0.566------------------| " + - "L0.567[1686856182783783771,1686857053594594580] 1686929421.02s 6mb |------------------L0.567------------------| " + - "L0.454[1686855311972972961,1686856182783783770] 1686929712.33s 10mb|------------------L0.454------------------| " + - "L0.455[1686856182783783771,1686857053594594580] 1686929712.33s 10mb |------------------L0.455------------------| " + - "L0.662[1686855311972972961,1686856182783783770] 1686929965.33s 6mb|------------------L0.662------------------| " + - "L0.663[1686856182783783771,1686857053594594580] 1686929965.33s 6mb |------------------L0.663------------------| " + - "L0.524[1686855311972972961,1686856182783783770] 1686930563.07s 6mb|------------------L0.524------------------| " + - "L0.525[1686856182783783771,1686857053594594580] 1686930563.07s 6mb |------------------L0.525------------------| " + - "L0.596[1686855311972972961,1686856182783783770] 1686930780.95s 9mb|------------------L0.596------------------| " + - "L0.597[1686856182783783771,1686857053594594580] 1686930780.95s 9mb |------------------L0.597------------------| " + - "L0.552[1686855311972972961,1686856182783783770] 1686931336.08s 6mb|------------------L0.552------------------| " + - "L0.553[1686856182783783771,1686857053594594580] 1686931336.08s 6mb |------------------L0.553------------------| " + - "L0.482[1686855311972972961,1686856182783783770] 1686931600.58s 10mb|------------------L0.482------------------| " + - "L0.483[1686856182783783771,1686857053594594580] 1686931600.58s 10mb |------------------L0.483------------------| " + - "L0.205[1686855311972972961,1686855659000000000] 1686931893.7s 2mb|----L0.205-----| " + - "L0.712[1686855719000000000,1686856182783783770] 1686931893.7s 3mb |-------L0.712--------| " + - "L0.713[1686856182783783771,1686857053594594580] 1686931893.7s 6mb |------------------L0.713------------------| " + - "L0.426[1686855311972972961,1686856182783783770] 1686932458.05s 10mb|------------------L0.426------------------| " + - "L0.427[1686856182783783771,1686857053594594580] 1686932458.05s 10mb |------------------L0.427------------------| " + - "L0.625[1686855311972972961,1686856182783783770] 1686932677.39s 5mb|------------------L0.625------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 142mb total:" + - "L0 " + - "L0.?[1686855311972972961,1686856536496842959] 1686932677.39s 100mb|----------------------------L0.?-----------------------------| " + - "L0.?[1686856536496842960,1686857053594594580] 1686932677.39s 42mb |----------L0.?----------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.205, L0.426, L0.427, L0.454, L0.455, L0.482, L0.483, L0.524, L0.525, L0.552, L0.553, L0.566, L0.567, L0.596, L0.597, L0.625, L0.662, L0.663, L0.712, L0.713" + - " Creating 2 files" + - "**** Simulation run 95, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686856564304278603]). 20 Input Files, 139mb total:" + - "L0 " + - "L0.626[1686856182783783771,1686857053594594580] 1686932677.39s 5mb |------------------L0.626------------------| " + - "L0.538[1686855311972972961,1686856182783783770] 1686933271.57s 6mb|------------------L0.538------------------| " + - "L0.539[1686856182783783771,1686857053594594580] 1686933271.57s 6mb |------------------L0.539------------------| " + - "L0.510[1686855311972972961,1686856182783783770] 1686933528.17s 10mb|------------------L0.510------------------| " + - "L0.511[1686856182783783771,1686857053594594580] 1686933528.17s 10mb |------------------L0.511------------------| " + - "L0.679[1686855311972972961,1686856182783783770] 1686933830.06s 6mb|------------------L0.679------------------| " + - "L0.680[1686856182783783771,1686857053594594580] 1686933830.06s 6mb |------------------L0.680------------------| " + - "L0.442[1686855311972972961,1686856182783783770] 1686934254.96s 8mb|------------------L0.442------------------| " + - "L0.443[1686856182783783771,1686857053594594580] 1686934254.96s 8mb |------------------L0.443------------------| " + - "L0.610[1686855311972972961,1686856182783783770] 1686934759.75s 5mb|------------------L0.610------------------| " + - "L0.611[1686856182783783771,1686857053594594580] 1686934759.75s 5mb |------------------L0.611------------------| " + - "L0.496[1686855311972972961,1686856182783783770] 1686934966.48s 10mb|------------------L0.496------------------| " + - "L0.497[1686856182783783771,1686857053594594580] 1686934966.48s 10mb |------------------L0.497------------------| " + - "L0.333[1686855311972972961,1686855419000000000] 1686935151.54s 649kb|L0.333| " + - "L0.695[1686855479000000000,1686856182783783770] 1686935151.54s 5mb |--------------L0.695--------------| " + - "L0.696[1686856182783783771,1686857053594594580] 1686935151.54s 6mb |------------------L0.696------------------| " + - "L0.581[1686855311972972961,1686856182783783770] 1686935546.05s 6mb|------------------L0.581------------------| " + - "L0.582[1686856182783783771,1686857053594594580] 1686935546.05s 6mb |------------------L0.582------------------| " + - "L0.468[1686855311972972961,1686856182783783770] 1686935742.51s 10mb|------------------L0.468------------------| " + - "L0.469[1686856182783783771,1686857053594594580] 1686935742.51s 10mb |------------------L0.469------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 139mb total:" + - "L0 " + - "L0.?[1686855311972972961,1686856564304278603] 1686935742.51s 100mb|-----------------------------L0.?-----------------------------| " + - "L0.?[1686856564304278604,1686857053594594580] 1686935742.51s 39mb |---------L0.?----------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.333, L0.442, L0.443, L0.468, L0.469, L0.496, L0.497, L0.510, L0.511, L0.538, L0.539, L0.581, L0.582, L0.610, L0.611, L0.626, L0.679, L0.680, L0.695, L0.696" + - " Creating 2 files" + - "**** Simulation run 96, type=compact(ManySmallFiles). 4 Input Files, 17mb total:" + - "L0 " + - "L0.640[1686855311972972961,1686856182783783770] 1686935947.46s 6mb|------------------L0.640------------------| " + - "L0.641[1686856182783783771,1686857053594594580] 1686935947.46s 6mb |------------------L0.641------------------| " + - "L0.394[1686855311972972961,1686856182783783770] 1686936871.55s 3mb|------------------L0.394------------------| " + - "L0.395[1686856182783783771,1686857053594594580] 1686936871.55s 3mb |------------------L0.395------------------| " + - "**** 1 Output Files (parquet_file_id not yet assigned), 17mb total:" + - "L0, all files 17mb " + - "L0.?[1686855311972972961,1686857053594594580] 1686936871.55s|------------------------------------------L0.?------------------------------------------|" + - "Committing partition 1:" + - " Soft Deleting 4 files: L0.394, L0.395, L0.640, L0.641" + - " Creating 1 files" + - "**** Simulation run 97, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686858278525917085]). 20 Input Files, 142mb total:" + - "L0 " + - "L0.568[1686857053594594581,1686857924405405390] 1686929421.02s 6mb|------------------L0.568------------------| " + - "L0.569[1686857924405405391,1686858795216216200] 1686929421.02s 6mb |------------------L0.569------------------| " + - "L0.456[1686857053594594581,1686857924405405390] 1686929712.33s 10mb|------------------L0.456------------------| " + - "L0.457[1686857924405405391,1686858795216216200] 1686929712.33s 10mb |------------------L0.457------------------| " + - "L0.664[1686857053594594581,1686857924405405390] 1686929965.33s 6mb|------------------L0.664------------------| " + - "L0.665[1686857924405405391,1686858795216216200] 1686929965.33s 6mb |------------------L0.665------------------| " + - "L0.526[1686857053594594581,1686857924405405390] 1686930563.07s 6mb|------------------L0.526------------------| " + - "L0.527[1686857924405405391,1686858795216216200] 1686930563.07s 6mb |------------------L0.527------------------| " + - "L0.598[1686857053594594581,1686857924405405390] 1686930780.95s 9mb|------------------L0.598------------------| " + - "L0.599[1686857924405405391,1686858795216216200] 1686930780.95s 9mb |------------------L0.599------------------| " + - "L0.554[1686857053594594581,1686857924405405390] 1686931336.08s 6mb|------------------L0.554------------------| " + - "L0.555[1686857924405405391,1686858795216216200] 1686931336.08s 6mb |------------------L0.555------------------| " + - "L0.484[1686857053594594581,1686857924405405390] 1686931600.58s 10mb|------------------L0.484------------------| " + - "L0.485[1686857924405405391,1686858795216216200] 1686931600.58s 10mb |------------------L0.485------------------| " + - "L0.714[1686857053594594581,1686857924405405390] 1686931893.7s 6mb|------------------L0.714------------------| " + - "L0.715[1686857924405405391,1686858795216216200] 1686931893.7s 6mb |------------------L0.715------------------| " + - "L0.428[1686857053594594581,1686857924405405390] 1686932458.05s 10mb|------------------L0.428------------------| " + - "L0.429[1686857924405405391,1686858119000000000] 1686932458.05s 2mb |-L0.429-| " + - "L0.729[1686858179000000000,1686858795216216200] 1686932458.05s 7mb |-----------L0.729------------| " + - "L0.627[1686857053594594581,1686857924405405390] 1686932677.39s 5mb|------------------L0.627------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 142mb total:" + - "L0 " + - "L0.?[1686857053594594581,1686858278525917085] 1686932677.39s 100mb|----------------------------L0.?-----------------------------| " + - "L0.?[1686858278525917086,1686858795216216200] 1686932677.39s 42mb |----------L0.?----------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.428, L0.429, L0.456, L0.457, L0.484, L0.485, L0.526, L0.527, L0.554, L0.555, L0.568, L0.569, L0.598, L0.599, L0.627, L0.664, L0.665, L0.714, L0.715, L0.729" + - " Creating 2 files" + - "**** Simulation run 98, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686858251288003855]). 20 Input Files, 145mb total:" + - "L0 " + - "L0.628[1686857924405405391,1686858795216216200] 1686932677.39s 5mb |------------------L0.628------------------| " + - "L0.540[1686857053594594581,1686857924405405390] 1686933271.57s 6mb|------------------L0.540------------------| " + - "L0.541[1686857924405405391,1686858795216216200] 1686933271.57s 6mb |------------------L0.541------------------| " + - "L0.512[1686857053594594581,1686857924405405390] 1686933528.17s 10mb|------------------L0.512------------------| " + - "L0.513[1686857924405405391,1686858795216216200] 1686933528.17s 10mb |------------------L0.513------------------| " + - "L0.681[1686857053594594581,1686857924405405390] 1686933830.06s 6mb|------------------L0.681------------------| " + - "L0.682[1686857924405405391,1686858795216216200] 1686933830.06s 6mb |------------------L0.682------------------| " + - "L0.444[1686857053594594581,1686857924405405390] 1686934254.96s 8mb|------------------L0.444------------------| " + - "L0.445[1686857924405405391,1686858795216216200] 1686934254.96s 8mb |------------------L0.445------------------| " + - "L0.612[1686857053594594581,1686857924405405390] 1686934759.75s 5mb|------------------L0.612------------------| " + - "L0.613[1686857924405405391,1686858795216216200] 1686934759.75s 5mb |------------------L0.613------------------| " + - "L0.498[1686857053594594581,1686857924405405390] 1686934966.48s 10mb|------------------L0.498------------------| " + - "L0.499[1686857924405405391,1686858795216216200] 1686934966.48s 10mb |------------------L0.499------------------| " + - "L0.697[1686857053594594581,1686857924405405390] 1686935151.54s 6mb|------------------L0.697------------------| " + - "L0.698[1686857924405405391,1686858795216216200] 1686935151.54s 6mb |------------------L0.698------------------| " + - "L0.583[1686857053594594581,1686857924405405390] 1686935546.05s 6mb|------------------L0.583------------------| " + - "L0.584[1686857924405405391,1686858795216216200] 1686935546.05s 6mb |------------------L0.584------------------| " + - "L0.470[1686857053594594581,1686857924405405390] 1686935742.51s 10mb|------------------L0.470------------------| " + - "L0.471[1686857924405405391,1686858795216216200] 1686935742.51s 10mb |------------------L0.471------------------| " + - "L0.642[1686857053594594581,1686857924405405390] 1686935947.46s 6mb|------------------L0.642------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 145mb total:" + - "L0 " + - "L0.?[1686857053594594581,1686858251288003855] 1686935947.46s 100mb|---------------------------L0.?----------------------------| " + - "L0.?[1686858251288003856,1686858795216216200] 1686935947.46s 45mb |-----------L0.?-----------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.444, L0.445, L0.470, L0.471, L0.498, L0.499, L0.512, L0.513, L0.540, L0.541, L0.583, L0.584, L0.612, L0.613, L0.628, L0.642, L0.681, L0.682, L0.697, L0.698" + - " Creating 2 files" + - "**** Simulation run 99, type=compact(ManySmallFiles). 3 Input Files, 11mb total:" + - "L0 " + - "L0.643[1686857924405405391,1686858795216216200] 1686935947.46s 6mb |------------------L0.643------------------| " + - "L0.396[1686857053594594581,1686857924405405390] 1686936871.55s 3mb|------------------L0.396------------------| " + - "L0.397[1686857924405405391,1686858795216216200] 1686936871.55s 3mb |------------------L0.397------------------| " + - "**** 1 Output Files (parquet_file_id not yet assigned), 11mb total:" + - "L0, all files 11mb " + - "L0.?[1686857053594594581,1686858795216216200] 1686936871.55s|------------------------------------------L0.?------------------------------------------|" + - "Committing partition 1:" + - " Soft Deleting 3 files: L0.396, L0.397, L0.643" + - " Creating 1 files" + - "**** Simulation run 100, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686859969989511638]). 20 Input Files, 148mb total:" + - "L0 " + - "L0.570[1686858795216216201,1686859666027027010] 1686929421.02s 6mb|------------------L0.570------------------| " + - "L0.571[1686859666027027011,1686860536837837820] 1686929421.02s 6mb |------------------L0.571------------------| " + - "L0.458[1686858795216216201,1686859666027027010] 1686929712.33s 10mb|------------------L0.458------------------| " + - "L0.459[1686859666027027011,1686860536837837820] 1686929712.33s 10mb |------------------L0.459------------------| " + - "L0.666[1686858795216216201,1686859666027027010] 1686929965.33s 6mb|------------------L0.666------------------| " + - "L0.667[1686859666027027011,1686860536837837820] 1686929965.33s 6mb |------------------L0.667------------------| " + - "L0.528[1686858795216216201,1686859666027027010] 1686930563.07s 6mb|------------------L0.528------------------| " + - "L0.529[1686859666027027011,1686860536837837820] 1686930563.07s 6mb |------------------L0.529------------------| " + - "L0.600[1686858795216216201,1686859666027027010] 1686930780.95s 9mb|------------------L0.600------------------| " + - "L0.601[1686859666027027011,1686860536837837820] 1686930780.95s 9mb |------------------L0.601------------------| " + - "L0.556[1686858795216216201,1686859666027027010] 1686931336.08s 6mb|------------------L0.556------------------| " + - "L0.557[1686859666027027011,1686860536837837820] 1686931336.08s 6mb |------------------L0.557------------------| " + - "L0.486[1686858795216216201,1686859666027027010] 1686931600.58s 10mb|------------------L0.486------------------| " + - "L0.487[1686859666027027011,1686860536837837820] 1686931600.58s 10mb |------------------L0.487------------------| " + - "L0.716[1686858795216216201,1686859666027027010] 1686931893.7s 6mb|------------------L0.716------------------| " + - "L0.717[1686859666027027011,1686860536837837820] 1686931893.7s 6mb |------------------L0.717------------------| " + - "L0.730[1686858795216216201,1686859666027027010] 1686932458.05s 10mb|------------------L0.730------------------| " + - "L0.731[1686859666027027011,1686860536837837820] 1686932458.05s 10mb |------------------L0.731------------------| " + - "L0.629[1686858795216216201,1686859666027027010] 1686932677.39s 5mb|------------------L0.629------------------| " + - "L0.630[1686859666027027011,1686860536837837820] 1686932677.39s 5mb |------------------L0.630------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 148mb total:" + - "L0 " + - "L0.?[1686858795216216201,1686859969989511638] 1686932677.39s 100mb|---------------------------L0.?---------------------------| " + - "L0.?[1686859969989511639,1686860536837837820] 1686932677.39s 48mb |-----------L0.?------------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.458, L0.459, L0.486, L0.487, L0.528, L0.529, L0.556, L0.557, L0.570, L0.571, L0.600, L0.601, L0.629, L0.630, L0.666, L0.667, L0.716, L0.717, L0.730, L0.731" + - " Creating 2 files" + - "**** Simulation run 101, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686859988431489230]). 20 Input Files, 146mb total:" + - "L0 " + - "L0.542[1686858795216216201,1686859666027027010] 1686933271.57s 6mb|------------------L0.542------------------| " + - "L0.543[1686859666027027011,1686860536837837820] 1686933271.57s 6mb |------------------L0.543------------------| " + - "L0.514[1686858795216216201,1686859666027027010] 1686933528.17s 10mb|------------------L0.514------------------| " + - "L0.515[1686859666027027011,1686860536837837820] 1686933528.17s 10mb |------------------L0.515------------------| " + - "L0.683[1686858795216216201,1686859666027027010] 1686933830.06s 6mb|------------------L0.683------------------| " + - "L0.684[1686859666027027011,1686860536837837820] 1686933830.06s 6mb |------------------L0.684------------------| " + - "L0.446[1686858795216216201,1686859666027027010] 1686934254.96s 8mb|------------------L0.446------------------| " + - "L0.447[1686859666027027011,1686860536837837820] 1686934254.96s 8mb |------------------L0.447------------------| " + - "L0.614[1686858795216216201,1686859666027027010] 1686934759.75s 5mb|------------------L0.614------------------| " + - "L0.615[1686859666027027011,1686860536837837820] 1686934759.75s 5mb |------------------L0.615------------------| " + - "L0.500[1686858795216216201,1686859666027027010] 1686934966.48s 10mb|------------------L0.500------------------| " + - "L0.501[1686859666027027011,1686860536837837820] 1686934966.48s 10mb |------------------L0.501------------------| " + - "L0.699[1686858795216216201,1686859666027027010] 1686935151.54s 6mb|------------------L0.699------------------| " + - "L0.700[1686859666027027011,1686860536837837820] 1686935151.54s 6mb |------------------L0.700------------------| " + - "L0.585[1686858795216216201,1686859666027027010] 1686935546.05s 6mb|------------------L0.585------------------| " + - "L0.586[1686859666027027011,1686860536837837820] 1686935546.05s 6mb |------------------L0.586------------------| " + - "L0.472[1686858795216216201,1686859666027027010] 1686935742.51s 10mb|------------------L0.472------------------| " + - "L0.473[1686859666027027011,1686860536837837820] 1686935742.51s 10mb |------------------L0.473------------------| " + - "L0.644[1686858795216216201,1686859666027027010] 1686935947.46s 6mb|------------------L0.644------------------| " + - "L0.645[1686859666027027011,1686860536837837820] 1686935947.46s 6mb |------------------L0.645------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 146mb total:" + - "L0 " + - "L0.?[1686858795216216201,1686859988431489230] 1686935947.46s 100mb|---------------------------L0.?----------------------------| " + - "L0.?[1686859988431489231,1686860536837837820] 1686935947.46s 46mb |-----------L0.?-----------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.446, L0.447, L0.472, L0.473, L0.500, L0.501, L0.514, L0.515, L0.542, L0.543, L0.585, L0.586, L0.614, L0.615, L0.644, L0.645, L0.683, L0.684, L0.699, L0.700" + - " Creating 2 files" + - "**** Simulation run 102, type=compact(ManySmallFiles). 2 Input Files, 6mb total:" + - "L0, all files 3mb " + - "L0.398[1686858795216216201,1686859666027027010] 1686936871.55s|------------------L0.398------------------| " + - "L0.399[1686859666027027011,1686860536837837820] 1686936871.55s |------------------L0.399------------------| " + - "**** 1 Output Files (parquet_file_id not yet assigned), 6mb total:" + - "L0, all files 6mb " + - "L0.?[1686858795216216201,1686860536837837820] 1686936871.55s|------------------------------------------L0.?------------------------------------------|" + - "Committing partition 1:" + - " Soft Deleting 2 files: L0.398, L0.399" + - " Creating 1 files" + - "**** Simulation run 103, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686861711611133258]). 20 Input Files, 148mb total:" + - "L0 " + - "L0.572[1686860536837837821,1686861407648648630] 1686929421.02s 6mb|------------------L0.572------------------| " + - "L0.573[1686861407648648631,1686862278459459440] 1686929421.02s 6mb |------------------L0.573------------------| " + - "L0.460[1686860536837837821,1686861407648648630] 1686929712.33s 10mb|------------------L0.460------------------| " + - "L0.461[1686861407648648631,1686862278459459440] 1686929712.33s 10mb |------------------L0.461------------------| " + - "L0.668[1686860536837837821,1686861407648648630] 1686929965.33s 6mb|------------------L0.668------------------| " + - "L0.669[1686861407648648631,1686862278459459440] 1686929965.33s 6mb |------------------L0.669------------------| " + - "L0.530[1686860536837837821,1686861407648648630] 1686930563.07s 6mb|------------------L0.530------------------| " + - "L0.531[1686861407648648631,1686862278459459440] 1686930563.07s 6mb |------------------L0.531------------------| " + - "L0.602[1686860536837837821,1686861407648648630] 1686930780.95s 9mb|------------------L0.602------------------| " + - "L0.603[1686861407648648631,1686862278459459440] 1686930780.95s 9mb |------------------L0.603------------------| " + - "L0.558[1686860536837837821,1686861407648648630] 1686931336.08s 6mb|------------------L0.558------------------| " + - "L0.559[1686861407648648631,1686862278459459440] 1686931336.08s 6mb |------------------L0.559------------------| " + - "L0.488[1686860536837837821,1686861407648648630] 1686931600.58s 10mb|------------------L0.488------------------| " + - "L0.489[1686861407648648631,1686862278459459440] 1686931600.58s 10mb |------------------L0.489------------------| " + - "L0.718[1686860536837837821,1686861407648648630] 1686931893.7s 6mb|------------------L0.718------------------| " + - "L0.719[1686861407648648631,1686862278459459440] 1686931893.7s 6mb |------------------L0.719------------------| " + - "L0.732[1686860536837837821,1686861407648648630] 1686932458.05s 10mb|------------------L0.732------------------| " + - "L0.733[1686861407648648631,1686862278459459440] 1686932458.05s 10mb |------------------L0.733------------------| " + - "L0.631[1686860536837837821,1686861407648648630] 1686932677.39s 5mb|------------------L0.631------------------| " + - "L0.632[1686861407648648631,1686862278459459440] 1686932677.39s 5mb |------------------L0.632------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 148mb total:" + - "L0 " + - "L0.?[1686860536837837821,1686861711611133258] 1686932677.39s 100mb|---------------------------L0.?---------------------------| " + - "L0.?[1686861711611133259,1686862278459459440] 1686932677.39s 48mb |-----------L0.?------------| " + - "**** Simulation run 104, type=compact(ManySmallFiles). 2 Input Files, 6mb total:" + - "L0, all files 3mb " + - "L0.400[1686860536837837821,1686861407648648630] 1686936871.55s|------------------L0.400------------------| " + - "L0.401[1686861407648648631,1686862278459459440] 1686936871.55s |------------------L0.401------------------| " + - "**** 1 Output Files (parquet_file_id not yet assigned), 6mb total:" + - "L0, all files 6mb " + - "L0.?[1686860536837837821,1686862278459459440] 1686936871.55s|------------------------------------------L0.?------------------------------------------|" + - "Committing partition 1:" + - " Soft Deleting 2 files: L0.400, L0.401" + - " Creating 1 files" + - "**** Simulation run 105, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686863453232754878]). 20 Input Files, 148mb total:" + - "L0 " + - "L0.574[1686862278459459441,1686863149270270250] 1686929421.02s 6mb|------------------L0.574------------------| " + - "L0.575[1686863149270270251,1686864020081081060] 1686929421.02s 6mb |------------------L0.575------------------| " + - "L0.462[1686862278459459441,1686863149270270250] 1686929712.33s 10mb|------------------L0.462------------------| " + - "L0.463[1686863149270270251,1686864020081081060] 1686929712.33s 10mb |------------------L0.463------------------| " + - "L0.670[1686862278459459441,1686863149270270250] 1686929965.33s 6mb|------------------L0.670------------------| " + - "L0.671[1686863149270270251,1686864020081081060] 1686929965.33s 6mb |------------------L0.671------------------| " + - "L0.532[1686862278459459441,1686863149270270250] 1686930563.07s 6mb|------------------L0.532------------------| " + - "L0.533[1686863149270270251,1686864020081081060] 1686930563.07s 6mb |------------------L0.533------------------| " + - "L0.604[1686862278459459441,1686863149270270250] 1686930780.95s 9mb|------------------L0.604------------------| " + - "L0.605[1686863149270270251,1686864020081081060] 1686930780.95s 9mb |------------------L0.605------------------| " + - "L0.560[1686862278459459441,1686863149270270250] 1686931336.08s 6mb|------------------L0.560------------------| " + - "L0.561[1686863149270270251,1686864020081081060] 1686931336.08s 6mb |------------------L0.561------------------| " + - "L0.490[1686862278459459441,1686863149270270250] 1686931600.58s 10mb|------------------L0.490------------------| " + - "L0.491[1686863149270270251,1686864020081081060] 1686931600.58s 10mb |------------------L0.491------------------| " + - "L0.720[1686862278459459441,1686863149270270250] 1686931893.7s 6mb|------------------L0.720------------------| " + - "L0.721[1686863149270270251,1686864020081081060] 1686931893.7s 6mb |------------------L0.721------------------| " + - "L0.734[1686862278459459441,1686863149270270250] 1686932458.05s 10mb|------------------L0.734------------------| " + - "L0.735[1686863149270270251,1686864020081081060] 1686932458.05s 10mb |------------------L0.735------------------| " + - "L0.633[1686862278459459441,1686863149270270250] 1686932677.39s 5mb|------------------L0.633------------------| " + - "L0.634[1686863149270270251,1686864020081081060] 1686932677.39s 5mb |------------------L0.634------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 148mb total:" + - "L0 " + - "L0.?[1686862278459459441,1686863453232754878] 1686932677.39s 100mb|---------------------------L0.?---------------------------| " + - "L0.?[1686863453232754879,1686864020081081060] 1686932677.39s 48mb |-----------L0.?------------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.462, L0.463, L0.490, L0.491, L0.532, L0.533, L0.560, L0.561, L0.574, L0.575, L0.604, L0.605, L0.633, L0.634, L0.670, L0.671, L0.720, L0.721, L0.734, L0.735" + - " Creating 2 files" + - "**** Simulation run 106, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686863528879205201]). 20 Input Files, 139mb total:" + - "L0 " + - "L0.546[1686862278459459441,1686863149270270250] 1686933271.57s 6mb|------------------L0.546------------------| " + - "L0.547[1686863149270270251,1686864020081081060] 1686933271.57s 6mb |------------------L0.547------------------| " + - "L0.518[1686862278459459441,1686863149270270250] 1686933528.17s 10mb|------------------L0.518------------------| " + - "L0.519[1686863149270270251,1686864020081081060] 1686933528.17s 10mb |------------------L0.519------------------| " + - "L0.687[1686862278459459441,1686863149270270250] 1686933830.06s 6mb|------------------L0.687------------------| " + - "L0.688[1686863149270270251,1686864020081081060] 1686933830.06s 6mb |------------------L0.688------------------| " + - "L0.450[1686862278459459441,1686862859000000000] 1686934254.96s 5mb|-----------L0.450-----------| " + - "L0.745[1686862919000000000,1686863149270270250] 1686934254.96s 2mb |-L0.745--| " + - "L0.746[1686863149270270251,1686864020081081060] 1686934254.96s 8mb |------------------L0.746------------------| " + - "L0.618[1686862278459459441,1686863149270270250] 1686934759.75s 5mb|------------------L0.618------------------| " + - "L0.619[1686863149270270251,1686864020081081060] 1686934759.75s 5mb |------------------L0.619------------------| " + - "L0.504[1686862278459459441,1686863149270270250] 1686934966.48s 10mb|------------------L0.504------------------| " + - "L0.505[1686863149270270251,1686864020081081060] 1686934966.48s 10mb |------------------L0.505------------------| " + - "L0.703[1686862278459459441,1686863149270270250] 1686935151.54s 6mb|------------------L0.703------------------| " + - "L0.704[1686863149270270251,1686864020081081060] 1686935151.54s 6mb |------------------L0.704------------------| " + - "L0.589[1686862278459459441,1686863149270270250] 1686935546.05s 6mb|------------------L0.589------------------| " + - "L0.590[1686863149270270251,1686864020081081060] 1686935546.05s 6mb |------------------L0.590------------------| " + - "L0.476[1686862278459459441,1686863149270270250] 1686935742.51s 10mb|------------------L0.476------------------| " + - "L0.477[1686863149270270251,1686864020081081060] 1686935742.51s 10mb |------------------L0.477------------------| " + - "L0.648[1686862278459459441,1686863149270270250] 1686935947.46s 6mb|------------------L0.648------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 139mb total:" + - "L0 " + - "L0.?[1686862278459459441,1686863528879205201] 1686935947.46s 100mb|-----------------------------L0.?-----------------------------| " + - "L0.?[1686863528879205202,1686864020081081060] 1686935947.46s 39mb |---------L0.?----------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.450, L0.476, L0.477, L0.504, L0.505, L0.518, L0.519, L0.546, L0.547, L0.589, L0.590, L0.618, L0.619, L0.648, L0.687, L0.688, L0.703, L0.704, L0.745, L0.746" + - " Creating 2 files" + - "**** Simulation run 107, type=compact(ManySmallFiles). 3 Input Files, 11mb total:" + - "L0 " + - "L0.649[1686863149270270251,1686864020081081060] 1686935947.46s 6mb |------------------L0.649------------------| " + - "L0.402[1686862278459459441,1686863149270270250] 1686936871.55s 3mb|------------------L0.402------------------| " + - "L0.403[1686863149270270251,1686864020081081060] 1686936871.55s 3mb |------------------L0.403------------------| " + - "**** 1 Output Files (parquet_file_id not yet assigned), 11mb total:" + - "L0, all files 11mb " + - "L0.?[1686862278459459441,1686864020081081060] 1686936871.55s|------------------------------------------L0.?------------------------------------------|" + - "Committing partition 1:" + - " Soft Deleting 3 files: L0.402, L0.403, L0.649" + - " Creating 1 files" + - "**** Simulation run 108, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686865413378378356]). 20 Input Files, 98mb total:" + - "L0 " + - "L0.576[1686864020081081061,1686864890891891870] 1686929421.02s 6mb|------------------L0.576------------------| " + - "L0.577[1686864890891891871,1686865259000000000] 1686929421.02s 2mb |-----L0.577------| " + - "L0.851[1686865319000000000,1686865761702702680] 1686929421.02s 3mb |-------L0.851-------| " + - "L0.464[1686864020081081061,1686864359000000000] 1686929712.33s 4mb|----L0.464-----| " + - "L0.764[1686864419000000000,1686864890891891870] 1686929712.33s 4mb |--------L0.764--------| " + - "L0.765[1686864890891891871,1686865761702702680] 1686929712.33s 7mb |------------------L0.765------------------| " + - "L0.672[1686864020081081061,1686864890891891870] 1686929965.33s 6mb|------------------L0.672------------------| " + - "L0.673[1686864890891891871,1686865761702702680] 1686929965.33s 6mb |------------------L0.673------------------| " + - "L0.534[1686864020081081061,1686864659000000000] 1686930563.07s 4mb|------------L0.534-------------| " + - "L0.819[1686864719000000000,1686864890891891870] 1686930563.07s 1mb |L0.819| " + - "L0.820[1686864890891891871,1686865761702702680] 1686930563.07s 5mb |------------------L0.820------------------| " + - "L0.606[1686864020081081061,1686864890891891870] 1686930780.95s 9mb|------------------L0.606------------------| " + - "L0.607[1686864890891891871,1686865439000000000] 1686930780.95s 6mb |----------L0.607----------| " + - "L0.871[1686865499000000000,1686865761702702680] 1686930780.95s 3mb |--L0.871---| " + - "L0.562[1686864020081081061,1686864839000000000] 1686931336.08s 6mb|-----------------L0.562-----------------| " + - "L0.841[1686864899000000000,1686865761702702680] 1686931336.08s 5mb |------------------L0.841------------------| " + - "L0.492[1686864020081081061,1686864419000000000] 1686931600.58s 5mb|------L0.492------| " + - "L0.786[1686864479000000000,1686864890891891870] 1686931600.58s 4mb |------L0.786-------| " + - "L0.787[1686864890891891871,1686865761702702680] 1686931600.58s 8mb |------------------L0.787------------------| " + - "L0.722[1686864020081081061,1686864890891891870] 1686931893.7s 6mb|------------------L0.722------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 98mb total:" + - "L0 " + - "L0.?[1686864020081081061,1686865413378378356] 1686931893.7s 78mb|--------------------------------L0.?---------------------------------| " + - "L0.?[1686865413378378357,1686865761702702680] 1686931893.7s 20mb |-----L0.?------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.464, L0.492, L0.534, L0.562, L0.576, L0.577, L0.606, L0.607, L0.672, L0.673, L0.722, L0.764, L0.765, L0.786, L0.787, L0.819, L0.820, L0.841, L0.851, L0.871" + - " Creating 2 files" + - "**** Simulation run 109, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686865413378378356]). 20 Input Files, 117mb total:" + - "L0 " + - "L0.723[1686864890891891871,1686865761702702680] 1686931893.7s 6mb |------------------L0.723------------------| " + - "L0.736[1686864020081081061,1686864890891891870] 1686932458.05s 10mb|------------------L0.736------------------| " + - "L0.737[1686864890891891871,1686865761702702680] 1686932458.05s 10mb |------------------L0.737------------------| " + - "L0.635[1686864020081081061,1686864890891891870] 1686932677.39s 5mb|------------------L0.635------------------| " + - "L0.636[1686864890891891871,1686865761702702680] 1686932677.39s 5mb |------------------L0.636------------------| " + - "L0.548[1686864020081081061,1686864659000000000] 1686933271.57s 4mb|------------L0.548-------------| " + - "L0.830[1686864719000000000,1686864890891891870] 1686933271.57s 1mb |L0.830| " + - "L0.831[1686864890891891871,1686865761702702680] 1686933271.57s 5mb |------------------L0.831------------------| " + - "L0.520[1686864020081081061,1686864599000000000] 1686933528.17s 7mb|----------L0.520-----------| " + - "L0.808[1686864659000000000,1686864890891891870] 1686933528.17s 2mb |-L0.808--| " + - "L0.809[1686864890891891871,1686865761702702680] 1686933528.17s 7mb |------------------L0.809------------------| " + - "L0.689[1686864020081081061,1686864890891891870] 1686933830.06s 6mb|------------------L0.689------------------| " + - "L0.690[1686864890891891871,1686865761702702680] 1686933830.06s 6mb |------------------L0.690------------------| " + - "L0.747[1686864020081081061,1686864890891891870] 1686934254.96s 8mb|------------------L0.747------------------| " + - "L0.748[1686864890891891871,1686865761702702680] 1686934254.96s 8mb |------------------L0.748------------------| " + - "L0.620[1686864020081081061,1686864890891891870] 1686934759.75s 5mb|------------------L0.620------------------| " + - "L0.621[1686864890891891871,1686865761702702680] 1686934759.75s 5mb |------------------L0.621------------------| " + - "L0.506[1686864020081081061,1686864419000000000] 1686934966.48s 5mb|------L0.506------| " + - "L0.797[1686864479000000000,1686864890891891870] 1686934966.48s 3mb |------L0.797-------| " + - "L0.798[1686864890891891871,1686865761702702680] 1686934966.48s 7mb |------------------L0.798------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 117mb total:" + - "L0 " + - "L0.?[1686864020081081061,1686865413378378356] 1686934966.48s 94mb|--------------------------------L0.?---------------------------------| " + - "L0.?[1686865413378378357,1686865761702702680] 1686934966.48s 23mb |-----L0.?------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.506, L0.520, L0.548, L0.620, L0.621, L0.635, L0.636, L0.689, L0.690, L0.723, L0.736, L0.737, L0.747, L0.748, L0.797, L0.798, L0.808, L0.809, L0.830, L0.831" + - " Creating 2 files" + - "**** Simulation run 110, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686865413378378356]). 12 Input Files, 55mb total:" + - "L0 " + - "L0.705[1686864020081081061,1686864890891891870] 1686935151.54s 6mb|------------------L0.705------------------| " + - "L0.706[1686864890891891871,1686865761702702680] 1686935151.54s 6mb |------------------L0.706------------------| " + - "L0.591[1686864020081081061,1686864890891891870] 1686935546.05s 6mb|------------------L0.591------------------| " + - "L0.592[1686864890891891871,1686865259000000000] 1686935546.05s 2mb |-----L0.592------| " + - "L0.861[1686865319000000000,1686865761702702680] 1686935546.05s 3mb |-------L0.861-------| " + - "L0.478[1686864020081081061,1686864359000000000] 1686935742.51s 4mb|----L0.478-----| " + - "L0.775[1686864419000000000,1686864890891891870] 1686935742.51s 4mb |--------L0.775--------| " + - "L0.776[1686864890891891871,1686865761702702680] 1686935742.51s 7mb |------------------L0.776------------------| " + - "L0.650[1686864020081081061,1686864890891891870] 1686935947.46s 6mb|------------------L0.650------------------| " + - "L0.651[1686864890891891871,1686865761702702680] 1686935947.46s 6mb |------------------L0.651------------------| " + - "L0.404[1686864020081081061,1686864890891891870] 1686936871.55s 3mb|------------------L0.404------------------| " + - "L0.405[1686864890891891871,1686865761702702680] 1686936871.55s 3mb |------------------L0.405------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 55mb total:" + - "L0 " + - "L0.?[1686864020081081061,1686865413378378356] 1686936871.55s 44mb|--------------------------------L0.?---------------------------------| " + - "L0.?[1686865413378378357,1686865761702702680] 1686936871.55s 11mb |-----L0.?------| " + - "Committing partition 1:" + - " Soft Deleting 12 files: L0.404, L0.405, L0.478, L0.591, L0.592, L0.650, L0.651, L0.705, L0.706, L0.775, L0.776, L0.861" + - " Creating 2 files" + - "**** Simulation run 111, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686867209822490496]). 20 Input Files, 120mb total:" + - "L0 " + - "L0.852[1686865761702702681,1686866632513513490] 1686929421.02s 5mb|------------------L0.852------------------| " + - "L0.853[1686866632513513491,1686867503324324300] 1686929421.02s 5mb |------------------L0.853------------------| " + - "L0.766[1686865761702702681,1686866632513513490] 1686929712.33s 7mb|------------------L0.766------------------| " + - "L0.767[1686866632513513491,1686867503324324300] 1686929712.33s 7mb |------------------L0.767------------------| " + - "L0.674[1686865761702702681,1686866632513513490] 1686929965.33s 6mb|------------------L0.674------------------| " + - "L0.675[1686866632513513491,1686867503324324300] 1686929965.33s 6mb |------------------L0.675------------------| " + - "L0.821[1686865761702702681,1686866632513513490] 1686930563.07s 5mb|------------------L0.821------------------| " + - "L0.822[1686866632513513491,1686867503324324300] 1686930563.07s 5mb |------------------L0.822------------------| " + - "L0.872[1686865761702702681,1686866632513513490] 1686930780.95s 9mb|------------------L0.872------------------| " + - "L0.873[1686866632513513491,1686867503324324300] 1686930780.95s 9mb |------------------L0.873------------------| " + - "L0.842[1686865761702702681,1686866632513513490] 1686931336.08s 5mb|------------------L0.842------------------| " + - "L0.843[1686866632513513491,1686867503324324300] 1686931336.08s 5mb |------------------L0.843------------------| " + - "L0.788[1686865761702702681,1686866632513513490] 1686931600.58s 8mb|------------------L0.788------------------| " + - "L0.789[1686866632513513491,1686867503324324300] 1686931600.58s 8mb |------------------L0.789------------------| " + - "L0.724[1686865761702702681,1686866632513513490] 1686931893.7s 6mb|------------------L0.724------------------| " + - "L0.725[1686866632513513491,1686867503324324300] 1686931893.7s 6mb |------------------L0.725------------------| " + - "L0.738[1686865761702702681,1686865979000000000] 1686932458.05s 3mb|-L0.738--| " + - "L0.637[1686865761702702681,1686866632513513490] 1686932677.39s 5mb|------------------L0.637------------------| " + - "L0.638[1686866632513513491,1686867059000000000] 1686932677.39s 3mb |-------L0.638-------| " + - "L0.890[1686867119000000000,1686867503324324300] 1686932677.39s 6mb |-----L0.890------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 120mb total:" + - "L0 " + - "L0.?[1686865761702702681,1686867209822490496] 1686932677.39s 100mb|----------------------------------L0.?----------------------------------| " + - "L0.?[1686867209822490497,1686867503324324300] 1686932677.39s 20mb |----L0.?-----| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.637, L0.638, L0.674, L0.675, L0.724, L0.725, L0.738, L0.766, L0.767, L0.788, L0.789, L0.821, L0.822, L0.842, L0.843, L0.852, L0.853, L0.872, L0.873, L0.890" + - " Creating 2 files" + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.460, L0.461, L0.488, L0.489, L0.530, L0.531, L0.558, L0.559, L0.572, L0.573, L0.602, L0.603, L0.631, L0.632, L0.668, L0.669, L0.718, L0.719, L0.732, L0.733" + - " Creating 2 files" + - "**** Simulation run 112, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686861730053110850]). 20 Input Files, 146mb total:" + - "L0 " + - "L0.544[1686860536837837821,1686861407648648630] 1686933271.57s 6mb|------------------L0.544------------------| " + - "L0.545[1686861407648648631,1686862278459459440] 1686933271.57s 6mb |------------------L0.545------------------| " + - "L0.516[1686860536837837821,1686861407648648630] 1686933528.17s 10mb|------------------L0.516------------------| " + - "L0.517[1686861407648648631,1686862278459459440] 1686933528.17s 10mb |------------------L0.517------------------| " + - "L0.685[1686860536837837821,1686861407648648630] 1686933830.06s 6mb|------------------L0.685------------------| " + - "L0.686[1686861407648648631,1686862278459459440] 1686933830.06s 6mb |------------------L0.686------------------| " + - "L0.448[1686860536837837821,1686861407648648630] 1686934254.96s 8mb|------------------L0.448------------------| " + - "L0.449[1686861407648648631,1686862278459459440] 1686934254.96s 8mb |------------------L0.449------------------| " + - "L0.616[1686860536837837821,1686861407648648630] 1686934759.75s 5mb|------------------L0.616------------------| " + - "L0.617[1686861407648648631,1686862278459459440] 1686934759.75s 5mb |------------------L0.617------------------| " + - "L0.502[1686860536837837821,1686861407648648630] 1686934966.48s 10mb|------------------L0.502------------------| " + - "L0.503[1686861407648648631,1686862278459459440] 1686934966.48s 10mb |------------------L0.503------------------| " + - "L0.701[1686860536837837821,1686861407648648630] 1686935151.54s 6mb|------------------L0.701------------------| " + - "L0.702[1686861407648648631,1686862278459459440] 1686935151.54s 6mb |------------------L0.702------------------| " + - "L0.587[1686860536837837821,1686861407648648630] 1686935546.05s 6mb|------------------L0.587------------------| " + - "L0.588[1686861407648648631,1686862278459459440] 1686935546.05s 6mb |------------------L0.588------------------| " + - "L0.474[1686860536837837821,1686861407648648630] 1686935742.51s 10mb|------------------L0.474------------------| " + - "L0.475[1686861407648648631,1686862278459459440] 1686935742.51s 10mb |------------------L0.475------------------| " + - "L0.646[1686860536837837821,1686861407648648630] 1686935947.46s 6mb|------------------L0.646------------------| " + - "L0.647[1686861407648648631,1686862278459459440] 1686935947.46s 6mb |------------------L0.647------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 146mb total:" + - "L0 " + - "L0.?[1686860536837837821,1686861730053110850] 1686935947.46s 100mb|---------------------------L0.?----------------------------| " + - "L0.?[1686861730053110851,1686862278459459440] 1686935947.46s 46mb |-----------L0.?-----------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.448, L0.449, L0.474, L0.475, L0.502, L0.503, L0.516, L0.517, L0.544, L0.545, L0.587, L0.588, L0.616, L0.617, L0.646, L0.647, L0.685, L0.686, L0.701, L0.702" + - " Creating 2 files" + - "**** Simulation run 113, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686867154999999976]). 20 Input Files, 119mb total:" + - "L0 " + - "L0.832[1686865761702702681,1686866632513513490] 1686933271.57s 5mb|------------------L0.832------------------| " + - "L0.833[1686866632513513491,1686867503324324300] 1686933271.57s 5mb |------------------L0.833------------------| " + - "L0.810[1686865761702702681,1686866632513513490] 1686933528.17s 7mb|------------------L0.810------------------| " + - "L0.811[1686866632513513491,1686867503324324300] 1686933528.17s 7mb |------------------L0.811------------------| " + - "L0.691[1686865761702702681,1686866632513513490] 1686933830.06s 6mb|------------------L0.691------------------| " + - "L0.692[1686866632513513491,1686867503324324300] 1686933830.06s 6mb |------------------L0.692------------------| " + - "L0.749[1686865761702702681,1686866632513513490] 1686934254.96s 8mb|------------------L0.749------------------| " + - "L0.750[1686866632513513491,1686867503324324300] 1686934254.96s 8mb |------------------L0.750------------------| " + - "L0.622[1686865761702702681,1686866039000000000] 1686934759.75s 2mb|---L0.622---| " + - "L0.881[1686866099000000000,1686866632513513490] 1686934759.75s 3mb |---------L0.881----------| " + - "L0.882[1686866632513513491,1686867503324324300] 1686934759.75s 5mb |------------------L0.882------------------| " + - "L0.799[1686865761702702681,1686866632513513490] 1686934966.48s 7mb|------------------L0.799------------------| " + - "L0.800[1686866632513513491,1686867503324324300] 1686934966.48s 7mb |------------------L0.800------------------| " + - "L0.707[1686865761702702681,1686866632513513490] 1686935151.54s 6mb|------------------L0.707------------------| " + - "L0.708[1686866632513513491,1686867503324324300] 1686935151.54s 6mb |------------------L0.708------------------| " + - "L0.862[1686865761702702681,1686866632513513490] 1686935546.05s 5mb|------------------L0.862------------------| " + - "L0.863[1686866632513513491,1686867503324324300] 1686935546.05s 5mb |------------------L0.863------------------| " + - "L0.777[1686865761702702681,1686866632513513490] 1686935742.51s 7mb|------------------L0.777------------------| " + - "L0.778[1686866632513513491,1686867503324324300] 1686935742.51s 7mb |------------------L0.778------------------| " + - "L0.652[1686865761702702681,1686866632513513490] 1686935947.46s 6mb|------------------L0.652------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 119mb total:" + - "L0 " + - "L0.?[1686865761702702681,1686867154999999976] 1686935947.46s 95mb|--------------------------------L0.?---------------------------------| " + - "L0.?[1686867154999999977,1686867503324324300] 1686935947.46s 24mb |-----L0.?------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.622, L0.652, L0.691, L0.692, L0.707, L0.708, L0.749, L0.750, L0.777, L0.778, L0.799, L0.800, L0.810, L0.811, L0.832, L0.833, L0.862, L0.863, L0.881, L0.882" + - " Creating 2 files" + - "**** Simulation run 114, type=compact(ManySmallFiles). 3 Input Files, 11mb total:" + - "L0 " + - "L0.653[1686866632513513491,1686867503324324300] 1686935947.46s 6mb |------------------L0.653------------------| " + - "L0.406[1686865761702702681,1686866632513513490] 1686936871.55s 3mb|------------------L0.406------------------| " + - "L0.407[1686866632513513491,1686867503324324300] 1686936871.55s 3mb |------------------L0.407------------------| " + - "**** 1 Output Files (parquet_file_id not yet assigned), 11mb total:" + - "L0, all files 11mb " + - "L0.?[1686865761702702681,1686867503324324300] 1686936871.55s|------------------------------------------L0.?------------------------------------------|" + - "Committing partition 1:" + - " Soft Deleting 3 files: L0.406, L0.407, L0.653" + - " Creating 1 files" + - "**** Simulation run 115, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686868747944483205]). 20 Input Files, 140mb total:" + - "L0 " + - "L0.854[1686867503324324301,1686868374135135110] 1686929421.02s 5mb|------------------L0.854------------------| " + - "L0.855[1686868374135135111,1686869244945945920] 1686929421.02s 5mb |------------------L0.855------------------| " + - "L0.768[1686867503324324301,1686868374135135110] 1686929712.33s 7mb|------------------L0.768------------------| " + - "L0.769[1686868374135135111,1686869244945945920] 1686929712.33s 7mb |------------------L0.769------------------| " + - "L0.676[1686867503324324301,1686868374135135110] 1686929965.33s 6mb|------------------L0.676------------------| " + - "L0.677[1686868374135135111,1686868739000000000] 1686929965.33s 2mb |-----L0.677-----| " + - "L0.911[1686868799000000000,1686869244945945920] 1686929965.33s 5mb |-------L0.911--------| " + - "L0.823[1686867503324324301,1686868374135135110] 1686930563.07s 5mb|------------------L0.823------------------| " + - "L0.824[1686868374135135111,1686869244945945920] 1686930563.07s 5mb |------------------L0.824------------------| " + - "L0.874[1686867503324324301,1686868374135135110] 1686930780.95s 9mb|------------------L0.874------------------| " + - "L0.875[1686868374135135111,1686869244945945920] 1686930780.95s 9mb |------------------L0.875------------------| " + - "L0.844[1686867503324324301,1686868374135135110] 1686931336.08s 5mb|------------------L0.844------------------| " + - "L0.845[1686868374135135111,1686869244945945920] 1686931336.08s 5mb |------------------L0.845------------------| " + - "L0.790[1686867503324324301,1686868374135135110] 1686931600.58s 8mb|------------------L0.790------------------| " + - "L0.791[1686868374135135111,1686869244945945920] 1686931600.58s 8mb |------------------L0.791------------------| " + - "L0.726[1686867503324324301,1686868374135135110] 1686931893.7s 6mb|------------------L0.726------------------| " + - "L0.727[1686868374135135111,1686869244945945920] 1686931893.7s 6mb |------------------L0.727------------------| " + - "L0.891[1686867503324324301,1686868374135135110] 1686932677.39s 15mb|------------------L0.891------------------| " + - "L0.892[1686868374135135111,1686869244945945920] 1686932677.39s 15mb |------------------L0.892------------------| " + - "L0.834[1686867503324324301,1686868374135135110] 1686933271.57s 5mb|------------------L0.834------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 140mb total:" + - "L0 " + - "L0.?[1686867503324324301,1686868747944483205] 1686933271.57s 100mb|-----------------------------L0.?-----------------------------| " + - "L0.?[1686868747944483206,1686869244945945920] 1686933271.57s 40mb |---------L0.?----------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.676, L0.677, L0.726, L0.727, L0.768, L0.769, L0.790, L0.791, L0.823, L0.824, L0.834, L0.844, L0.845, L0.854, L0.855, L0.874, L0.875, L0.891, L0.892, L0.911" + - " Creating 2 files" + - "**** Simulation run 116, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686868896621621596]). 20 Input Files, 116mb total:" + - "L0 " + - "L0.835[1686868374135135111,1686869244945945920] 1686933271.57s 5mb |------------------L0.835------------------| " + - "L0.812[1686867503324324301,1686868374135135110] 1686933528.17s 7mb|------------------L0.812------------------| " + - "L0.813[1686868374135135111,1686869244945945920] 1686933528.17s 7mb |------------------L0.813------------------| " + - "L0.693[1686867503324324301,1686868374135135110] 1686933830.06s 6mb|------------------L0.693------------------| " + - "L0.694[1686868374135135111,1686868859000000000] 1686933830.06s 3mb |--------L0.694---------| " + - "L0.917[1686868919000000000,1686869244945945920] 1686933830.06s 4mb |----L0.917----| " + - "L0.751[1686867503324324301,1686868374135135110] 1686934254.96s 8mb|------------------L0.751------------------| " + - "L0.752[1686868374135135111,1686869244945945920] 1686934254.96s 8mb |------------------L0.752------------------| " + - "L0.883[1686867503324324301,1686868374135135110] 1686934759.75s 5mb|------------------L0.883------------------| " + - "L0.884[1686868374135135111,1686869244945945920] 1686934759.75s 5mb |------------------L0.884------------------| " + - "L0.801[1686867503324324301,1686868374135135110] 1686934966.48s 7mb|------------------L0.801------------------| " + - "L0.802[1686868374135135111,1686869244945945920] 1686934966.48s 7mb |------------------L0.802------------------| " + - "L0.709[1686867503324324301,1686868374135135110] 1686935151.54s 6mb|------------------L0.709------------------| " + - "L0.710[1686868374135135111,1686869244945945920] 1686935151.54s 6mb |------------------L0.710------------------| " + - "L0.864[1686867503324324301,1686868374135135110] 1686935546.05s 5mb|------------------L0.864------------------| " + - "L0.865[1686868374135135111,1686869244945945920] 1686935546.05s 5mb |------------------L0.865------------------| " + - "L0.779[1686867503324324301,1686868374135135110] 1686935742.51s 7mb|------------------L0.779------------------| " + - "L0.780[1686868374135135111,1686869244945945920] 1686935742.51s 7mb |------------------L0.780------------------| " + - "L0.654[1686867503324324301,1686868199000000000] 1686935947.46s 5mb|-------------L0.654--------------| " + - "L0.898[1686868259000000000,1686868374135135110] 1686935947.46s 1mb |L0.898| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 116mb total:" + - "L0 " + - "L0.?[1686867503324324301,1686868896621621596] 1686935947.46s 93mb|--------------------------------L0.?---------------------------------| " + - "L0.?[1686868896621621597,1686869244945945920] 1686935947.46s 23mb |-----L0.?------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.654, L0.693, L0.694, L0.709, L0.710, L0.751, L0.752, L0.779, L0.780, L0.801, L0.802, L0.812, L0.813, L0.835, L0.864, L0.865, L0.883, L0.884, L0.898, L0.917" + - " Creating 2 files" + - "**** Simulation run 117, type=compact(ManySmallFiles). 3 Input Files, 17mb total:" + - "L0 " + - "L0.899[1686868374135135111,1686869244945945920] 1686935947.46s 11mb |------------------L0.899------------------| " + - "L0.408[1686867503324324301,1686868374135135110] 1686936871.55s 3mb|------------------L0.408------------------| " + - "L0.409[1686868374135135111,1686869244945945920] 1686936871.55s 3mb |------------------L0.409------------------| " + - "**** 1 Output Files (parquet_file_id not yet assigned), 17mb total:" + - "L0, all files 17mb " + - "L0.?[1686867503324324301,1686869244945945920] 1686936871.55s|------------------------------------------L0.?------------------------------------------|" + - "Committing partition 1:" + - " Soft Deleting 3 files: L0.408, L0.409, L0.899" + - " Creating 1 files" + - "**** Simulation run 118, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686869890068506247]). 20 Input Files, 135mb total:" + - "L0 " + - "L0.856[1686869244945945921,1686870115756756730] 1686929421.02s 5mb|-----------------------------------------L0.856-----------------------------------------|" + - "L0.770[1686869244945945921,1686870115756756730] 1686929712.33s 7mb|-----------------------------------------L0.770-----------------------------------------|" + - "L0.912[1686869244945945921,1686870115756756730] 1686929965.33s 11mb|-----------------------------------------L0.912-----------------------------------------|" + - "L0.825[1686869244945945921,1686870115756756730] 1686930563.07s 5mb|-----------------------------------------L0.825-----------------------------------------|" + - "L0.876[1686869244945945921,1686870115756756730] 1686930780.95s 9mb|-----------------------------------------L0.876-----------------------------------------|" + - "L0.846[1686869244945945921,1686870115756756730] 1686931336.08s 5mb|-----------------------------------------L0.846-----------------------------------------|" + - "L0.792[1686869244945945921,1686870115756756730] 1686931600.58s 8mb|-----------------------------------------L0.792-----------------------------------------|" + - "L0.728[1686869244945945921,1686869939000000000] 1686931893.7s 5mb|-------------------------------L0.728--------------------------------| " + - "L0.928[1686869999000000000,1686870115756756730] 1686931893.7s 1mb |--L0.928--| " + - "L0.893[1686869244945945921,1686870115756756730] 1686932677.39s 15mb|-----------------------------------------L0.893-----------------------------------------|" + - "L0.836[1686869244945945921,1686870115756756730] 1686933271.57s 5mb|-----------------------------------------L0.836-----------------------------------------|" + - "L0.814[1686869244945945921,1686870115756756730] 1686933528.17s 7mb|-----------------------------------------L0.814-----------------------------------------|" + - "L0.918[1686869244945945921,1686870115756756730] 1686933830.06s 11mb|-----------------------------------------L0.918-----------------------------------------|" + - "L0.753[1686869244945945921,1686870115756756730] 1686934254.96s 8mb|-----------------------------------------L0.753-----------------------------------------|" + - "L0.885[1686869244945945921,1686870115756756730] 1686934759.75s 5mb|-----------------------------------------L0.885-----------------------------------------|" + - "L0.803[1686869244945945921,1686870115756756730] 1686934966.48s 7mb|-----------------------------------------L0.803-----------------------------------------|" + - "L0.711[1686869244945945921,1686869519000000000] 1686935151.54s 2mb|----------L0.711----------| " + - "L0.923[1686869579000000000,1686870115756756730] 1686935151.54s 6mb |-----------------------L0.923------------------------| " + - "L0.866[1686869244945945921,1686870115756756730] 1686935546.05s 5mb|-----------------------------------------L0.866-----------------------------------------|" + - "L0.781[1686869244945945921,1686870115756756730] 1686935742.51s 7mb|-----------------------------------------L0.781-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 135mb total:" + - "L0 " + - "L0.?[1686869244945945921,1686869890068506247] 1686935742.51s 100mb|------------------------------L0.?------------------------------| " + - "L0.?[1686869890068506248,1686870115756756730] 1686935742.51s 35mb |--------L0.?---------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.711, L0.728, L0.753, L0.770, L0.781, L0.792, L0.803, L0.814, L0.825, L0.836, L0.846, L0.856, L0.866, L0.876, L0.885, L0.893, L0.912, L0.918, L0.923, L0.928" + - " Creating 2 files" + - "**** Simulation run 119, type=compact(ManySmallFiles). 2 Input Files, 14mb total:" + - "L0 " + - "L0.900[1686869244945945921,1686870115756756730] 1686935947.46s 11mb|-----------------------------------------L0.900-----------------------------------------|" + - "L0.410[1686869244945945921,1686870115756756730] 1686936871.55s 3mb|-----------------------------------------L0.410-----------------------------------------|" + - "**** 1 Output Files (parquet_file_id not yet assigned), 14mb total:" + - "L0, all files 14mb " + - "L0.?[1686869244945945921,1686870115756756730] 1686936871.55s|------------------------------------------L0.?------------------------------------------|" + - "Committing partition 1:" + - " Soft Deleting 2 files: L0.410, L0.900" + - " Creating 1 files" + - "**** Simulation run 120, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686870676199779489]). 20 Input Files, 155mb total:" + - "L0 " + - "L0.857[1686870115756756731,1686870986567567540] 1686929421.02s 5mb|-----------------------------------------L0.857-----------------------------------------|" + - "L0.771[1686870115756756731,1686870986567567540] 1686929712.33s 7mb|-----------------------------------------L0.771-----------------------------------------|" + - "L0.913[1686870115756756731,1686870986567567540] 1686929965.33s 11mb|-----------------------------------------L0.913-----------------------------------------|" + - "L0.826[1686870115756756731,1686870986567567540] 1686930563.07s 5mb|-----------------------------------------L0.826-----------------------------------------|" + - "L0.877[1686870115756756731,1686870986567567540] 1686930780.95s 9mb|-----------------------------------------L0.877-----------------------------------------|" + - "L0.847[1686870115756756731,1686870986567567540] 1686931336.08s 5mb|-----------------------------------------L0.847-----------------------------------------|" + - "L0.793[1686870115756756731,1686870986567567540] 1686931600.58s 8mb|-----------------------------------------L0.793-----------------------------------------|" + - "L0.929[1686870115756756731,1686870986567567540] 1686931893.7s 11mb|-----------------------------------------L0.929-----------------------------------------|" + - "L0.894[1686870115756756731,1686870986567567540] 1686932677.39s 15mb|-----------------------------------------L0.894-----------------------------------------|" + - "L0.837[1686870115756756731,1686870986567567540] 1686933271.57s 5mb|-----------------------------------------L0.837-----------------------------------------|" + - "L0.815[1686870115756756731,1686870986567567540] 1686933528.17s 7mb|-----------------------------------------L0.815-----------------------------------------|" + - "L0.919[1686870115756756731,1686870986567567540] 1686933830.06s 11mb|-----------------------------------------L0.919-----------------------------------------|" + - "L0.754[1686870115756756731,1686870986567567540] 1686934254.96s 8mb|-----------------------------------------L0.754-----------------------------------------|" + - "L0.886[1686870115756756731,1686870986567567540] 1686934759.75s 5mb|-----------------------------------------L0.886-----------------------------------------|" + - "L0.804[1686870115756756731,1686870986567567540] 1686934966.48s 7mb|-----------------------------------------L0.804-----------------------------------------|" + - "L0.924[1686870115756756731,1686870986567567540] 1686935151.54s 11mb|-----------------------------------------L0.924-----------------------------------------|" + - "L0.867[1686870115756756731,1686870986567567540] 1686935546.05s 5mb|-----------------------------------------L0.867-----------------------------------------|" + - "L0.782[1686870115756756731,1686870986567567540] 1686935742.51s 7mb|-----------------------------------------L0.782-----------------------------------------|" + - "L0.901[1686870115756756731,1686870986567567540] 1686935947.46s 11mb|-----------------------------------------L0.901-----------------------------------------|" + - "L0.411[1686870115756756731,1686870986567567540] 1686936871.55s 3mb|-----------------------------------------L0.411-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 155mb total:" + - "L0 " + - "L0.?[1686870115756756731,1686870676199779489] 1686936871.55s 100mb|-------------------------L0.?--------------------------| " + - "L0.?[1686870676199779490,1686870986567567540] 1686936871.55s 55mb |-------------L0.?-------------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.411, L0.754, L0.771, L0.782, L0.793, L0.804, L0.815, L0.826, L0.837, L0.847, L0.857, L0.867, L0.877, L0.886, L0.894, L0.901, L0.913, L0.919, L0.924, L0.929" + - " Creating 2 files" + - "**** Simulation run 121, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686871550514515284]). 20 Input Files, 154mb total:" + - "L0 " + - "L0.858[1686870986567567541,1686871857378378350] 1686929421.02s 5mb|-----------------------------------------L0.858-----------------------------------------|" + - "L0.772[1686870986567567541,1686871857378378350] 1686929712.33s 7mb|-----------------------------------------L0.772-----------------------------------------|" + - "L0.914[1686870986567567541,1686871857378378350] 1686929965.33s 11mb|-----------------------------------------L0.914-----------------------------------------|" + - "L0.827[1686870986567567541,1686871857378378350] 1686930563.07s 5mb|-----------------------------------------L0.827-----------------------------------------|" + - "L0.878[1686870986567567541,1686871857378378350] 1686930780.95s 9mb|-----------------------------------------L0.878-----------------------------------------|" + - "L0.848[1686870986567567541,1686871857378378350] 1686931336.08s 5mb|-----------------------------------------L0.848-----------------------------------------|" + - "L0.794[1686870986567567541,1686871857378378350] 1686931600.58s 8mb|-----------------------------------------L0.794-----------------------------------------|" + - "L0.930[1686870986567567541,1686871857378378350] 1686931893.7s 11mb|-----------------------------------------L0.930-----------------------------------------|" + - "L0.895[1686870986567567541,1686871857378378350] 1686932677.39s 15mb|-----------------------------------------L0.895-----------------------------------------|" + - "L0.838[1686870986567567541,1686871857378378350] 1686933271.57s 5mb|-----------------------------------------L0.838-----------------------------------------|" + - "L0.816[1686870986567567541,1686871857378378350] 1686933528.17s 7mb|-----------------------------------------L0.816-----------------------------------------|" + - "L0.920[1686870986567567541,1686871857378378350] 1686933830.06s 11mb|-----------------------------------------L0.920-----------------------------------------|" + - "L0.755[1686870986567567541,1686871857378378350] 1686934254.96s 8mb|-----------------------------------------L0.755-----------------------------------------|" + - "L0.887[1686870986567567541,1686871857378378350] 1686934759.75s 5mb|-----------------------------------------L0.887-----------------------------------------|" + - "L0.805[1686870986567567541,1686871857378378350] 1686934966.48s 7mb|-----------------------------------------L0.805-----------------------------------------|" + - "L0.925[1686870986567567541,1686871857378378350] 1686935151.54s 11mb|-----------------------------------------L0.925-----------------------------------------|" + - "L0.868[1686870986567567541,1686871857378378350] 1686935546.05s 5mb|-----------------------------------------L0.868-----------------------------------------|" + - "L0.783[1686870986567567541,1686871857378378350] 1686935742.51s 7mb|-----------------------------------------L0.783-----------------------------------------|" + - "L0.902[1686870986567567541,1686871857378378350] 1686935947.46s 11mb|-----------------------------------------L0.902-----------------------------------------|" + - "L0.412[1686870986567567541,1686871559000000000] 1686936871.55s 2mb|-------------------------L0.412--------------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 154mb total:" + - "L0 " + - "L0.?[1686870986567567541,1686871550514515284] 1686936871.55s 100mb|--------------------------L0.?--------------------------| " + - "L0.?[1686871550514515285,1686871857378378350] 1686936871.55s 54mb |------------L0.?-------------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.412, L0.755, L0.772, L0.783, L0.794, L0.805, L0.816, L0.827, L0.838, L0.848, L0.858, L0.868, L0.878, L0.887, L0.895, L0.902, L0.914, L0.920, L0.925, L0.930" + - " Creating 2 files" + - "**** Simulation run 122, type=compact(ManySmallFiles). 1 Input Files, 1mb total:" + - "L0, all files 1mb " + - "L0.933[1686871619000000000,1686871857378378350] 1686936871.55s|-----------------------------------------L0.933-----------------------------------------|" + - "**** 1 Output Files (parquet_file_id not yet assigned), 1mb total:" + - "L0, all files 1mb " + - "L0.?[1686871619000000000,1686871857378378350] 1686936871.55s|------------------------------------------L0.?------------------------------------------|" + - "Committing partition 1:" + - " Soft Deleting 1 files: L0.933" + - " Creating 1 files" + - "**** Simulation run 123, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686872413821229216]). 20 Input Files, 156mb total:" + - "L0 " + - "L0.859[1686871857378378351,1686872728189189160] 1686929421.02s 5mb|-----------------------------------------L0.859-----------------------------------------|" + - "L0.773[1686871857378378351,1686872728189189160] 1686929712.33s 7mb|-----------------------------------------L0.773-----------------------------------------|" + - "L0.915[1686871857378378351,1686872728189189160] 1686929965.33s 11mb|-----------------------------------------L0.915-----------------------------------------|" + - "L0.828[1686871857378378351,1686872728189189160] 1686930563.07s 5mb|-----------------------------------------L0.828-----------------------------------------|" + - "L0.879[1686871857378378351,1686872728189189160] 1686930780.95s 9mb|-----------------------------------------L0.879-----------------------------------------|" + - "L0.849[1686871857378378351,1686872728189189160] 1686931336.08s 5mb|-----------------------------------------L0.849-----------------------------------------|" + - "L0.795[1686871857378378351,1686872728189189160] 1686931600.58s 8mb|-----------------------------------------L0.795-----------------------------------------|" + - "L0.931[1686871857378378351,1686872728189189160] 1686931893.7s 11mb|-----------------------------------------L0.931-----------------------------------------|" + - "L0.896[1686871857378378351,1686872728189189160] 1686932677.39s 15mb|-----------------------------------------L0.896-----------------------------------------|" + - "L0.839[1686871857378378351,1686872728189189160] 1686933271.57s 5mb|-----------------------------------------L0.839-----------------------------------------|" + - "L0.817[1686871857378378351,1686872728189189160] 1686933528.17s 7mb|-----------------------------------------L0.817-----------------------------------------|" + - "L0.921[1686871857378378351,1686872728189189160] 1686933830.06s 11mb|-----------------------------------------L0.921-----------------------------------------|" + - "L0.756[1686871857378378351,1686872728189189160] 1686934254.96s 8mb|-----------------------------------------L0.756-----------------------------------------|" + - "L0.888[1686871857378378351,1686872728189189160] 1686934759.75s 5mb|-----------------------------------------L0.888-----------------------------------------|" + - "L0.806[1686871857378378351,1686872728189189160] 1686934966.48s 7mb|-----------------------------------------L0.806-----------------------------------------|" + - "L0.926[1686871857378378351,1686872728189189160] 1686935151.54s 11mb|-----------------------------------------L0.926-----------------------------------------|" + - "L0.869[1686871857378378351,1686872728189189160] 1686935546.05s 5mb|-----------------------------------------L0.869-----------------------------------------|" + - "L0.784[1686871857378378351,1686872728189189160] 1686935742.51s 7mb|-----------------------------------------L0.784-----------------------------------------|" + - "L0.903[1686871857378378351,1686872728189189160] 1686935947.46s 11mb|-----------------------------------------L0.903-----------------------------------------|" + - "L0.934[1686871857378378351,1686872728189189160] 1686936871.55s 4mb|-----------------------------------------L0.934-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 156mb total:" + - "L0 " + - "L0.?[1686871857378378351,1686872413821229216] 1686936871.55s 100mb|-------------------------L0.?--------------------------| " + - "L0.?[1686872413821229217,1686872728189189160] 1686936871.55s 56mb |-------------L0.?-------------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.756, L0.773, L0.784, L0.795, L0.806, L0.817, L0.828, L0.839, L0.849, L0.859, L0.869, L0.879, L0.888, L0.896, L0.903, L0.915, L0.921, L0.926, L0.931, L0.934" + - " Creating 2 files" + - "**** Simulation run 124, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686873284631629744]). 20 Input Files, 156mb total:" + - "L0 " + - "L0.860[1686872728189189161,1686873599000000000] 1686929421.02s 5mb|----------------------------------------L0.860-----------------------------------------| " + - "L0.774[1686872728189189161,1686873599000000000] 1686929712.33s 7mb|----------------------------------------L0.774-----------------------------------------| " + - "L0.916[1686872728189189161,1686873599000000000] 1686929965.33s 11mb|----------------------------------------L0.916-----------------------------------------| " + - "L0.829[1686872728189189161,1686873599000000000] 1686930563.07s 5mb|----------------------------------------L0.829-----------------------------------------| " + - "L0.880[1686872728189189161,1686873599000000000] 1686930780.95s 9mb|----------------------------------------L0.880-----------------------------------------| " + - "L0.850[1686872728189189161,1686873599000000000] 1686931336.08s 5mb|----------------------------------------L0.850-----------------------------------------| " + - "L0.796[1686872728189189161,1686873599000000000] 1686931600.58s 8mb|----------------------------------------L0.796-----------------------------------------| " + - "L0.932[1686872728189189161,1686873599000000000] 1686931893.7s 11mb|----------------------------------------L0.932-----------------------------------------| " + - "L0.897[1686872728189189161,1686873599000000000] 1686932677.39s 15mb|----------------------------------------L0.897-----------------------------------------| " + - "L0.840[1686872728189189161,1686873599000000000] 1686933271.57s 5mb|----------------------------------------L0.840-----------------------------------------| " + - "L0.818[1686872728189189161,1686873599000000000] 1686933528.17s 7mb|----------------------------------------L0.818-----------------------------------------| " + - "L0.922[1686872728189189161,1686873599000000000] 1686933830.06s 11mb|----------------------------------------L0.922-----------------------------------------| " + - "L0.757[1686872728189189161,1686873599000000000] 1686934254.96s 8mb|----------------------------------------L0.757-----------------------------------------| " + - "L0.889[1686872728189189161,1686873599000000000] 1686934759.75s 5mb|----------------------------------------L0.889-----------------------------------------| " + - "L0.807[1686872728189189161,1686873599000000000] 1686934966.48s 7mb|----------------------------------------L0.807-----------------------------------------| " + - "L0.927[1686872728189189161,1686873599000000000] 1686935151.54s 11mb|----------------------------------------L0.927-----------------------------------------| " + - "L0.870[1686872728189189161,1686873599000000000] 1686935546.05s 5mb|----------------------------------------L0.870-----------------------------------------| " + - "L0.785[1686872728189189161,1686873599000000000] 1686935742.51s 7mb|----------------------------------------L0.785-----------------------------------------| " + - "L0.904[1686872728189189161,1686873599000000000] 1686935947.46s 11mb|----------------------------------------L0.904-----------------------------------------| " + - "L0.935[1686872728189189161,1686873599000000000] 1686936871.55s 4mb|----------------------------------------L0.935-----------------------------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 156mb total:" + - "L0 " + - "L0.?[1686872728189189161,1686873284631629744] 1686936871.55s 100mb|-------------------------L0.?--------------------------| " + - "L0.?[1686873284631629745,1686873599000000000] 1686936871.55s 56mb |-------------L0.?-------------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.757, L0.774, L0.785, L0.796, L0.807, L0.818, L0.829, L0.840, L0.850, L0.860, L0.870, L0.880, L0.889, L0.897, L0.904, L0.916, L0.922, L0.927, L0.932, L0.935" + - " Creating 2 files" + - "**** Simulation run 125, type=split(HighL0OverlapTotalBacklog)(split_times=[1686855892513513500]). 1 Input Files, 1mb total:" + - "L1, all files 1mb " + - "L1.656[1686855311972972961,1686856182783783770] 1686928854.57s|-----------------------------------------L1.656-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 1mb total:" + - "L1 " + - "L1.?[1686855311972972961,1686855892513513500] 1686928854.57s 746kb|--------------------------L1.?---------------------------| " + - "L1.?[1686855892513513501,1686856182783783770] 1686928854.57s 373kb |-----------L1.?------------| " + - "**** Simulation run 126, type=split(HighL0OverlapTotalBacklog)(split_times=[1686855892513513500, 1686856473054054039]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.978[1686855311972972961,1686856536496842959] 1686932677.39s|-----------------------------------------L0.978-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686855311972972961,1686855892513513500] 1686932677.39s 47mb|------------------L0.?------------------| " + - "L0.?[1686855892513513501,1686856473054054039] 1686932677.39s 47mb |------------------L0.?------------------| " + - "L0.?[1686856473054054040,1686856536496842959] 1686932677.39s 5mb |L0.?|" + - "**** Simulation run 127, type=split(HighL0OverlapTotalBacklog)(split_times=[1686855892513513500, 1686856473054054039]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.980[1686855311972972961,1686856564304278603] 1686935742.51s|-----------------------------------------L0.980-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686855311972972961,1686855892513513500] 1686935742.51s 46mb|-----------------L0.?------------------| " + - "L0.?[1686855892513513501,1686856473054054039] 1686935742.51s 46mb |-----------------L0.?------------------| " + - "L0.?[1686856473054054040,1686856564304278603] 1686935742.51s 7mb |L0.?| " + - "**** Simulation run 128, type=split(HighL0OverlapTotalBacklog)(split_times=[1686855892513513500, 1686856473054054039]). 1 Input Files, 17mb total:" + - "L0, all files 17mb " + - "L0.982[1686855311972972961,1686857053594594580] 1686936871.55s|-----------------------------------------L0.982-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 17mb total:" + - "L0 " + - "L0.?[1686855311972972961,1686855892513513500] 1686936871.55s 6mb|-----------L0.?------------| " + - "L0.?[1686855892513513501,1686856473054054039] 1686936871.55s 6mb |-----------L0.?------------| " + - "L0.?[1686856473054054040,1686857053594594580] 1686936871.55s 6mb |------------L0.?------------| " + - "**** Simulation run 129, type=split(HighL0OverlapTotalBacklog)(split_times=[1686856473054054039]). 1 Input Files, 1mb total:" + - "L1, all files 1mb " + - "L1.657[1686856182783783771,1686857053594594580] 1686928854.57s|-----------------------------------------L1.657-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 1mb total:" + - "L1 " + - "L1.?[1686856182783783771,1686856473054054039] 1686928854.57s 373kb|-----------L1.?------------| " + - "L1.?[1686856473054054040,1686857053594594580] 1686928854.57s 746kb |---------------------------L1.?---------------------------| " + - "**** Simulation run 130, type=split(HighL0OverlapTotalBacklog)(split_times=[1686857634135135120]). 1 Input Files, 1mb total:" + - "L1, all files 1mb " + - "L1.658[1686857053594594581,1686857924405405390] 1686928854.57s|-----------------------------------------L1.658-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 1mb total:" + - "L1 " + - "L1.?[1686857053594594581,1686857634135135120] 1686928854.57s 746kb|--------------------------L1.?---------------------------| " + - "L1.?[1686857634135135121,1686857924405405390] 1686928854.57s 373kb |-----------L1.?------------| " + - "**** Simulation run 131, type=split(HighL0OverlapTotalBacklog)(split_times=[1686857634135135120, 1686858214675675659]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.983[1686857053594594581,1686858278525917085] 1686932677.39s|-----------------------------------------L0.983-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686857053594594581,1686857634135135120] 1686932677.39s 47mb|------------------L0.?------------------| " + - "L0.?[1686857634135135121,1686858214675675659] 1686932677.39s 47mb |------------------L0.?------------------| " + - "L0.?[1686858214675675660,1686858278525917085] 1686932677.39s 5mb |L0.?|" + - "**** Simulation run 132, type=split(HighL0OverlapTotalBacklog)(split_times=[1686857634135135120, 1686858214675675659]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.985[1686857053594594581,1686858251288003855] 1686935947.46s|-----------------------------------------L0.985-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686857053594594581,1686857634135135120] 1686935947.46s 48mb|------------------L0.?-------------------| " + - "L0.?[1686857634135135121,1686858214675675659] 1686935947.46s 48mb |------------------L0.?-------------------| " + - "L0.?[1686858214675675660,1686858251288003855] 1686935947.46s 3mb |L0.?|" + - "**** Simulation run 133, type=split(HighL0OverlapTotalBacklog)(split_times=[1686857634135135120, 1686858214675675659]). 1 Input Files, 11mb total:" + - "L0, all files 11mb " + - "L0.987[1686857053594594581,1686858795216216200] 1686936871.55s|-----------------------------------------L0.987-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 11mb total:" + - "L0 " + - "L0.?[1686857053594594581,1686857634135135120] 1686936871.55s 4mb|-----------L0.?------------| " + - "L0.?[1686857634135135121,1686858214675675659] 1686936871.55s 4mb |-----------L0.?------------| " + - "L0.?[1686858214675675660,1686858795216216200] 1686936871.55s 4mb |------------L0.?------------| " + - "**** Simulation run 134, type=split(HighL0OverlapTotalBacklog)(split_times=[1686858214675675659]). 1 Input Files, 1mb total:" + - "L1, all files 1mb " + - "L1.659[1686857924405405391,1686858795216216200] 1686928854.57s|-----------------------------------------L1.659-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 1mb total:" + - "L1 " + - "L1.?[1686857924405405391,1686858214675675659] 1686928854.57s 373kb|-----------L1.?------------| " + - "L1.?[1686858214675675660,1686858795216216200] 1686928854.57s 746kb |---------------------------L1.?---------------------------| " + - "**** Simulation run 135, type=split(HighL0OverlapTotalBacklog)(split_times=[1686859375756756740, 1686859956297297279]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.988[1686858795216216201,1686859969989511638] 1686932677.39s|-----------------------------------------L0.988-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686858795216216201,1686859375756756740] 1686932677.39s 49mb|-------------------L0.?-------------------| " + - "L0.?[1686859375756756741,1686859956297297279] 1686932677.39s 49mb |-------------------L0.?-------------------| " + - "L0.?[1686859956297297280,1686859969989511638] 1686932677.39s 1mb |L0.?|" + - "**** Simulation run 136, type=split(HighL0OverlapTotalBacklog)(split_times=[1686859375756756740, 1686859956297297279]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.990[1686858795216216201,1686859988431489230] 1686935947.46s|-----------------------------------------L0.990-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686858795216216201,1686859375756756740] 1686935947.46s 49mb|------------------L0.?-------------------| " + - "L0.?[1686859375756756741,1686859956297297279] 1686935947.46s 49mb |------------------L0.?-------------------| " + - "L0.?[1686859956297297280,1686859988431489230] 1686935947.46s 3mb |L0.?|" + - "**** Simulation run 137, type=split(HighL0OverlapTotalBacklog)(split_times=[1686859375756756740, 1686859956297297279]). 1 Input Files, 6mb total:" + - "L0, all files 6mb " + - "L0.992[1686858795216216201,1686860536837837820] 1686936871.55s|-----------------------------------------L0.992-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 6mb total:" + - "L0 " + - "L0.?[1686858795216216201,1686859375756756740] 1686936871.55s 2mb|-----------L0.?------------| " + - "L0.?[1686859375756756741,1686859956297297279] 1686936871.55s 2mb |-----------L0.?------------| " + - "L0.?[1686859956297297280,1686860536837837820] 1686936871.55s 2mb |------------L0.?------------| " + - "**** Simulation run 138, type=split(HighL0OverlapTotalBacklog)(split_times=[1686859375756756740]). 1 Input Files, 579kb total:" + - "L1, all files 579kb " + - "L1.53[1686859079000000000,1686859499000000000] 1686928854.57s|-----------------------------------------L1.53------------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 579kb total:" + - "L1 " + - "L1.?[1686859079000000000,1686859375756756740] 1686928854.57s 409kb|----------------------------L1.?-----------------------------| " + - "L1.?[1686859375756756741,1686859499000000000] 1686928854.57s 170kb |----------L1.?----------| " + - "**** Simulation run 139, type=split(HighL0OverlapTotalBacklog)(split_times=[1686859956297297279]). 1 Input Files, 1mb total:" + - "L1, all files 1mb " + - "L1.740[1686859666027027011,1686860536837837820] 1686928854.57s|-----------------------------------------L1.740-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 1mb total:" + - "L1 " + - "L1.?[1686859666027027011,1686859956297297279] 1686928854.57s 371kb|-----------L1.?------------| " + - "L1.?[1686859956297297280,1686860536837837820] 1686928854.57s 743kb |---------------------------L1.?---------------------------| " + - "**** Simulation run 140, type=split(HighL0OverlapTotalBacklog)(split_times=[1686861117378378360]). 1 Input Files, 1mb total:" + - "L1, all files 1mb " + - "L1.741[1686860536837837821,1686861407648648630] 1686928854.57s|-----------------------------------------L1.741-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 1mb total:" + - "L1 " + - "L1.?[1686860536837837821,1686861117378378360] 1686928854.57s 743kb|--------------------------L1.?---------------------------| " + - "L1.?[1686861117378378361,1686861407648648630] 1686928854.57s 371kb |-----------L1.?------------| " + - "**** Simulation run 141, type=split(HighL0OverlapTotalBacklog)(split_times=[1686861117378378360, 1686861697918918899]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.1007[1686860536837837821,1686861711611133258] 1686932677.39s|----------------------------------------L0.1007-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686860536837837821,1686861117378378360] 1686932677.39s 49mb|-------------------L0.?-------------------| " + - "L0.?[1686861117378378361,1686861697918918899] 1686932677.39s 49mb |-------------------L0.?-------------------| " + - "L0.?[1686861697918918900,1686861711611133258] 1686932677.39s 1mb |L0.?|" + - "**** Simulation run 142, type=split(HighL0OverlapTotalBacklog)(split_times=[1686861117378378360, 1686861697918918899]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.1009[1686860536837837821,1686861730053110850] 1686935947.46s|----------------------------------------L0.1009-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686860536837837821,1686861117378378360] 1686935947.46s 49mb|------------------L0.?-------------------| " + - "L0.?[1686861117378378361,1686861697918918899] 1686935947.46s 49mb |------------------L0.?-------------------| " + - "L0.?[1686861697918918900,1686861730053110850] 1686935947.46s 3mb |L0.?|" + - "**** Simulation run 143, type=split(HighL0OverlapTotalBacklog)(split_times=[1686861117378378360, 1686861697918918899]). 1 Input Files, 6mb total:" + - "L0, all files 6mb " + - "L0.993[1686860536837837821,1686862278459459440] 1686936871.55s|-----------------------------------------L0.993-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 6mb total:" + - "L0 " + - "L0.?[1686860536837837821,1686861117378378360] 1686936871.55s 2mb|-----------L0.?------------| " + - "L0.?[1686861117378378361,1686861697918918899] 1686936871.55s 2mb |-----------L0.?------------| " + - "L0.?[1686861697918918900,1686862278459459440] 1686936871.55s 2mb |------------L0.?------------| " + - "**** Simulation run 144, type=split(HighL0OverlapTotalBacklog)(split_times=[1686862858999999980, 1686863439540540519]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.994[1686862278459459441,1686863453232754878] 1686932677.39s|-----------------------------------------L0.994-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686862278459459441,1686862858999999980] 1686932677.39s 49mb|-------------------L0.?-------------------| " + - "L0.?[1686862858999999981,1686863439540540519] 1686932677.39s 49mb |-------------------L0.?-------------------| " + - "L0.?[1686863439540540520,1686863453232754878] 1686932677.39s 1mb |L0.?|" + - "**** Simulation run 145, type=split(HighL0OverlapTotalBacklog)(split_times=[1686862858999999980, 1686863439540540519]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.996[1686862278459459441,1686863528879205201] 1686935947.46s|-----------------------------------------L0.996-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686862278459459441,1686862858999999980] 1686935947.46s 46mb|-----------------L0.?------------------| " + - "L0.?[1686862858999999981,1686863439540540519] 1686935947.46s 46mb |-----------------L0.?------------------| " + - "L0.?[1686863439540540520,1686863528879205201] 1686935947.46s 7mb |L0.?| " + - "**** Simulation run 146, type=split(HighL0OverlapTotalBacklog)(split_times=[1686862858999999980, 1686863439540540519]). 1 Input Files, 11mb total:" + - "L0, all files 11mb " + - "L0.998[1686862278459459441,1686864020081081060] 1686936871.55s|-----------------------------------------L0.998-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 11mb total:" + - "L0 " + - "L0.?[1686862278459459441,1686862858999999980] 1686936871.55s 4mb|-----------L0.?------------| " + - "L0.?[1686862858999999981,1686863439540540519] 1686936871.55s 4mb |-----------L0.?------------| " + - "L0.?[1686863439540540520,1686864020081081060] 1686936871.55s 4mb |------------L0.?------------| " + - "**** Simulation run 147, type=split(HighL0OverlapTotalBacklog)(split_times=[1686863439540540519]). 1 Input Files, 703kb total:" + - "L1, all files 703kb " + - "L1.744[1686863149270270251,1686863699000000000] 1686928854.57s|-----------------------------------------L1.744-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 703kb total:" + - "L1 " + - "L1.?[1686863149270270251,1686863439540540519] 1686928854.57s 371kb|--------------------L1.?---------------------| " + - "L1.?[1686863439540540520,1686863699000000000] 1686928854.57s 332kb |------------------L1.?------------------| " + - "**** Simulation run 148, type=split(HighL0OverlapTotalBacklog)(split_times=[1686861697918918899]). 1 Input Files, 1mb total:" + - "L1, all files 1mb " + - "L1.742[1686861407648648631,1686862278459459440] 1686928854.57s|-----------------------------------------L1.742-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 1mb total:" + - "L1 " + - "L1.?[1686861407648648631,1686861697918918899] 1686928854.57s 371kb|-----------L1.?------------| " + - "L1.?[1686861697918918900,1686862278459459440] 1686928854.57s 743kb |---------------------------L1.?---------------------------| " + - "**** Simulation run 149, type=split(HighL0OverlapTotalBacklog)(split_times=[1686862858999999980]). 1 Input Files, 1mb total:" + - "L1, all files 1mb " + - "L1.743[1686862278459459441,1686863149270270250] 1686928854.57s|-----------------------------------------L1.743-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 1mb total:" + - "L1 " + - "L1.?[1686862278459459441,1686862858999999980] 1686928854.57s 743kb|--------------------------L1.?---------------------------| " + - "L1.?[1686862858999999981,1686863149270270250] 1686928854.57s 371kb |-----------L1.?------------| " + - "Committing partition 1:" + - " Soft Deleting 25 files: L1.53, L1.656, L1.657, L1.658, L1.659, L1.740, L1.741, L1.742, L1.743, L1.744, L0.978, L0.980, L0.982, L0.983, L0.985, L0.987, L0.988, L0.990, L0.992, L0.993, L0.994, L0.996, L0.998, L0.1007, L0.1009" + - " Creating 65 files" + - "**** Simulation run 150, type=split(ReduceOverlap)(split_times=[1686852699540540530]). 1 Input Files, 82mb total:" + - "L0, all files 82mb " + - "L0.966[1686851828729729721,1686853222027027016] 1686931600.58s|-----------------------------------------L0.966-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 82mb total:" + - "L0 " + - "L0.?[1686851828729729721,1686852699540540530] 1686931600.58s 51mb|-------------------------L0.?-------------------------| " + - "L0.?[1686852699540540531,1686853222027027016] 1686931600.58s 31mb |-------------L0.?--------------| " + - "**** Simulation run 151, type=split(ReduceOverlap)(split_times=[1686864890891891870]). 1 Input Files, 78mb total:" + - "L0, all files 78mb " + - "L0.999[1686864020081081061,1686865413378378356] 1686931893.7s|-----------------------------------------L0.999-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 78mb total:" + - "L0 " + - "L0.?[1686864020081081061,1686864890891891870] 1686931893.7s 49mb|-------------------------L0.?-------------------------| " + - "L0.?[1686864890891891871,1686865413378378356] 1686931893.7s 29mb |-------------L0.?--------------| " + - "**** Simulation run 152, type=split(ReduceOverlap)(split_times=[1686842249810810810]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.936[1686841379000000000,1686842589641148927] 1686932677.39s|-----------------------------------------L0.936-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686841379000000000,1686842249810810810] 1686932677.39s 72mb|-----------------------------L0.?-----------------------------| " + - "L0.?[1686842249810810811,1686842589641148927] 1686932677.39s 28mb |---------L0.?----------| " + - "**** Simulation run 153, type=split(ReduceOverlap)(split_times=[1686843991432432430]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.941[1686843120621621621,1686844331262770547] 1686932677.39s|-----------------------------------------L0.941-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686843120621621621,1686843991432432430] 1686932677.39s 72mb|-----------------------------L0.?-----------------------------| " + - "L0.?[1686843991432432431,1686844331262770547] 1686932677.39s 28mb |---------L0.?----------| " + - "**** Simulation run 154, type=split(ReduceOverlap)(split_times=[1686845579000000000, 1686845733054054050]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.946[1686844862243243241,1686846072884392167] 1686932677.39s|-----------------------------------------L0.946-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686844862243243241,1686845579000000000] 1686932677.39s 59mb|-----------------------L0.?------------------------| " + - "L0.?[1686845579000000001,1686845733054054050] 1686932677.39s 13mb |--L0.?---| " + - "L0.?[1686845733054054051,1686846072884392167] 1686932677.39s 28mb |---------L0.?----------| " + - "**** Simulation run 155, type=split(ReduceOverlap)(split_times=[1686847474675675670]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.950[1686846603864864861,1686847814506013787] 1686932677.39s|-----------------------------------------L0.950-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686846603864864861,1686847474675675670] 1686932677.39s 72mb|-----------------------------L0.?-----------------------------| " + - "L0.?[1686847474675675671,1686847814506013787] 1686932677.39s 28mb |---------L0.?----------| " + - "**** Simulation run 156, type=split(ReduceOverlap)(split_times=[1686849216297297290]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.955[1686848345486486481,1686849600239388909] 1686932677.39s|-----------------------------------------L0.955-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686848345486486481,1686849216297297290] 1686932677.39s 69mb|----------------------------L0.?----------------------------| " + - "L0.?[1686849216297297291,1686849600239388909] 1686932677.39s 31mb |----------L0.?-----------| " + - "**** Simulation run 157, type=split(ReduceOverlap)(split_times=[1686849779000000000]). 1 Input Files, 39mb total:" + - "L0, all files 39mb " + - "L0.956[1686849600239388910,1686850087108108100] 1686932677.39s|-----------------------------------------L0.956-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 39mb total:" + - "L0 " + - "L0.?[1686849600239388910,1686849779000000000] 1686932677.39s 14mb|-------------L0.?--------------| " + - "L0.?[1686849779000000001,1686850087108108100] 1686932677.39s 25mb |-------------------------L0.?-------------------------| " + - "**** Simulation run 158, type=split(ReduceOverlap)(split_times=[1686850559000000000, 1686850957918918910]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.960[1686850087108108101,1686851297766913590] 1686932677.39s|-----------------------------------------L0.960-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686850087108108101,1686850559000000000] 1686932677.39s 39mb|--------------L0.?---------------| " + - "L0.?[1686850559000000001,1686850957918918910] 1686932677.39s 33mb |-----------L0.?------------| " + - "L0.?[1686850957918918911,1686851297766913590] 1686932677.39s 28mb |---------L0.?----------| " + - "**** Simulation run 159, type=split(ReduceOverlap)(split_times=[1686854441162162150, 1686854819000000000]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.972[1686853570351351341,1686854830189955965] 1686932677.39s|-----------------------------------------L0.972-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686853570351351341,1686854441162162150] 1686932677.39s 69mb|----------------------------L0.?----------------------------| " + - "L0.?[1686854441162162151,1686854819000000000] 1686932677.39s 30mb |----------L0.?----------| " + - "L0.?[1686854819000000001,1686854830189955965] 1686932677.39s 910kb |L0.?|" + - "**** Simulation run 160, type=split(ReduceOverlap)(split_times=[1686856182783783770]). 1 Input Files, 47mb total:" + - "L0, all files 47mb " + - "L0.1034[1686855892513513501,1686856473054054039] 1686932677.39s|----------------------------------------L0.1034-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 47mb total:" + - "L0, all files 24mb " + - "L0.?[1686855892513513501,1686856182783783770] 1686932677.39s|-------------------L0.?--------------------| " + - "L0.?[1686856182783783771,1686856473054054039] 1686932677.39s |-------------------L0.?-------------------| " + - "**** Simulation run 161, type=split(ReduceOverlap)(split_times=[1686857924405405390]). 1 Input Files, 47mb total:" + - "L0, all files 47mb " + - "L0.1047[1686857634135135121,1686858214675675659] 1686932677.39s|----------------------------------------L0.1047-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 47mb total:" + - "L0, all files 24mb " + - "L0.?[1686857634135135121,1686857924405405390] 1686932677.39s|-------------------L0.?--------------------| " + - "L0.?[1686857924405405391,1686858214675675659] 1686932677.39s |-------------------L0.?-------------------| " + - "**** Simulation run 162, type=split(ReduceOverlap)(split_times=[1686859019000000000]). 1 Input Files, 49mb total:" + - "L0, all files 49mb " + - "L0.1057[1686858795216216201,1686859375756756740] 1686932677.39s|----------------------------------------L0.1057-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 49mb total:" + - "L0 " + - "L0.?[1686858795216216201,1686859019000000000] 1686932677.39s 19mb|--------------L0.?--------------| " + - "L0.?[1686859019000000001,1686859375756756740] 1686932677.39s 30mb |------------------------L0.?-------------------------| " + - "**** Simulation run 163, type=split(ReduceOverlap)(split_times=[1686859499000000000, 1686859666027027010]). 1 Input Files, 49mb total:" + - "L0, all files 49mb " + - "L0.1058[1686859375756756741,1686859956297297279] 1686932677.39s|----------------------------------------L0.1058-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 49mb total:" + - "L0 " + - "L0.?[1686859375756756741,1686859499000000000] 1686932677.39s 10mb|------L0.?-------| " + - "L0.?[1686859499000000001,1686859666027027010] 1686932677.39s 14mb |---------L0.?----------| " + - "L0.?[1686859666027027011,1686859956297297279] 1686932677.39s 25mb |-------------------L0.?-------------------| " + - "**** Simulation run 164, type=split(ReduceOverlap)(split_times=[1686861407648648630]). 1 Input Files, 49mb total:" + - "L0, all files 49mb " + - "L0.1073[1686861117378378361,1686861697918918899] 1686932677.39s|----------------------------------------L0.1073-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 49mb total:" + - "L0 " + - "L0.?[1686861117378378361,1686861407648648630] 1686932677.39s 25mb|-------------------L0.?--------------------| " + - "L0.?[1686861407648648631,1686861697918918899] 1686932677.39s 25mb |-------------------L0.?-------------------| " + - "**** Simulation run 165, type=split(ReduceOverlap)(split_times=[1686863149270270250]). 1 Input Files, 49mb total:" + - "L0, all files 49mb " + - "L0.1082[1686862858999999981,1686863439540540519] 1686932677.39s|----------------------------------------L0.1082-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 49mb total:" + - "L0 " + - "L0.?[1686862858999999981,1686863149270270250] 1686932677.39s 25mb|-------------------L0.?--------------------| " + - "L0.?[1686863149270270251,1686863439540540519] 1686932677.39s 25mb |-------------------L0.?-------------------| " + - "**** Simulation run 166, type=split(ReduceOverlap)(split_times=[1686863699000000000]). 1 Input Files, 48mb total:" + - "L0, all files 48mb " + - "L0.995[1686863453232754879,1686864020081081060] 1686932677.39s|-----------------------------------------L0.995-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 48mb total:" + - "L0 " + - "L0.?[1686863453232754879,1686863699000000000] 1686932677.39s 21mb|----------------L0.?-----------------| " + - "L0.?[1686863699000000001,1686864020081081060] 1686932677.39s 27mb |----------------------L0.?----------------------| " + - "**** Simulation run 167, type=split(ReduceOverlap)(split_times=[1686866632513513490]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.1005[1686865761702702681,1686867209822490496] 1686932677.39s|----------------------------------------L0.1005-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686865761702702681,1686866632513513490] 1686932677.39s 60mb|------------------------L0.?------------------------| " + - "L0.?[1686866632513513491,1686867209822490496] 1686932677.39s 40mb |--------------L0.?---------------| " + - "**** Simulation run 168, type=split(ReduceOverlap)(split_times=[1686867659000000000, 1686867839000000000, 1686868319000000000]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.1014[1686867503324324301,1686868747944483205] 1686933271.57s|----------------------------------------L0.1014-----------------------------------------|" + - "**** 4 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686867503324324301,1686867659000000000] 1686933271.57s 13mb|--L0.?---| " + - "L0.?[1686867659000000001,1686867839000000000] 1686933271.57s 14mb |---L0.?----| " + - "L0.?[1686867839000000001,1686868319000000000] 1686933271.57s 39mb |--------------L0.?--------------| " + - "L0.?[1686868319000000001,1686868747944483205] 1686933271.57s 34mb |------------L0.?-------------| " + - "**** Simulation run 169, type=split(ReduceOverlap)(split_times=[1686852699540540530]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.968[1686851828729729721,1686853236700974398] 1686934966.48s|-----------------------------------------L0.968-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686851828729729721,1686852699540540530] 1686934966.48s 62mb|------------------------L0.?-------------------------| " + - "L0.?[1686852699540540531,1686853236700974398] 1686934966.48s 38mb |--------------L0.?--------------| " + - "**** Simulation run 170, type=split(ReduceOverlap)(split_times=[1686864890891891870]). 1 Input Files, 94mb total:" + - "L0, all files 94mb " + - "L0.1001[1686864020081081061,1686865413378378356] 1686934966.48s|----------------------------------------L0.1001-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 94mb total:" + - "L0 " + - "L0.?[1686864020081081061,1686864890891891870] 1686934966.48s 58mb|-------------------------L0.?-------------------------| " + - "L0.?[1686864890891891871,1686865413378378356] 1686934966.48s 35mb |-------------L0.?--------------| " + - "**** Simulation run 171, type=split(ReduceOverlap)(split_times=[1686854441162162150, 1686854819000000000]). 1 Input Files, 94mb total:" + - "L0, all files 94mb " + - "L0.974[1686853570351351341,1686854963648648636] 1686935546.05s|-----------------------------------------L0.974-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 94mb total:" + - "L0 " + - "L0.?[1686853570351351341,1686854441162162150] 1686935546.05s 59mb|-------------------------L0.?-------------------------| " + - "L0.?[1686854441162162151,1686854819000000000] 1686935546.05s 26mb |---------L0.?---------| " + - "L0.?[1686854819000000001,1686854963648648636] 1686935546.05s 10mb |-L0.?--| " + - "**** Simulation run 172, type=split(ReduceOverlap)(split_times=[1686856182783783770]). 1 Input Files, 46mb total:" + - "L0, all files 46mb " + - "L0.1037[1686855892513513501,1686856473054054039] 1686935742.51s|----------------------------------------L0.1037-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 46mb total:" + - "L0, all files 23mb " + - "L0.?[1686855892513513501,1686856182783783770] 1686935742.51s|-------------------L0.?--------------------| " + - "L0.?[1686856182783783771,1686856473054054039] 1686935742.51s |-------------------L0.?-------------------| " + - "**** Simulation run 173, type=split(ReduceOverlap)(split_times=[1686842249810810810]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.938[1686841379000000000,1686842593136179151] 1686935947.46s|-----------------------------------------L0.938-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686841379000000000,1686842249810810810] 1686935947.46s 72mb|-----------------------------L0.?-----------------------------| " + - "L0.?[1686842249810810811,1686842593136179151] 1686935947.46s 28mb |---------L0.?----------| " + - "**** Simulation run 174, type=split(ReduceOverlap)(split_times=[1686843991432432430]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.943[1686843120621621621,1686844334757800771] 1686935947.46s|-----------------------------------------L0.943-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686843120621621621,1686843991432432430] 1686935947.46s 72mb|-----------------------------L0.?-----------------------------| " + - "L0.?[1686843991432432431,1686844334757800771] 1686935947.46s 28mb |---------L0.?----------| " + - "**** Simulation run 175, type=split(ReduceOverlap)(split_times=[1686845579000000000, 1686845733054054050]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.948[1686844862243243241,1686846076379422391] 1686935947.46s|-----------------------------------------L0.948-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686844862243243241,1686845579000000000] 1686935947.46s 59mb|-----------------------L0.?------------------------| " + - "L0.?[1686845579000000001,1686845733054054050] 1686935947.46s 13mb |--L0.?---| " + - "L0.?[1686845733054054051,1686846076379422391] 1686935947.46s 28mb |---------L0.?----------| " + - "**** Simulation run 176, type=split(ReduceOverlap)(split_times=[1686847474675675670]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.952[1686846603864864861,1686847818001044011] 1686935947.46s|-----------------------------------------L0.952-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686846603864864861,1686847474675675670] 1686935947.46s 72mb|-----------------------------L0.?-----------------------------| " + - "L0.?[1686847474675675671,1686847818001044011] 1686935947.46s 28mb |---------L0.?----------| " + - "**** Simulation run 177, type=split(ReduceOverlap)(split_times=[1686849216297297290]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.957[1686848345486486481,1686849568759166090] 1686935947.46s|-----------------------------------------L0.957-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686848345486486481,1686849216297297290] 1686935947.46s 71mb|-----------------------------L0.?-----------------------------| " + - "L0.?[1686849216297297291,1686849568759166090] 1686935947.46s 29mb |---------L0.?----------| " + - "**** Simulation run 178, type=split(ReduceOverlap)(split_times=[1686849779000000000]). 1 Input Files, 42mb total:" + - "L0, all files 42mb " + - "L0.958[1686849568759166091,1686850087108108100] 1686935947.46s|-----------------------------------------L0.958-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 42mb total:" + - "L0 " + - "L0.?[1686849568759166091,1686849779000000000] 1686935947.46s 17mb|---------------L0.?---------------| " + - "L0.?[1686849779000000001,1686850087108108100] 1686935947.46s 25mb |-----------------------L0.?------------------------| " + - "**** Simulation run 179, type=split(ReduceOverlap)(split_times=[1686850559000000000, 1686850957918918910]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.962[1686850087108108101,1686851301244287251] 1686935947.46s|-----------------------------------------L0.962-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686850087108108101,1686850559000000000] 1686935947.46s 39mb|--------------L0.?--------------| " + - "L0.?[1686850559000000001,1686850957918918910] 1686935947.46s 33mb |-----------L0.?------------| " + - "L0.?[1686850957918918911,1686851301244287251] 1686935947.46s 28mb |---------L0.?----------| " + - "**** Simulation run 180, type=split(ReduceOverlap)(split_times=[1686857924405405390]). 1 Input Files, 48mb total:" + - "L0, all files 48mb " + - "L0.1050[1686857634135135121,1686858214675675659] 1686935947.46s|----------------------------------------L0.1050-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 48mb total:" + - "L0, all files 24mb " + - "L0.?[1686857634135135121,1686857924405405390] 1686935947.46s|-------------------L0.?--------------------| " + - "L0.?[1686857924405405391,1686858214675675659] 1686935947.46s |-------------------L0.?-------------------| " + - "**** Simulation run 181, type=split(ReduceOverlap)(split_times=[1686859019000000000]). 1 Input Files, 49mb total:" + - "L0, all files 49mb " + - "L0.1060[1686858795216216201,1686859375756756740] 1686935947.46s|----------------------------------------L0.1060-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 49mb total:" + - "L0 " + - "L0.?[1686858795216216201,1686859019000000000] 1686935947.46s 19mb|--------------L0.?--------------| " + - "L0.?[1686859019000000001,1686859375756756740] 1686935947.46s 30mb |------------------------L0.?-------------------------| " + - "**** Simulation run 182, type=split(ReduceOverlap)(split_times=[1686859499000000000, 1686859666027027010]). 1 Input Files, 49mb total:" + - "L0, all files 49mb " + - "L0.1061[1686859375756756741,1686859956297297279] 1686935947.46s|----------------------------------------L0.1061-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 49mb total:" + - "L0 " + - "L0.?[1686859375756756741,1686859499000000000] 1686935947.46s 10mb|------L0.?-------| " + - "L0.?[1686859499000000001,1686859666027027010] 1686935947.46s 14mb |---------L0.?----------| " + - "L0.?[1686859666027027011,1686859956297297279] 1686935947.46s 24mb |-------------------L0.?-------------------| " + - "**** Simulation run 183, type=split(ReduceOverlap)(split_times=[1686861407648648630]). 1 Input Files, 49mb total:" + - "L0, all files 49mb " + - "L0.1076[1686861117378378361,1686861697918918899] 1686935947.46s|----------------------------------------L0.1076-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 49mb total:" + - "L0, all files 24mb " + - "L0.?[1686861117378378361,1686861407648648630] 1686935947.46s|-------------------L0.?--------------------| " + - "L0.?[1686861407648648631,1686861697918918899] 1686935947.46s |-------------------L0.?-------------------| " + - "**** Simulation run 184, type=split(ReduceOverlap)(split_times=[1686863149270270250]). 1 Input Files, 46mb total:" + - "L0, all files 46mb " + - "L0.1085[1686862858999999981,1686863439540540519] 1686935947.46s|----------------------------------------L0.1085-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 46mb total:" + - "L0, all files 23mb " + - "L0.?[1686862858999999981,1686863149270270250] 1686935947.46s|-------------------L0.?--------------------| " + - "L0.?[1686863149270270251,1686863439540540519] 1686935947.46s |-------------------L0.?-------------------| " + - "**** Simulation run 185, type=split(ReduceOverlap)(split_times=[1686863699000000000]). 1 Input Files, 39mb total:" + - "L0, all files 39mb " + - "L0.997[1686863528879205202,1686864020081081060] 1686935947.46s|-----------------------------------------L0.997-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 39mb total:" + - "L0 " + - "L0.?[1686863528879205202,1686863699000000000] 1686935947.46s 14mb|------------L0.?-------------| " + - "L0.?[1686863699000000001,1686864020081081060] 1686935947.46s 26mb |--------------------------L0.?--------------------------| " + - "**** Simulation run 186, type=split(ReduceOverlap)(split_times=[1686866632513513490]). 1 Input Files, 95mb total:" + - "L0, all files 95mb " + - "L0.1011[1686865761702702681,1686867154999999976] 1686935947.46s|----------------------------------------L0.1011-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 95mb total:" + - "L0 " + - "L0.?[1686865761702702681,1686866632513513490] 1686935947.46s 59mb|-------------------------L0.?-------------------------| " + - "L0.?[1686866632513513491,1686867154999999976] 1686935947.46s 36mb |-------------L0.?--------------| " + - "**** Simulation run 187, type=split(ReduceOverlap)(split_times=[1686867659000000000, 1686867839000000000, 1686868319000000000]). 1 Input Files, 93mb total:" + - "L0, all files 93mb " + - "L0.1016[1686867503324324301,1686868896621621596] 1686935947.46s|----------------------------------------L0.1016-----------------------------------------|" + - "**** 4 Output Files (parquet_file_id not yet assigned), 93mb total:" + - "L0 " + - "L0.?[1686867503324324301,1686867659000000000] 1686935947.46s 10mb|--L0.?--| " + - "L0.?[1686867659000000001,1686867839000000000] 1686935947.46s 12mb |--L0.?---| " + - "L0.?[1686867839000000001,1686868319000000000] 1686935947.46s 32mb |------------L0.?-------------| " + - "L0.?[1686868319000000001,1686868896621621596] 1686935947.46s 38mb |---------------L0.?----------------| " + - "**** Simulation run 188, type=split(ReduceOverlap)(split_times=[1686842249810810810]). 1 Input Files, 6mb total:" + - "L0, all files 6mb " + - "L0.940[1686841379000000000,1686843120621621620] 1686936871.55s|-----------------------------------------L0.940-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 6mb total:" + - "L0, all files 3mb " + - "L0.?[1686841379000000000,1686842249810810810] 1686936871.55s|-------------------L0.?--------------------| " + - "L0.?[1686842249810810811,1686843120621621620] 1686936871.55s |-------------------L0.?-------------------| " + - "**** Simulation run 189, type=split(ReduceOverlap)(split_times=[1686843991432432430]). 1 Input Files, 6mb total:" + - "L0, all files 6mb " + - "L0.945[1686843120621621621,1686844862243243240] 1686936871.55s|-----------------------------------------L0.945-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 6mb total:" + - "L0 " + - "L0.?[1686843120621621621,1686843991432432430] 1686936871.55s 3mb|-------------------L0.?-------------------| " + - "L0.?[1686843991432432431,1686844862243243240] 1686936871.55s 3mb |-------------------L0.?-------------------| " + - "**** Simulation run 190, type=split(ReduceOverlap)(split_times=[1686845579000000000, 1686845733054054050]). 1 Input Files, 6mb total:" + - "L0, all files 6mb " + - "L0.964[1686844862243243241,1686846603864864860] 1686936871.55s|-----------------------------------------L0.964-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 6mb total:" + - "L0 " + - "L0.?[1686844862243243241,1686845579000000000] 1686936871.55s 2mb|---------------L0.?----------------| " + - "L0.?[1686845579000000001,1686845733054054050] 1686936871.55s 510kb |L0.?-| " + - "L0.?[1686845733054054051,1686846603864864860] 1686936871.55s 3mb |-------------------L0.?-------------------| " + - "**** Simulation run 191, type=split(ReduceOverlap)(split_times=[1686847474675675670]). 1 Input Files, 6mb total:" + - "L0, all files 6mb " + - "L0.954[1686846603864864861,1686848345486486480] 1686936871.55s|-----------------------------------------L0.954-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 6mb total:" + - "L0 " + - "L0.?[1686846603864864861,1686847474675675670] 1686936871.55s 3mb|-------------------L0.?-------------------| " + - "L0.?[1686847474675675671,1686848345486486480] 1686936871.55s 3mb |-------------------L0.?-------------------| " + - "**** Simulation run 192, type=split(ReduceOverlap)(split_times=[1686849216297297290, 1686849779000000000]). 1 Input Files, 11mb total:" + - "L0, all files 11mb " + - "L0.959[1686848345486486481,1686850087108108100] 1686936871.55s|-----------------------------------------L0.959-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 11mb total:" + - "L0 " + - "L0.?[1686848345486486481,1686849216297297290] 1686936871.55s 6mb|-------------------L0.?-------------------| " + - "L0.?[1686849216297297291,1686849779000000000] 1686936871.55s 4mb |-----------L0.?------------| " + - "L0.?[1686849779000000001,1686850087108108100] 1686936871.55s 2mb |----L0.?-----| " + - "**** Simulation run 193, type=split(ReduceOverlap)(split_times=[1686850559000000000, 1686850957918918910]). 1 Input Files, 6mb total:" + - "L0, all files 6mb " + - "L0.965[1686850087108108101,1686851828729729720] 1686936871.55s|-----------------------------------------L0.965-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 6mb total:" + - "L0 " + - "L0.?[1686850087108108101,1686850559000000000] 1686936871.55s 2mb|---------L0.?---------| " + - "L0.?[1686850559000000001,1686850957918918910] 1686936871.55s 1mb |-------L0.?-------| " + - "L0.?[1686850957918918911,1686851828729729720] 1686936871.55s 3mb |-------------------L0.?-------------------| " + - "**** Simulation run 194, type=split(ReduceOverlap)(split_times=[1686852699540540530]). 1 Input Files, 55mb total:" + - "L0, all files 55mb " + - "L0.970[1686851828729729721,1686853222027027016] 1686936871.55s|-----------------------------------------L0.970-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 55mb total:" + - "L0 " + - "L0.?[1686851828729729721,1686852699540540530] 1686936871.55s 34mb|-------------------------L0.?-------------------------| " + - "L0.?[1686852699540540531,1686853222027027016] 1686936871.55s 21mb |-------------L0.?--------------| " + - "**** Simulation run 195, type=split(ReduceOverlap)(split_times=[1686854441162162150, 1686854819000000000]). 1 Input Files, 29mb total:" + - "L0, all files 29mb " + - "L0.976[1686853570351351341,1686854963648648636] 1686936871.55s|-----------------------------------------L0.976-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 29mb total:" + - "L0 " + - "L0.?[1686853570351351341,1686854441162162150] 1686936871.55s 18mb|-------------------------L0.?-------------------------| " + - "L0.?[1686854441162162151,1686854819000000000] 1686936871.55s 8mb |---------L0.?---------| " + - "L0.?[1686854819000000001,1686854963648648636] 1686936871.55s 3mb |-L0.?--| " + - "**** Simulation run 196, type=split(ReduceOverlap)(split_times=[1686856182783783770]). 1 Input Files, 6mb total:" + - "L0, all files 6mb " + - "L0.1040[1686855892513513501,1686856473054054039] 1686936871.55s|----------------------------------------L0.1040-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 6mb total:" + - "L0 " + - "L0.?[1686855892513513501,1686856182783783770] 1686936871.55s 3mb|-------------------L0.?--------------------| " + - "L0.?[1686856182783783771,1686856473054054039] 1686936871.55s 3mb |-------------------L0.?-------------------| " + - "**** Simulation run 197, type=split(ReduceOverlap)(split_times=[1686857924405405390]). 1 Input Files, 4mb total:" + - "L0, all files 4mb " + - "L0.1053[1686857634135135121,1686858214675675659] 1686936871.55s|----------------------------------------L0.1053-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" + - "L0, all files 2mb " + - "L0.?[1686857634135135121,1686857924405405390] 1686936871.55s|-------------------L0.?--------------------| " + - "L0.?[1686857924405405391,1686858214675675659] 1686936871.55s |-------------------L0.?-------------------| " + - "**** Simulation run 198, type=split(ReduceOverlap)(split_times=[1686859019000000000]). 1 Input Files, 2mb total:" + - "L0, all files 2mb " + - "L0.1063[1686858795216216201,1686859375756756740] 1686936871.55s|----------------------------------------L0.1063-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" + - "L0 " + - "L0.?[1686858795216216201,1686859019000000000] 1686936871.55s 741kb|--------------L0.?--------------| " + - "L0.?[1686859019000000001,1686859375756756740] 1686936871.55s 1mb |------------------------L0.?-------------------------| " + - "**** Simulation run 199, type=split(ReduceOverlap)(split_times=[1686859499000000000, 1686859666027027010]). 1 Input Files, 2mb total:" + - "L0, all files 2mb " + - "L0.1064[1686859375756756741,1686859956297297279] 1686936871.55s|----------------------------------------L0.1064-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 2mb total:" + - "L0 " + - "L0.?[1686859375756756741,1686859499000000000] 1686936871.55s 408kb|------L0.?-------| " + - "L0.?[1686859499000000001,1686859666027027010] 1686936871.55s 553kb |---------L0.?----------| " + - "L0.?[1686859666027027011,1686859956297297279] 1686936871.55s 962kb |-------------------L0.?-------------------| " + - "**** Simulation run 200, type=split(ReduceOverlap)(split_times=[1686861407648648630]). 1 Input Files, 2mb total:" + - "L0, all files 2mb " + - "L0.1079[1686861117378378361,1686861697918918899] 1686936871.55s|----------------------------------------L0.1079-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" + - "L0, all files 962kb " + - "L0.?[1686861117378378361,1686861407648648630] 1686936871.55s|-------------------L0.?--------------------| " + - "L0.?[1686861407648648631,1686861697918918899] 1686936871.55s |-------------------L0.?-------------------| " + - "**** Simulation run 201, type=split(ReduceOverlap)(split_times=[1686863149270270250]). 1 Input Files, 4mb total:" + - "L0, all files 4mb " + - "L0.1088[1686862858999999981,1686863439540540519] 1686936871.55s|----------------------------------------L0.1088-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" + - "L0, all files 2mb " + - "L0.?[1686862858999999981,1686863149270270250] 1686936871.55s|-------------------L0.?--------------------| " + - "L0.?[1686863149270270251,1686863439540540519] 1686936871.55s |-------------------L0.?-------------------| " + - "**** Simulation run 202, type=split(ReduceOverlap)(split_times=[1686863699000000000]). 1 Input Files, 4mb total:" + - "L0, all files 4mb " + - "L0.1089[1686863439540540520,1686864020081081060] 1686936871.55s|----------------------------------------L0.1089-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" + - "L0 " + - "L0.?[1686863439540540520,1686863699000000000] 1686936871.55s 2mb|-----------------L0.?-----------------| " + - "L0.?[1686863699000000001,1686864020081081060] 1686936871.55s 2mb |---------------------L0.?----------------------| " + - "**** Simulation run 203, type=split(ReduceOverlap)(split_times=[1686864890891891870]). 1 Input Files, 44mb total:" + - "L0, all files 44mb " + - "L0.1003[1686864020081081061,1686865413378378356] 1686936871.55s|----------------------------------------L0.1003-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 44mb total:" + - "L0 " + - "L0.?[1686864020081081061,1686864890891891870] 1686936871.55s 27mb|-------------------------L0.?-------------------------| " + - "L0.?[1686864890891891871,1686865413378378356] 1686936871.55s 16mb |-------------L0.?--------------| " + - "**** Simulation run 204, type=split(ReduceOverlap)(split_times=[1686866632513513490]). 1 Input Files, 11mb total:" + - "L0, all files 11mb " + - "L0.1013[1686865761702702681,1686867503324324300] 1686936871.55s|----------------------------------------L0.1013-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 11mb total:" + - "L0 " + - "L0.?[1686865761702702681,1686866632513513490] 1686936871.55s 6mb|-------------------L0.?-------------------| " + - "L0.?[1686866632513513491,1686867503324324300] 1686936871.55s 6mb |-------------------L0.?-------------------| " + - "**** Simulation run 205, type=split(ReduceOverlap)(split_times=[1686867659000000000, 1686867839000000000, 1686868319000000000]). 1 Input Files, 17mb total:" + - "L0, all files 17mb " + - "L0.1018[1686867503324324301,1686869244945945920] 1686936871.55s|----------------------------------------L0.1018-----------------------------------------|" + - "**** 4 Output Files (parquet_file_id not yet assigned), 17mb total:" + - "L0 " + - "L0.?[1686867503324324301,1686867659000000000] 1686936871.55s 1mb|-L0.?-| " + - "L0.?[1686867659000000001,1686867839000000000] 1686936871.55s 2mb |-L0.?--| " + - "L0.?[1686867839000000001,1686868319000000000] 1686936871.55s 5mb |---------L0.?---------| " + - "L0.?[1686868319000000001,1686869244945945920] 1686936871.55s 9mb |--------------------L0.?---------------------| " + - "Committing partition 1:" + - " Soft Deleting 56 files: L0.936, L0.938, L0.940, L0.941, L0.943, L0.945, L0.946, L0.948, L0.950, L0.952, L0.954, L0.955, L0.956, L0.957, L0.958, L0.959, L0.960, L0.962, L0.964, L0.965, L0.966, L0.968, L0.970, L0.972, L0.974, L0.976, L0.995, L0.997, L0.999, L0.1001, L0.1003, L0.1005, L0.1011, L0.1013, L0.1014, L0.1016, L0.1018, L0.1034, L0.1037, L0.1040, L0.1047, L0.1050, L0.1053, L0.1057, L0.1058, L0.1060, L0.1061, L0.1063, L0.1064, L0.1073, L0.1076, L0.1079, L0.1082, L0.1085, L0.1088, L0.1089" + - " Creating 131 files" + - "**** Simulation run 206, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686858240168622590, 1686864651607515459]). 36 Input Files, 217mb total:" + - "L0 " + - "L0.1096[1686851828729729721,1686852699540540530] 1686931600.58s 51mb|L0.1096| " + - "L0.1097[1686852699540540531,1686853222027027016] 1686931600.58s 31mb |L0.1097| " + - "L0.967[1686853222027027017,1686853570351351340] 1686931600.58s 20mb |L0.967| " + - "L0.1098[1686864020081081061,1686864890891891870] 1686931893.7s 49mb |L0.1098| " + - "L0.1099[1686864890891891871,1686865413378378356] 1686931893.7s 29mb |L0.1099|" + - "L0.1000[1686865413378378357,1686865761702702680] 1686931893.7s 20mb |L0.1000|" + - "L1 " + - "L1.434[1686851828729729721,1686852699540540530] 1686928854.57s 1mb|L1.434| " + - "L1.435[1686852699540540531,1686853570351351340] 1686928854.57s 1mb |L1.435| " + - "L1.436[1686853570351351341,1686854441162162150] 1686928854.57s 1mb |L1.436| " + - "L1.437[1686854441162162151,1686854819000000000] 1686928854.57s 490kb |L1.437| " + - "L1.655[1686854879000000000,1686855311972972960] 1686928854.57s 556kb |L1.655| " + - "L1.1031[1686855311972972961,1686855892513513500] 1686928854.57s 746kb |L1.1031| " + - "L1.1032[1686855892513513501,1686856182783783770] 1686928854.57s 373kb |L1.1032| " + - "L1.1042[1686856182783783771,1686856473054054039] 1686928854.57s 373kb |L1.1042| " + - "L1.1043[1686856473054054040,1686857053594594580] 1686928854.57s 746kb |L1.1043| " + - "L1.1044[1686857053594594581,1686857634135135120] 1686928854.57s 746kb |L1.1044| " + - "L1.1045[1686857634135135121,1686857924405405390] 1686928854.57s 373kb |L1.1045| " + - "L1.1055[1686857924405405391,1686858214675675659] 1686928854.57s 373kb |L1.1055| " + - "L1.1056[1686858214675675660,1686858795216216200] 1686928854.57s 746kb |L1.1056| " + - "L1.660[1686858795216216201,1686859019000000000] 1686928854.57s 287kb |L1.660| " + - "L1.1066[1686859079000000000,1686859375756756740] 1686928854.57s 409kb |L1.1066| " + - "L1.1067[1686859375756756741,1686859499000000000] 1686928854.57s 170kb |L1.1067| " + - "L1.739[1686859559000000000,1686859666027027010] 1686928854.57s 137kb |L1.739| " + - "L1.1068[1686859666027027011,1686859956297297279] 1686928854.57s 371kb |L1.1068| " + - "L1.1069[1686859956297297280,1686860536837837820] 1686928854.57s 743kb |L1.1069| " + - "L1.1070[1686860536837837821,1686861117378378360] 1686928854.57s 743kb |L1.1070| " + - "L1.1071[1686861117378378361,1686861407648648630] 1686928854.57s 371kb |L1.1071| " + - "L1.1092[1686861407648648631,1686861697918918899] 1686928854.57s 371kb |L1.1092| " + - "L1.1093[1686861697918918900,1686862278459459440] 1686928854.57s 743kb |L1.1093| " + - "L1.1094[1686862278459459441,1686862858999999980] 1686928854.57s 743kb |L1.1094| " + - "L1.1095[1686862858999999981,1686863149270270250] 1686928854.57s 371kb |L1.1095| " + - "L1.1090[1686863149270270251,1686863439540540519] 1686928854.57s 371kb |L1.1090| " + - "L1.1091[1686863439540540520,1686863699000000000] 1686928854.57s 332kb |L1.1091| " + - "L1.758[1686863759000000000,1686864020081081060] 1686928854.57s 329kb |L1.758| " + - "L1.759[1686864020081081061,1686864890891891870] 1686928854.57s 1mb |L1.759| " + - "L1.760[1686864890891891871,1686865761702702680] 1686928854.57s 1mb |L1.760|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 217mb total:" + - "L1 " + - "L1.?[1686851828729729721,1686858240168622590] 1686931893.7s 100mb|-----------------L1.?------------------| " + - "L1.?[1686858240168622591,1686864651607515459] 1686931893.7s 100mb |-----------------L1.?------------------| " + - "L1.?[1686864651607515460,1686865761702702680] 1686931893.7s 17mb |L1.?-| " + - "Committing partition 1:" + - " Soft Deleting 36 files: L1.434, L1.435, L1.436, L1.437, L1.655, L1.660, L1.739, L1.758, L1.759, L1.760, L0.967, L0.1000, L1.1031, L1.1032, L1.1042, L1.1043, L1.1044, L1.1045, L1.1055, L1.1056, L1.1066, L1.1067, L1.1068, L1.1069, L1.1070, L1.1071, L1.1090, L1.1091, L1.1092, L1.1093, L1.1094, L1.1095, L0.1096, L0.1097, L0.1098, L0.1099" + - " Creating 3 files" + - "**** Simulation run 207, type=split(HighL0OverlapTotalBacklog)(split_times=[1686852757594594584, 1686853686459459447, 1686854615324324310, 1686855544189189173, 1686856473054054036, 1686857401918918899]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1227[1686851828729729721,1686858240168622590] 1686931893.7s|----------------------------------------L1.1227-----------------------------------------|" + - "**** 7 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686851828729729721,1686852757594594584] 1686931893.7s 14mb|---L1.?----| " + - "L1.?[1686852757594594585,1686853686459459447] 1686931893.7s 14mb |---L1.?----| " + - "L1.?[1686853686459459448,1686854615324324310] 1686931893.7s 14mb |---L1.?----| " + - "L1.?[1686854615324324311,1686855544189189173] 1686931893.7s 14mb |---L1.?----| " + - "L1.?[1686855544189189174,1686856473054054036] 1686931893.7s 14mb |---L1.?----| " + - "L1.?[1686856473054054037,1686857401918918899] 1686931893.7s 14mb |---L1.?----| " + - "L1.?[1686857401918918900,1686858240168622590] 1686931893.7s 13mb |--L1.?---| " + - "**** Simulation run 208, type=split(HighL0OverlapTotalBacklog)(split_times=[1686852757594594584]). 1 Input Files, 38mb total:" + - "L0, all files 38mb " + - "L0.1141[1686852699540540531,1686853236700974398] 1686934966.48s|----------------------------------------L0.1141-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 38mb total:" + - "L0 " + - "L0.?[1686852699540540531,1686852757594594584] 1686934966.48s 4mb|-L0.?--| " + - "L0.?[1686852757594594585,1686853236700974398] 1686934966.48s 34mb |-------------------------------------L0.?-------------------------------------| " + - "**** Simulation run 209, type=split(HighL0OverlapTotalBacklog)(split_times=[1686852757594594584]). 1 Input Files, 21mb total:" + - "L0, all files 21mb " + - "L0.1200[1686852699540540531,1686853222027027016] 1686936871.55s|----------------------------------------L0.1200-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 21mb total:" + - "L0 " + - "L0.?[1686852699540540531,1686852757594594584] 1686936871.55s 2mb|-L0.?--| " + - "L0.?[1686852757594594585,1686853222027027016] 1686936871.55s 18mb |------------------------------------L0.?-------------------------------------| " + - "**** Simulation run 210, type=split(HighL0OverlapTotalBacklog)(split_times=[1686853686459459447]). 1 Input Files, 69mb total:" + - "L0, all files 69mb " + - "L0.1116[1686853570351351341,1686854441162162150] 1686932677.39s|----------------------------------------L0.1116-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 69mb total:" + - "L0 " + - "L0.?[1686853570351351341,1686853686459459447] 1686932677.39s 9mb|--L0.?---| " + - "L0.?[1686853686459459448,1686854441162162150] 1686932677.39s 60mb |------------------------------------L0.?------------------------------------| " + - "**** Simulation run 211, type=split(HighL0OverlapTotalBacklog)(split_times=[1686853686459459447]). 1 Input Files, 59mb total:" + - "L0, all files 59mb " + - "L0.1144[1686853570351351341,1686854441162162150] 1686935546.05s|----------------------------------------L0.1144-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 59mb total:" + - "L0 " + - "L0.?[1686853570351351341,1686853686459459447] 1686935546.05s 8mb|--L0.?---| " + - "L0.?[1686853686459459448,1686854441162162150] 1686935546.05s 51mb |------------------------------------L0.?------------------------------------| " + - "**** Simulation run 212, type=split(HighL0OverlapTotalBacklog)(split_times=[1686853686459459447]). 1 Input Files, 18mb total:" + - "L0, all files 18mb " + - "L0.1201[1686853570351351341,1686854441162162150] 1686936871.55s|----------------------------------------L0.1201-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 18mb total:" + - "L0 " + - "L0.?[1686853570351351341,1686853686459459447] 1686936871.55s 2mb|--L0.?---| " + - "L0.?[1686853686459459448,1686854441162162150] 1686936871.55s 16mb |------------------------------------L0.?------------------------------------| " + - "**** Simulation run 213, type=split(HighL0OverlapTotalBacklog)(split_times=[1686854615324324310]). 1 Input Files, 30mb total:" + - "L0, all files 30mb " + - "L0.1117[1686854441162162151,1686854819000000000] 1686932677.39s|----------------------------------------L0.1117-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 30mb total:" + - "L0 " + - "L0.?[1686854441162162151,1686854615324324310] 1686932677.39s 14mb|-----------------L0.?------------------| " + - "L0.?[1686854615324324311,1686854819000000000] 1686932677.39s 16mb |---------------------L0.?---------------------| " + - "**** Simulation run 214, type=split(HighL0OverlapTotalBacklog)(split_times=[1686854615324324310]). 1 Input Files, 26mb total:" + - "L0, all files 26mb " + - "L0.1145[1686854441162162151,1686854819000000000] 1686935546.05s|----------------------------------------L0.1145-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 26mb total:" + - "L0 " + - "L0.?[1686854441162162151,1686854615324324310] 1686935546.05s 12mb|-----------------L0.?------------------| " + - "L0.?[1686854615324324311,1686854819000000000] 1686935546.05s 14mb |---------------------L0.?---------------------| " + - "**** Simulation run 215, type=split(HighL0OverlapTotalBacklog)(split_times=[1686854615324324310]). 1 Input Files, 8mb total:" + - "L0, all files 8mb " + - "L0.1202[1686854441162162151,1686854819000000000] 1686936871.55s|----------------------------------------L0.1202-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 8mb total:" + - "L0 " + - "L0.?[1686854441162162151,1686854615324324310] 1686936871.55s 4mb|-----------------L0.?------------------| " + - "L0.?[1686854615324324311,1686854819000000000] 1686936871.55s 4mb |---------------------L0.?---------------------| " + - "**** Simulation run 216, type=split(HighL0OverlapTotalBacklog)(split_times=[1686855544189189173]). 1 Input Files, 47mb total:" + - "L0, all files 47mb " + - "L0.1033[1686855311972972961,1686855892513513500] 1686932677.39s|----------------------------------------L0.1033-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 47mb total:" + - "L0 " + - "L0.?[1686855311972972961,1686855544189189173] 1686932677.39s 19mb|--------------L0.?---------------| " + - "L0.?[1686855544189189174,1686855892513513500] 1686932677.39s 28mb |------------------------L0.?------------------------| " + - "**** Simulation run 217, type=split(HighL0OverlapTotalBacklog)(split_times=[1686855544189189173]). 1 Input Files, 46mb total:" + - "L0, all files 46mb " + - "L0.1036[1686855311972972961,1686855892513513500] 1686935742.51s|----------------------------------------L0.1036-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 46mb total:" + - "L0 " + - "L0.?[1686855311972972961,1686855544189189173] 1686935742.51s 19mb|--------------L0.?---------------| " + - "L0.?[1686855544189189174,1686855892513513500] 1686935742.51s 28mb |------------------------L0.?------------------------| " + - "**** Simulation run 218, type=split(HighL0OverlapTotalBacklog)(split_times=[1686855544189189173]). 1 Input Files, 6mb total:" + - "L0, all files 6mb " + - "L0.1039[1686855311972972961,1686855892513513500] 1686936871.55s|----------------------------------------L0.1039-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 6mb total:" + - "L0 " + - "L0.?[1686855311972972961,1686855544189189173] 1686936871.55s 2mb|--------------L0.?---------------| " + - "L0.?[1686855544189189174,1686855892513513500] 1686936871.55s 3mb |------------------------L0.?------------------------| " + - "**** Simulation run 219, type=split(HighL0OverlapTotalBacklog)(split_times=[1686856473054054036]). 1 Input Files, 24mb total:" + - "L0, all files 24mb " + - "L0.1120[1686856182783783771,1686856473054054039] 1686932677.39s|----------------------------------------L0.1120-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 24mb total:" + - "L0 " + - "L0.?[1686856182783783771,1686856473054054036] 1686932677.39s 24mb|-----------------------------------------L0.?------------------------------------------| " + - "L0.?[1686856473054054037,1686856473054054039] 1686932677.39s 1b |L0.?|" + - "**** Simulation run 220, type=split(HighL0OverlapTotalBacklog)(split_times=[1686856473054054036]). 1 Input Files, 23mb total:" + - "L0, all files 23mb " + - "L0.1148[1686856182783783771,1686856473054054039] 1686935742.51s|----------------------------------------L0.1148-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 23mb total:" + - "L0 " + - "L0.?[1686856182783783771,1686856473054054036] 1686935742.51s 23mb|-----------------------------------------L0.?------------------------------------------| " + - "L0.?[1686856473054054037,1686856473054054039] 1686935742.51s 1b |L0.?|" + - "**** Simulation run 221, type=split(HighL0OverlapTotalBacklog)(split_times=[1686856473054054036]). 1 Input Files, 3mb total:" + - "L0, all files 3mb " + - "L0.1205[1686856182783783771,1686856473054054039] 1686936871.55s|----------------------------------------L0.1205-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" + - "L0 " + - "L0.?[1686856182783783771,1686856473054054036] 1686936871.55s 3mb|-----------------------------------------L0.?------------------------------------------| " + - "L0.?[1686856473054054037,1686856473054054039] 1686936871.55s 1b |L0.?|" + - "**** Simulation run 222, type=split(HighL0OverlapTotalBacklog)(split_times=[1686857401918918899]). 1 Input Files, 47mb total:" + - "L0, all files 47mb " + - "L0.1046[1686857053594594581,1686857634135135120] 1686932677.39s|----------------------------------------L0.1046-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 47mb total:" + - "L0 " + - "L0.?[1686857053594594581,1686857401918918899] 1686932677.39s 28mb|-----------------------L0.?------------------------| " + - "L0.?[1686857401918918900,1686857634135135120] 1686932677.39s 19mb |---------------L0.?---------------| " + - "**** Simulation run 223, type=split(HighL0OverlapTotalBacklog)(split_times=[1686857401918918899]). 1 Input Files, 48mb total:" + - "L0, all files 48mb " + - "L0.1049[1686857053594594581,1686857634135135120] 1686935947.46s|----------------------------------------L0.1049-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 48mb total:" + - "L0 " + - "L0.?[1686857053594594581,1686857401918918899] 1686935947.46s 29mb|-----------------------L0.?------------------------| " + - "L0.?[1686857401918918900,1686857634135135120] 1686935947.46s 19mb |---------------L0.?---------------| " + - "**** Simulation run 224, type=split(HighL0OverlapTotalBacklog)(split_times=[1686857401918918899]). 1 Input Files, 4mb total:" + - "L0, all files 4mb " + - "L0.1052[1686857053594594581,1686857634135135120] 1686936871.55s|----------------------------------------L0.1052-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" + - "L0 " + - "L0.?[1686857053594594581,1686857401918918899] 1686936871.55s 2mb|-----------------------L0.?------------------------| " + - "L0.?[1686857401918918900,1686857634135135120] 1686936871.55s 2mb |---------------L0.?---------------| " + - "**** Simulation run 225, type=split(HighL0OverlapTotalBacklog)(split_times=[1686858330783783762]). 1 Input Files, 4mb total:" + - "L0, all files 4mb " + - "L0.1054[1686858214675675660,1686858795216216200] 1686936871.55s|----------------------------------------L0.1054-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" + - "L0 " + - "L0.?[1686858214675675660,1686858330783783762] 1686936871.55s 782kb|-----L0.?------| " + - "L0.?[1686858330783783763,1686858795216216200] 1686936871.55s 3mb |---------------------------------L0.?---------------------------------| " + - "**** Simulation run 226, type=split(HighL0OverlapTotalBacklog)(split_times=[1686858330783783762, 1686859259648648625, 1686860188513513488, 1686861117378378351, 1686862046243243214, 1686862975108108077, 1686863903972972940]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1228[1686858240168622591,1686864651607515459] 1686931893.7s|----------------------------------------L1.1228-----------------------------------------|" + - "**** 8 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686858240168622591,1686858330783783762] 1686931893.7s 1mb|L1.?| " + - "L1.?[1686858330783783763,1686859259648648625] 1686931893.7s 14mb |---L1.?----| " + - "L1.?[1686859259648648626,1686860188513513488] 1686931893.7s 14mb |---L1.?----| " + - "L1.?[1686860188513513489,1686861117378378351] 1686931893.7s 14mb |---L1.?----| " + - "L1.?[1686861117378378352,1686862046243243214] 1686931893.7s 14mb |---L1.?----| " + - "L1.?[1686862046243243215,1686862975108108077] 1686931893.7s 14mb |---L1.?----| " + - "L1.?[1686862975108108078,1686863903972972940] 1686931893.7s 14mb |---L1.?----| " + - "L1.?[1686863903972972941,1686864651607515459] 1686931893.7s 12mb |--L1.?--| " + - "**** Simulation run 227, type=split(HighL0OverlapTotalBacklog)(split_times=[1686858330783783762]). 1 Input Files, 45mb total:" + - "L0, all files 45mb " + - "L0.986[1686858251288003856,1686858795216216200] 1686935947.46s|-----------------------------------------L0.986-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 45mb total:" + - "L0 " + - "L0.?[1686858251288003856,1686858330783783762] 1686935947.46s 7mb|---L0.?----| " + - "L0.?[1686858330783783763,1686858795216216200] 1686935947.46s 39mb |-----------------------------------L0.?-----------------------------------| " + - "**** Simulation run 228, type=split(HighL0OverlapTotalBacklog)(split_times=[1686858330783783762]). 1 Input Files, 42mb total:" + - "L0, all files 42mb " + - "L0.984[1686858278525917086,1686858795216216200] 1686932677.39s|-----------------------------------------L0.984-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 42mb total:" + - "L0 " + - "L0.?[1686858278525917086,1686858330783783762] 1686932677.39s 4mb|-L0.?--| " + - "L0.?[1686858330783783763,1686858795216216200] 1686932677.39s 38mb |-------------------------------------L0.?-------------------------------------| " + - "**** Simulation run 229, type=split(HighL0OverlapTotalBacklog)(split_times=[1686859259648648625]). 1 Input Files, 30mb total:" + - "L0, all files 30mb " + - "L0.1124[1686859019000000001,1686859375756756740] 1686932677.39s|----------------------------------------L0.1124-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 30mb total:" + - "L0 " + - "L0.?[1686859019000000001,1686859259648648625] 1686932677.39s 20mb|---------------------------L0.?---------------------------| " + - "L0.?[1686859259648648626,1686859375756756740] 1686932677.39s 10mb |-----------L0.?------------| " + - "**** Simulation run 230, type=split(HighL0OverlapTotalBacklog)(split_times=[1686859259648648625]). 1 Input Files, 30mb total:" + - "L0, all files 30mb " + - "L0.1168[1686859019000000001,1686859375756756740] 1686935947.46s|----------------------------------------L0.1168-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 30mb total:" + - "L0 " + - "L0.?[1686859019000000001,1686859259648648625] 1686935947.46s 20mb|---------------------------L0.?---------------------------| " + - "L0.?[1686859259648648626,1686859375756756740] 1686935947.46s 10mb |-----------L0.?------------| " + - "**** Simulation run 231, type=split(HighL0OverlapTotalBacklog)(split_times=[1686859259648648625]). 1 Input Files, 1mb total:" + - "L0, all files 1mb " + - "L0.1209[1686859019000000001,1686859375756756740] 1686936871.55s|----------------------------------------L0.1209-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 1mb total:" + - "L0 " + - "L0.?[1686859019000000001,1686859259648648625] 1686936871.55s 797kb|---------------------------L0.?---------------------------| " + - "L0.?[1686859259648648626,1686859375756756740] 1686936871.55s 385kb |-----------L0.?------------| " + - "**** Simulation run 232, type=split(HighL0OverlapTotalBacklog)(split_times=[1686860188513513488]). 1 Input Files, 2mb total:" + - "L0, all files 2mb " + - "L0.1065[1686859956297297280,1686860536837837820] 1686936871.55s|----------------------------------------L0.1065-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" + - "L0 " + - "L0.?[1686859956297297280,1686860188513513488] 1686936871.55s 769kb|--------------L0.?---------------| " + - "L0.?[1686860188513513489,1686860536837837820] 1686936871.55s 1mb |------------------------L0.?------------------------| " + - "**** Simulation run 233, type=split(HighL0OverlapTotalBacklog)(split_times=[1686860188513513488]). 1 Input Files, 48mb total:" + - "L0, all files 48mb " + - "L0.989[1686859969989511639,1686860536837837820] 1686932677.39s|-----------------------------------------L0.989-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 48mb total:" + - "L0 " + - "L0.?[1686859969989511639,1686860188513513488] 1686932677.39s 19mb|--------------L0.?--------------| " + - "L0.?[1686860188513513489,1686860536837837820] 1686932677.39s 30mb |------------------------L0.?-------------------------| " + - "**** Simulation run 234, type=split(HighL0OverlapTotalBacklog)(split_times=[1686860188513513488]). 1 Input Files, 46mb total:" + - "L0, all files 46mb " + - "L0.991[1686859988431489231,1686860536837837820] 1686935947.46s|-----------------------------------------L0.991-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 46mb total:" + - "L0 " + - "L0.?[1686859988431489231,1686860188513513488] 1686935947.46s 17mb|-------------L0.?-------------| " + - "L0.?[1686860188513513489,1686860536837837820] 1686935947.46s 29mb |-------------------------L0.?--------------------------| " + - "**** Simulation run 235, type=split(HighL0OverlapTotalBacklog)(split_times=[1686861117378378351]). 1 Input Files, 49mb total:" + - "L0, all files 49mb " + - "L0.1072[1686860536837837821,1686861117378378360] 1686932677.39s|----------------------------------------L0.1072-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 49mb total:" + - "L0 " + - "L0.?[1686860536837837821,1686861117378378351] 1686932677.39s 49mb|-----------------------------------------L0.?------------------------------------------| " + - "L0.?[1686861117378378352,1686861117378378360] 1686932677.39s 1b |L0.?|" + - "**** Simulation run 236, type=split(HighL0OverlapTotalBacklog)(split_times=[1686861117378378351]). 1 Input Files, 49mb total:" + - "L0, all files 49mb " + - "L0.1075[1686860536837837821,1686861117378378360] 1686935947.46s|----------------------------------------L0.1075-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 49mb total:" + - "L0 " + - "L0.?[1686860536837837821,1686861117378378351] 1686935947.46s 49mb|-----------------------------------------L0.?------------------------------------------| " + - "L0.?[1686861117378378352,1686861117378378360] 1686935947.46s 1b |L0.?|" + - "**** Simulation run 237, type=split(HighL0OverlapTotalBacklog)(split_times=[1686861117378378351]). 1 Input Files, 2mb total:" + - "L0, all files 2mb " + - "L0.1078[1686860536837837821,1686861117378378360] 1686936871.55s|----------------------------------------L0.1078-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" + - "L0 " + - "L0.?[1686860536837837821,1686861117378378351] 1686936871.55s 2mb|-----------------------------------------L0.?------------------------------------------| " + - "L0.?[1686861117378378352,1686861117378378360] 1686936871.55s 1b |L0.?|" + - "**** Simulation run 238, type=split(HighL0OverlapTotalBacklog)(split_times=[1686862046243243214]). 1 Input Files, 2mb total:" + - "L0, all files 2mb " + - "L0.1080[1686861697918918900,1686862278459459440] 1686936871.55s|----------------------------------------L0.1080-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" + - "L0 " + - "L0.?[1686861697918918900,1686862046243243214] 1686936871.55s 1mb|-----------------------L0.?------------------------| " + - "L0.?[1686862046243243215,1686862278459459440] 1686936871.55s 769kb |---------------L0.?---------------| " + - "**** Simulation run 239, type=split(HighL0OverlapTotalBacklog)(split_times=[1686862046243243214]). 1 Input Files, 48mb total:" + - "L0, all files 48mb " + - "L0.1008[1686861711611133259,1686862278459459440] 1686932677.39s|----------------------------------------L0.1008-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 48mb total:" + - "L0 " + - "L0.?[1686861711611133259,1686862046243243214] 1686932677.39s 28mb|-----------------------L0.?------------------------| " + - "L0.?[1686862046243243215,1686862278459459440] 1686932677.39s 20mb |---------------L0.?---------------| " + - "**** Simulation run 240, type=split(HighL0OverlapTotalBacklog)(split_times=[1686862046243243214]). 1 Input Files, 46mb total:" + - "L0, all files 46mb " + - "L0.1010[1686861730053110851,1686862278459459440] 1686935947.46s|----------------------------------------L0.1010-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 46mb total:" + - "L0 " + - "L0.?[1686861730053110851,1686862046243243214] 1686935947.46s 26mb|----------------------L0.?-----------------------| " + - "L0.?[1686862046243243215,1686862278459459440] 1686935947.46s 19mb |----------------L0.?----------------| " + - "**** Simulation run 241, type=split(HighL0OverlapTotalBacklog)(split_times=[1686862975108108077]). 1 Input Files, 25mb total:" + - "L0, all files 25mb " + - "L0.1130[1686862858999999981,1686863149270270250] 1686932677.39s|----------------------------------------L0.1130-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 25mb total:" + - "L0 " + - "L0.?[1686862858999999981,1686862975108108077] 1686932677.39s 10mb|--------------L0.?---------------| " + - "L0.?[1686862975108108078,1686863149270270250] 1686932677.39s 15mb |------------------------L0.?------------------------| " + - "**** Simulation run 242, type=split(HighL0OverlapTotalBacklog)(split_times=[1686862975108108077]). 1 Input Files, 23mb total:" + - "L0, all files 23mb " + - "L0.1174[1686862858999999981,1686863149270270250] 1686935947.46s|----------------------------------------L0.1174-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 23mb total:" + - "L0 " + - "L0.?[1686862858999999981,1686862975108108077] 1686935947.46s 9mb|--------------L0.?---------------| " + - "L0.?[1686862975108108078,1686863149270270250] 1686935947.46s 14mb |------------------------L0.?------------------------| " + - "**** Simulation run 243, type=split(HighL0OverlapTotalBacklog)(split_times=[1686862975108108077]). 1 Input Files, 2mb total:" + - "L0, all files 2mb " + - "L0.1215[1686862858999999981,1686863149270270250] 1686936871.55s|----------------------------------------L0.1215-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" + - "L0 " + - "L0.?[1686862858999999981,1686862975108108077] 1686936871.55s 782kb|--------------L0.?---------------| " + - "L0.?[1686862975108108078,1686863149270270250] 1686936871.55s 1mb |------------------------L0.?------------------------| " + - "**** Simulation run 244, type=split(HighL0OverlapTotalBacklog)(split_times=[1686863903972972940]). 1 Input Files, 27mb total:" + - "L0, all files 27mb " + - "L0.1133[1686863699000000001,1686864020081081060] 1686932677.39s|----------------------------------------L0.1133-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 27mb total:" + - "L0 " + - "L0.?[1686863699000000001,1686863903972972940] 1686932677.39s 17mb|-------------------------L0.?--------------------------| " + - "L0.?[1686863903972972941,1686864020081081060] 1686932677.39s 10mb |-------------L0.?-------------| " + - "**** Simulation run 245, type=split(HighL0OverlapTotalBacklog)(split_times=[1686863903972972940]). 1 Input Files, 26mb total:" + - "L0, all files 26mb " + - "L0.1177[1686863699000000001,1686864020081081060] 1686935947.46s|----------------------------------------L0.1177-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 26mb total:" + - "L0 " + - "L0.?[1686863699000000001,1686863903972972940] 1686935947.46s 16mb|-------------------------L0.?--------------------------| " + - "L0.?[1686863903972972941,1686864020081081060] 1686935947.46s 9mb |-------------L0.?-------------| " + - "**** Simulation run 246, type=split(HighL0OverlapTotalBacklog)(split_times=[1686863903972972940]). 1 Input Files, 2mb total:" + - "L0, all files 2mb " + - "L0.1218[1686863699000000001,1686864020081081060] 1686936871.55s|----------------------------------------L0.1218-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" + - "L0 " + - "L0.?[1686863699000000001,1686863903972972940] 1686936871.55s 1mb|-------------------------L0.?--------------------------| " + - "L0.?[1686863903972972941,1686864020081081060] 1686936871.55s 782kb |-------------L0.?-------------| " + - "**** Simulation run 247, type=split(HighL0OverlapTotalBacklog)(split_times=[1686864832837837803]). 1 Input Files, 58mb total:" + - "L0, all files 58mb " + - "L0.1142[1686864020081081061,1686864890891891870] 1686934966.48s|----------------------------------------L0.1142-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 58mb total:" + - "L0 " + - "L0.?[1686864020081081061,1686864832837837803] 1686934966.48s 55mb|--------------------------------------L0.?---------------------------------------| " + - "L0.?[1686864832837837804,1686864890891891870] 1686934966.48s 4mb |L0.?| " + - "**** Simulation run 248, type=split(HighL0OverlapTotalBacklog)(split_times=[1686864832837837803]). 1 Input Files, 27mb total:" + - "L0, all files 27mb " + - "L0.1219[1686864020081081061,1686864890891891870] 1686936871.55s|----------------------------------------L0.1219-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 27mb total:" + - "L0 " + - "L0.?[1686864020081081061,1686864832837837803] 1686936871.55s 26mb|--------------------------------------L0.?---------------------------------------| " + - "L0.?[1686864832837837804,1686864890891891870] 1686936871.55s 2mb |L0.?| " + - "**** Simulation run 249, type=split(HighL0OverlapTotalBacklog)(split_times=[1686864832837837803]). 1 Input Files, 17mb total:" + - "L1, all files 17mb " + - "L1.1229[1686864651607515460,1686865761702702680] 1686931893.7s|----------------------------------------L1.1229-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 17mb total:" + - "L1 " + - "L1.?[1686864651607515460,1686864832837837803] 1686931893.7s 3mb|----L1.?----| " + - "L1.?[1686864832837837804,1686865761702702680] 1686931893.7s 14mb |----------------------------------L1.?-----------------------------------| " + - "Committing partition 1:" + - " Soft Deleting 43 files: L0.984, L0.986, L0.989, L0.991, L0.1008, L0.1010, L0.1033, L0.1036, L0.1039, L0.1046, L0.1049, L0.1052, L0.1054, L0.1065, L0.1072, L0.1075, L0.1078, L0.1080, L0.1116, L0.1117, L0.1120, L0.1124, L0.1130, L0.1133, L0.1141, L0.1142, L0.1144, L0.1145, L0.1148, L0.1168, L0.1174, L0.1177, L0.1200, L0.1201, L0.1202, L0.1205, L0.1209, L0.1215, L0.1218, L0.1219, L1.1227, L1.1228, L1.1229" + - " Creating 97 files" + - "**** Simulation run 250, type=split(ReduceOverlap)(split_times=[1686858240168622590]). 1 Input Files, 5mb total:" + - "L0, all files 5mb " + - "L0.1048[1686858214675675660,1686858278525917085] 1686932677.39s|----------------------------------------L0.1048-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" + - "L0 " + - "L0.?[1686858214675675660,1686858240168622590] 1686932677.39s 2mb|--------------L0.?---------------| " + - "L0.?[1686858240168622591,1686858278525917085] 1686932677.39s 3mb |------------------------L0.?------------------------| " + - "**** Simulation run 251, type=split(ReduceOverlap)(split_times=[1686864651607515459]). 1 Input Files, 55mb total:" + - "L0, all files 55mb " + - "L0.1321[1686864020081081061,1686864832837837803] 1686934966.48s|----------------------------------------L0.1321-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 55mb total:" + - "L0 " + - "L0.?[1686864020081081061,1686864651607515459] 1686934966.48s 42mb|-------------------------------L0.?--------------------------------| " + - "L0.?[1686864651607515460,1686864832837837803] 1686934966.48s 12mb |-------L0.?-------| " + - "**** Simulation run 252, type=split(ReduceOverlap)(split_times=[1686864651607515459]). 1 Input Files, 26mb total:" + - "L0, all files 26mb " + - "L0.1323[1686864020081081061,1686864832837837803] 1686936871.55s|----------------------------------------L0.1323-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 26mb total:" + - "L0 " + - "L0.?[1686864020081081061,1686864651607515459] 1686936871.55s 20mb|-------------------------------L0.?--------------------------------| " + - "L0.?[1686864651607515460,1686864832837837803] 1686936871.55s 6mb |-------L0.?-------| " + - "**** Simulation run 253, type=split(ReduceOverlap)(split_times=[1686858240168622590]). 1 Input Files, 3mb total:" + - "L0, all files 3mb " + - "L0.1051[1686858214675675660,1686858251288003855] 1686935947.46s|----------------------------------------L0.1051-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" + - "L0 " + - "L0.?[1686858214675675660,1686858240168622590] 1686935947.46s 2mb|----------------------------L0.?----------------------------| " + - "L0.?[1686858240168622591,1686858251288003855] 1686935947.46s 951kb |----------L0.?-----------| " + - "**** Simulation run 254, type=split(ReduceOverlap)(split_times=[1686858240168622590]). 1 Input Files, 782kb total:" + - "L0, all files 782kb " + - "L0.1271[1686858214675675660,1686858330783783762] 1686936871.55s|----------------------------------------L0.1271-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 782kb total:" + - "L0 " + - "L0.?[1686858214675675660,1686858240168622590] 1686936871.55s 172kb|------L0.?-------| " + - "L0.?[1686858240168622591,1686858330783783762] 1686936871.55s 611kb |--------------------------------L0.?--------------------------------| " + - "Committing partition 1:" + - " Soft Deleting 5 files: L0.1048, L0.1051, L0.1271, L0.1321, L0.1323" + - " Creating 10 files" + - "**** Simulation run 255, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686842571022320444, 1686843763044640888]). 10 Input Files, 292mb total:" + - "L0 " + - "L0.1100[1686841379000000000,1686842249810810810] 1686932677.39s 72mb|------L0.1100-------| " + - "L0.1101[1686842249810810811,1686842589641148927] 1686932677.39s 28mb |L0.1101| " + - "L0.937[1686842589641148928,1686843120621621620] 1686932677.39s 44mb |--L0.937---| " + - "L0.1102[1686843120621621621,1686843991432432430] 1686932677.39s 72mb |------L0.1102-------| " + - "L0.1103[1686843991432432431,1686844331262770547] 1686932677.39s 28mb |L0.1103| " + - "L0.942[1686844331262770548,1686844862243243240] 1686932677.39s 44mb |--L0.942---| " + - "L1 " + - "L1.84[1686841379000000000,1686842249810810810] 1686928854.57s 1mb|-------L1.84--------| " + - "L1.85[1686842249810810811,1686843120621621620] 1686928854.57s 1mb |-------L1.85--------| " + - "L1.86[1686843120621621621,1686843991432432430] 1686928854.57s 1mb |-------L1.86--------| " + - "L1.87[1686843991432432431,1686844862243243240] 1686928854.57s 1mb |-------L1.87--------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 292mb total:" + - "L1 " + - "L1.?[1686841379000000000,1686842571022320444] 1686932677.39s 100mb|------------L1.?------------| " + - "L1.?[1686842571022320445,1686843763044640888] 1686932677.39s 100mb |------------L1.?------------| " + - "L1.?[1686843763044640889,1686844862243243240] 1686932677.39s 92mb |-----------L1.?-----------| " + - "Committing partition 1:" + - " Soft Deleting 10 files: L1.84, L1.85, L1.86, L1.87, L0.937, L0.942, L0.1100, L0.1101, L0.1102, L0.1103" + - " Creating 3 files" + - "**** Simulation run 256, type=split(HighL0OverlapTotalBacklog)(split_times=[1686842540081081080]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1337[1686841379000000000,1686842571022320444] 1686932677.39s|----------------------------------------L1.1337-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686841379000000000,1686842540081081080] 1686932677.39s 97mb|----------------------------------------L1.?-----------------------------------------| " + - "L1.?[1686842540081081081,1686842571022320444] 1686932677.39s 3mb |L1.?|" + - "**** Simulation run 257, type=split(HighL0OverlapTotalBacklog)(split_times=[1686842540081081080]). 1 Input Files, 28mb total:" + - "L0, all files 28mb " + - "L0.1150[1686842249810810811,1686842593136179151] 1686935947.46s|----------------------------------------L0.1150-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 28mb total:" + - "L0 " + - "L0.?[1686842249810810811,1686842540081081080] 1686935947.46s 24mb|-----------------------------------L0.?-----------------------------------| " + - "L0.?[1686842540081081081,1686842593136179151] 1686935947.46s 4mb |---L0.?----| " + - "**** Simulation run 258, type=split(HighL0OverlapTotalBacklog)(split_times=[1686842540081081080]). 1 Input Files, 3mb total:" + - "L0, all files 3mb " + - "L0.1185[1686842249810810811,1686843120621621620] 1686936871.55s|----------------------------------------L0.1185-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" + - "L0 " + - "L0.?[1686842249810810811,1686842540081081080] 1686936871.55s 962kb|-----------L0.?------------| " + - "L0.?[1686842540081081081,1686843120621621620] 1686936871.55s 2mb |--------------------------L0.?---------------------------| " + - "**** Simulation run 259, type=split(HighL0OverlapTotalBacklog)(split_times=[1686843701162162160]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1338[1686842571022320445,1686843763044640888] 1686932677.39s|----------------------------------------L1.1338-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686842571022320445,1686843701162162160] 1686932677.39s 95mb|---------------------------------------L1.?----------------------------------------| " + - "L1.?[1686843701162162161,1686843763044640888] 1686932677.39s 5mb |L1.?|" + - "**** Simulation run 260, type=split(HighL0OverlapTotalBacklog)(split_times=[1686843701162162160]). 1 Input Files, 72mb total:" + - "L0, all files 72mb " + - "L0.1151[1686843120621621621,1686843991432432430] 1686935947.46s|----------------------------------------L0.1151-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 72mb total:" + - "L0 " + - "L0.?[1686843120621621621,1686843701162162160] 1686935947.46s 48mb|--------------------------L0.?---------------------------| " + - "L0.?[1686843701162162161,1686843991432432430] 1686935947.46s 24mb |-----------L0.?------------| " + - "**** Simulation run 261, type=split(HighL0OverlapTotalBacklog)(split_times=[1686843701162162160]). 1 Input Files, 3mb total:" + - "L0, all files 3mb " + - "L0.1186[1686843120621621621,1686843991432432430] 1686936871.55s|----------------------------------------L0.1186-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" + - "L0 " + - "L0.?[1686843120621621621,1686843701162162160] 1686936871.55s 2mb|--------------------------L0.?---------------------------| " + - "L0.?[1686843701162162161,1686843991432432430] 1686936871.55s 962kb |-----------L0.?------------| " + - "Committing partition 1:" + - " Soft Deleting 6 files: L0.1150, L0.1151, L0.1185, L0.1186, L1.1337, L1.1338" + - " Creating 12 files" + - "**** Simulation run 262, type=split(ReduceOverlap)(split_times=[1686842571022320444]). 1 Input Files, 4mb total:" + - "L0, all files 4mb " + - "L0.1343[1686842540081081081,1686842593136179151] 1686935947.46s|----------------------------------------L0.1343-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" + - "L0 " + - "L0.?[1686842540081081081,1686842571022320444] 1686935947.46s 3mb|-----------------------L0.?-----------------------| " + - "L0.?[1686842571022320445,1686842593136179151] 1686935947.46s 2mb |---------------L0.?----------------| " + - "**** Simulation run 263, type=split(ReduceOverlap)(split_times=[1686843763044640888]). 1 Input Files, 24mb total:" + - "L0, all files 24mb " + - "L0.1349[1686843701162162161,1686843991432432430] 1686935947.46s|----------------------------------------L0.1349-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 24mb total:" + - "L0 " + - "L0.?[1686843701162162161,1686843763044640888] 1686935947.46s 5mb|------L0.?-------| " + - "L0.?[1686843763044640889,1686843991432432430] 1686935947.46s 19mb |--------------------------------L0.?--------------------------------| " + - "**** Simulation run 264, type=split(ReduceOverlap)(split_times=[1686842571022320444]). 1 Input Files, 2mb total:" + - "L0, all files 2mb " + - "L0.1345[1686842540081081081,1686843120621621620] 1686936871.55s|----------------------------------------L0.1345-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" + - "L0 " + - "L0.?[1686842540081081081,1686842571022320444] 1686936871.55s 103kb|L0.?| " + - "L0.?[1686842571022320445,1686843120621621620] 1686936871.55s 2mb |---------------------------------------L0.?----------------------------------------| " + - "**** Simulation run 265, type=split(ReduceOverlap)(split_times=[1686843763044640888]). 1 Input Files, 962kb total:" + - "L0, all files 962kb " + - "L0.1351[1686843701162162161,1686843991432432430] 1686936871.55s|----------------------------------------L0.1351-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 962kb total:" + - "L0 " + - "L0.?[1686843701162162161,1686843763044640888] 1686936871.55s 205kb|------L0.?-------| " + - "L0.?[1686843763044640889,1686843991432432430] 1686936871.55s 757kb |--------------------------------L0.?--------------------------------| " + - "Committing partition 1:" + - " Soft Deleting 4 files: L0.1343, L0.1345, L0.1349, L0.1351" + - " Creating 8 files" + - "**** Simulation run 266, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686846054770701976, 1686847247298160711]). 12 Input Files, 292mb total:" + - "L0 " + - "L0.1104[1686844862243243241,1686845579000000000] 1686932677.39s 59mb|----L0.1104-----| " + - "L0.1105[1686845579000000001,1686845733054054050] 1686932677.39s 13mb |L0.1105| " + - "L0.1106[1686845733054054051,1686846072884392167] 1686932677.39s 28mb |L0.1106| " + - "L0.947[1686846072884392168,1686846603864864860] 1686932677.39s 44mb |--L0.947---| " + - "L0.1107[1686846603864864861,1686847474675675670] 1686932677.39s 72mb |------L0.1107-------| " + - "L0.1108[1686847474675675671,1686847814506013787] 1686932677.39s 28mb |L0.1108| " + - "L0.951[1686847814506013788,1686848345486486480] 1686932677.39s 44mb |--L0.951---| " + - "L1 " + - "L1.88[1686844862243243241,1686845579000000000] 1686928854.57s 947kb|-----L1.88------| " + - "L1.413[1686845639000000000,1686845733054054050] 1686928854.57s 123kb |L1.413| " + - "L1.414[1686845733054054051,1686846603864864860] 1686928854.57s 1mb |-------L1.414-------| " + - "L1.415[1686846603864864861,1686847474675675670] 1686928854.57s 1mb |-------L1.415-------| " + - "L1.416[1686847474675675671,1686848345486486480] 1686928854.57s 1mb |-------L1.416-------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 292mb total:" + - "L1 " + - "L1.?[1686844862243243241,1686846054770701976] 1686932677.39s 100mb|------------L1.?------------| " + - "L1.?[1686846054770701977,1686847247298160711] 1686932677.39s 100mb |------------L1.?------------| " + - "L1.?[1686847247298160712,1686848345486486480] 1686932677.39s 92mb |-----------L1.?-----------| " + - "Committing partition 1:" + - " Soft Deleting 12 files: L1.88, L1.413, L1.414, L1.415, L1.416, L0.947, L0.951, L0.1104, L0.1105, L0.1106, L0.1107, L0.1108" + - " Creating 3 files" + - "**** Simulation run 267, type=split(HighL0OverlapTotalBacklog)(split_times=[1686846023324324320]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1360[1686844862243243241,1686846054770701976] 1686932677.39s|----------------------------------------L1.1360-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686844862243243241,1686846023324324320] 1686932677.39s 97mb|----------------------------------------L1.?-----------------------------------------| " + - "L1.?[1686846023324324321,1686846054770701976] 1686932677.39s 3mb |L1.?|" + - "**** Simulation run 268, type=split(HighL0OverlapTotalBacklog)(split_times=[1686846023324324320]). 1 Input Files, 28mb total:" + - "L0, all files 28mb " + - "L0.1155[1686845733054054051,1686846076379422391] 1686935947.46s|----------------------------------------L0.1155-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 28mb total:" + - "L0 " + - "L0.?[1686845733054054051,1686846023324324320] 1686935947.46s 24mb|-----------------------------------L0.?-----------------------------------| " + - "L0.?[1686846023324324321,1686846076379422391] 1686935947.46s 4mb |---L0.?----| " + - "**** Simulation run 269, type=split(HighL0OverlapTotalBacklog)(split_times=[1686846023324324320]). 1 Input Files, 3mb total:" + - "L0, all files 3mb " + - "L0.1190[1686845733054054051,1686846603864864860] 1686936871.55s|----------------------------------------L0.1190-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" + - "L0 " + - "L0.?[1686845733054054051,1686846023324324320] 1686936871.55s 962kb|-----------L0.?------------| " + - "L0.?[1686846023324324321,1686846603864864860] 1686936871.55s 2mb |--------------------------L0.?---------------------------| " + - "**** Simulation run 270, type=split(HighL0OverlapTotalBacklog)(split_times=[1686847184405405399]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1361[1686846054770701977,1686847247298160711] 1686932677.39s|----------------------------------------L1.1361-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686846054770701977,1686847184405405399] 1686932677.39s 95mb|---------------------------------------L1.?----------------------------------------| " + - "L1.?[1686847184405405400,1686847247298160711] 1686932677.39s 5mb |L1.?|" + - "**** Simulation run 271, type=split(HighL0OverlapTotalBacklog)(split_times=[1686847184405405399]). 1 Input Files, 72mb total:" + - "L0, all files 72mb " + - "L0.1156[1686846603864864861,1686847474675675670] 1686935947.46s|----------------------------------------L0.1156-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 72mb total:" + - "L0 " + - "L0.?[1686846603864864861,1686847184405405399] 1686935947.46s 48mb|--------------------------L0.?---------------------------| " + - "L0.?[1686847184405405400,1686847474675675670] 1686935947.46s 24mb |------------L0.?------------| " + - "**** Simulation run 272, type=split(HighL0OverlapTotalBacklog)(split_times=[1686847184405405399]). 1 Input Files, 3mb total:" + - "L0, all files 3mb " + - "L0.1191[1686846603864864861,1686847474675675670] 1686936871.55s|----------------------------------------L0.1191-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" + - "L0 " + - "L0.?[1686846603864864861,1686847184405405399] 1686936871.55s 2mb|--------------------------L0.?---------------------------| " + - "L0.?[1686847184405405400,1686847474675675670] 1686936871.55s 962kb |------------L0.?------------| " + - "Committing partition 1:" + - " Soft Deleting 6 files: L0.1155, L0.1156, L0.1190, L0.1191, L1.1360, L1.1361" + - " Creating 12 files" + - "**** Simulation run 273, type=split(ReduceOverlap)(split_times=[1686846054770701976]). 1 Input Files, 4mb total:" + - "L0, all files 4mb " + - "L0.1366[1686846023324324321,1686846076379422391] 1686935947.46s|----------------------------------------L0.1366-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" + - "L0 " + - "L0.?[1686846023324324321,1686846054770701976] 1686935947.46s 3mb|-----------------------L0.?------------------------| " + - "L0.?[1686846054770701977,1686846076379422391] 1686935947.46s 2mb |---------------L0.?---------------| " + - "**** Simulation run 274, type=split(ReduceOverlap)(split_times=[1686847247298160711]). 1 Input Files, 24mb total:" + - "L0, all files 24mb " + - "L0.1372[1686847184405405400,1686847474675675670] 1686935947.46s|----------------------------------------L0.1372-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 24mb total:" + - "L0 " + - "L0.?[1686847184405405400,1686847247298160711] 1686935947.46s 5mb|------L0.?-------| " + - "L0.?[1686847247298160712,1686847474675675670] 1686935947.46s 19mb |--------------------------------L0.?--------------------------------| " + - "**** Simulation run 275, type=split(ReduceOverlap)(split_times=[1686846054770701976]). 1 Input Files, 2mb total:" + - "L0, all files 2mb " + - "L0.1368[1686846023324324321,1686846603864864860] 1686936871.55s|----------------------------------------L0.1368-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" + - "L0 " + - "L0.?[1686846023324324321,1686846054770701976] 1686936871.55s 104kb|L0.?| " + - "L0.?[1686846054770701977,1686846603864864860] 1686936871.55s 2mb |---------------------------------------L0.?----------------------------------------| " + - "**** Simulation run 276, type=split(ReduceOverlap)(split_times=[1686847247298160711]). 1 Input Files, 962kb total:" + - "L0, all files 962kb " + - "L0.1374[1686847184405405400,1686847474675675670] 1686936871.55s|----------------------------------------L0.1374-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 962kb total:" + - "L0 " + - "L0.?[1686847184405405400,1686847247298160711] 1686936871.55s 208kb|------L0.?-------| " + - "L0.?[1686847247298160712,1686847474675675670] 1686936871.55s 753kb |--------------------------------L0.?--------------------------------| " + - "Committing partition 1:" + - " Soft Deleting 4 files: L0.1366, L0.1368, L0.1372, L0.1374" + - " Creating 8 files" + - "**** Simulation run 277, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686849559289331160, 1686850773092175839]). 14 Input Files, 287mb total:" + - "L0 " + - "L0.1109[1686848345486486481,1686849216297297290] 1686932677.39s 69mb|------L0.1109-------| " + - "L0.1110[1686849216297297291,1686849600239388909] 1686932677.39s 31mb |L0.1110| " + - "L0.1111[1686849600239388910,1686849779000000000] 1686932677.39s 14mb |L0.1111| " + - "L0.1112[1686849779000000001,1686850087108108100] 1686932677.39s 25mb |L0.1112| " + - "L0.1113[1686850087108108101,1686850559000000000] 1686932677.39s 39mb |-L0.1113--| " + - "L0.1114[1686850559000000001,1686850957918918910] 1686932677.39s 33mb |L0.1114-| " + - "L0.1115[1686850957918918911,1686851297766913590] 1686932677.39s 28mb |L0.1115| " + - "L0.961[1686851297766913591,1686851828729729720] 1686932677.39s 44mb |--L0.961---| " + - "L1 " + - "L1.417[1686848345486486481,1686849216297297290] 1686928854.57s 1mb|-------L1.417-------| " + - "L1.418[1686849216297297291,1686849779000000000] 1686928854.57s 734kb |---L1.418---| " + - "L1.430[1686849839000000000,1686850087108108100] 1686928854.57s 336kb |L1.430| " + - "L1.431[1686850087108108101,1686850559000000000] 1686928854.57s 639kb |--L1.431--| " + - "L1.432[1686850619000000000,1686850957918918910] 1686928854.57s 440kb |L1.432| " + - "L1.433[1686850957918918911,1686851828729729720] 1686928854.57s 1mb |-------L1.433-------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 287mb total:" + - "L1 " + - "L1.?[1686848345486486481,1686849559289331160] 1686932677.39s 100mb|------------L1.?-------------| " + - "L1.?[1686849559289331161,1686850773092175839] 1686932677.39s 100mb |------------L1.?-------------| " + - "L1.?[1686850773092175840,1686851828729729720] 1686932677.39s 87mb |----------L1.?-----------| " + - "Committing partition 1:" + - " Soft Deleting 14 files: L1.417, L1.418, L1.430, L1.431, L1.432, L1.433, L0.961, L0.1109, L0.1110, L0.1111, L0.1112, L0.1113, L0.1114, L0.1115" + - " Creating 3 files" + - "**** Simulation run 278, type=split(HighL0OverlapTotalBacklog)(split_times=[1686849506567567560]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1383[1686848345486486481,1686849559289331160] 1686932677.39s|----------------------------------------L1.1383-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686848345486486481,1686849506567567560] 1686932677.39s 96mb|----------------------------------------L1.?----------------------------------------| " + - "L1.?[1686849506567567561,1686849559289331160] 1686932677.39s 4mb |L1.?|" + - "**** Simulation run 279, type=split(HighL0OverlapTotalBacklog)(split_times=[1686849506567567560]). 1 Input Files, 29mb total:" + - "L0, all files 29mb " + - "L0.1159[1686849216297297291,1686849568759166090] 1686935947.46s|----------------------------------------L0.1159-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 29mb total:" + - "L0 " + - "L0.?[1686849216297297291,1686849506567567560] 1686935947.46s 24mb|----------------------------------L0.?----------------------------------| " + - "L0.?[1686849506567567561,1686849568759166090] 1686935947.46s 5mb |----L0.?-----| " + - "**** Simulation run 280, type=split(HighL0OverlapTotalBacklog)(split_times=[1686849506567567560]). 1 Input Files, 4mb total:" + - "L0, all files 4mb " + - "L0.1194[1686849216297297291,1686849779000000000] 1686936871.55s|----------------------------------------L0.1194-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" + - "L0 " + - "L0.?[1686849216297297291,1686849506567567560] 1686936871.55s 2mb|--------------------L0.?--------------------| " + - "L0.?[1686849506567567561,1686849779000000000] 1686936871.55s 2mb |------------------L0.?-------------------| " + - "**** Simulation run 281, type=split(HighL0OverlapTotalBacklog)(split_times=[1686850667648648639]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1384[1686849559289331161,1686850773092175839] 1686932677.39s|----------------------------------------L1.1384-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686849559289331161,1686850667648648639] 1686932677.39s 91mb|--------------------------------------L1.?--------------------------------------| " + - "L1.?[1686850667648648640,1686850773092175839] 1686932677.39s 9mb |L1.?-| " + - "**** Simulation run 282, type=split(HighL0OverlapTotalBacklog)(split_times=[1686850667648648639]). 1 Input Files, 33mb total:" + - "L0, all files 33mb " + - "L0.1163[1686850559000000001,1686850957918918910] 1686935947.46s|----------------------------------------L0.1163-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 33mb total:" + - "L0 " + - "L0.?[1686850559000000001,1686850667648648639] 1686935947.46s 9mb|---------L0.?---------| " + - "L0.?[1686850667648648640,1686850957918918910] 1686935947.46s 24mb |-----------------------------L0.?------------------------------| " + - "**** Simulation run 283, type=split(HighL0OverlapTotalBacklog)(split_times=[1686850667648648639]). 1 Input Files, 1mb total:" + - "L0, all files 1mb " + - "L0.1197[1686850559000000001,1686850957918918910] 1686936871.55s|----------------------------------------L0.1197-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 1mb total:" + - "L0 " + - "L0.?[1686850559000000001,1686850667648648639] 1686936871.55s 360kb|---------L0.?---------| " + - "L0.?[1686850667648648640,1686850957918918910] 1686936871.55s 962kb |-----------------------------L0.?------------------------------| " + - "Committing partition 1:" + - " Soft Deleting 6 files: L0.1159, L0.1163, L0.1194, L0.1197, L1.1383, L1.1384" + - " Creating 12 files" + - "**** Simulation run 284, type=split(ReduceOverlap)(split_times=[1686849559289331160]). 1 Input Files, 5mb total:" + - "L0, all files 5mb " + - "L0.1389[1686849506567567561,1686849568759166090] 1686935947.46s|----------------------------------------L0.1389-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" + - "L0 " + - "L0.?[1686849506567567561,1686849559289331160] 1686935947.46s 4mb|-----------------------------------L0.?-----------------------------------| " + - "L0.?[1686849559289331161,1686849568759166090] 1686935947.46s 793kb |---L0.?----| " + - "**** Simulation run 285, type=split(ReduceOverlap)(split_times=[1686850773092175839]). 1 Input Files, 24mb total:" + - "L0, all files 24mb " + - "L0.1395[1686850667648648640,1686850957918918910] 1686935947.46s|----------------------------------------L0.1395-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 24mb total:" + - "L0 " + - "L0.?[1686850667648648640,1686850773092175839] 1686935947.46s 9mb|-------------L0.?-------------| " + - "L0.?[1686850773092175840,1686850957918918910] 1686935947.46s 15mb |-------------------------L0.?--------------------------| " + - "**** Simulation run 286, type=split(ReduceOverlap)(split_times=[1686849559289331160]). 1 Input Files, 2mb total:" + - "L0, all files 2mb " + - "L0.1391[1686849506567567561,1686849779000000000] 1686936871.55s|----------------------------------------L0.1391-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" + - "L0 " + - "L0.?[1686849506567567561,1686849559289331160] 1686936871.55s 342kb|-----L0.?------| " + - "L0.?[1686849559289331161,1686849779000000000] 1686936871.55s 1mb |---------------------------------L0.?---------------------------------| " + - "**** Simulation run 287, type=split(ReduceOverlap)(split_times=[1686850773092175839]). 1 Input Files, 962kb total:" + - "L0, all files 962kb " + - "L0.1397[1686850667648648640,1686850957918918910] 1686936871.55s|----------------------------------------L0.1397-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 962kb total:" + - "L0 " + - "L0.?[1686850667648648640,1686850773092175839] 1686936871.55s 349kb|-------------L0.?-------------| " + - "L0.?[1686850773092175840,1686850957918918910] 1686936871.55s 612kb |-------------------------L0.?--------------------------| " + - "Committing partition 1:" + - " Soft Deleting 4 files: L0.1389, L0.1391, L0.1395, L0.1397" + - " Creating 8 files" + - "**** Simulation run 288, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686854034336087198, 1686855311077579811]). 14 Input Files, 291mb total:" + - "L0 " + - "L0.1241[1686853570351351341,1686853686459459447] 1686932677.39s 9mb |L0.1241| " + - "L0.1242[1686853686459459448,1686854441162162150] 1686932677.39s 60mb |----L0.1242-----| " + - "L0.1247[1686854441162162151,1686854615324324310] 1686932677.39s 14mb |L0.1247| " + - "L0.1248[1686854615324324311,1686854819000000000] 1686932677.39s 16mb |L0.1248| " + - "L0.1118[1686854819000000001,1686854830189955965] 1686932677.39s 910kb |L0.1118| " + - "L0.973[1686854830189955966,1686855311972972960] 1686932677.39s 38mb |-L0.973--| " + - "L0.1253[1686855311972972961,1686855544189189173] 1686932677.39s 19mb |L0.1253| " + - "L0.1254[1686855544189189174,1686855892513513500] 1686932677.39s 28mb |L0.1254| " + - "L0.1119[1686855892513513501,1686856182783783770] 1686932677.39s 24mb |L0.1119| " + - "L0.1259[1686856182783783771,1686856473054054036] 1686932677.39s 24mb |L0.1259|" + - "L1 " + - "L1.1231[1686852757594594585,1686853686459459447] 1686931893.7s 14mb|------L1.1231-------| " + - "L1.1232[1686853686459459448,1686854615324324310] 1686931893.7s 14mb |------L1.1232-------| " + - "L1.1233[1686854615324324311,1686855544189189173] 1686931893.7s 14mb |------L1.1233-------| " + - "L1.1234[1686855544189189174,1686856473054054036] 1686931893.7s 14mb |------L1.1234-------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 291mb total:" + - "L1 " + - "L1.?[1686852757594594585,1686854034336087198] 1686932677.39s 100mb|------------L1.?------------| " + - "L1.?[1686854034336087199,1686855311077579811] 1686932677.39s 100mb |------------L1.?------------| " + - "L1.?[1686855311077579812,1686856473054054036] 1686932677.39s 91mb |-----------L1.?-----------| " + - "Committing partition 1:" + - " Soft Deleting 14 files: L0.973, L0.1118, L0.1119, L1.1231, L1.1232, L1.1233, L1.1234, L0.1241, L0.1242, L0.1247, L0.1248, L0.1253, L0.1254, L0.1259" + - " Creating 3 files" + - "**** Simulation run 289, type=split(HighL0OverlapTotalBacklog)(split_times=[1686853500686486475]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1406[1686852757594594585,1686854034336087198] 1686932677.39s|----------------------------------------L1.1406-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686852757594594585,1686853500686486475] 1686932677.39s 58mb|-----------------------L1.?-----------------------| " + - "L1.?[1686853500686486476,1686854034336087198] 1686932677.39s 42mb |---------------L1.?----------------| " + - "**** Simulation run 290, type=split(HighL0OverlapTotalBacklog)(split_times=[1686853500686486475]). 1 Input Files, 14mb total:" + - "L0, all files 14mb " + - "L0.971[1686853222027027017,1686853570351351340] 1686936871.55s|-----------------------------------------L0.971-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 14mb total:" + - "L0 " + - "L0.?[1686853222027027017,1686853500686486475] 1686936871.55s 11mb|--------------------------------L0.?---------------------------------| " + - "L0.?[1686853500686486476,1686853570351351340] 1686936871.55s 3mb |-----L0.?------| " + - "**** Simulation run 291, type=split(HighL0OverlapTotalBacklog)(split_times=[1686853500686486475]). 1 Input Files, 24mb total:" + - "L0, all files 24mb " + - "L0.969[1686853236700974399,1686853570351351340] 1686934966.48s|-----------------------------------------L0.969-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 24mb total:" + - "L0 " + - "L0.?[1686853236700974399,1686853500686486475] 1686934966.48s 19mb|--------------------------------L0.?---------------------------------| " + - "L0.?[1686853500686486476,1686853570351351340] 1686934966.48s 5mb |------L0.?------| " + - "**** Simulation run 292, type=split(HighL0OverlapTotalBacklog)(split_times=[1686854243778378365]). 1 Input Files, 51mb total:" + - "L0, all files 51mb " + - "L0.1244[1686853686459459448,1686854441162162150] 1686935546.05s|----------------------------------------L0.1244-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 51mb total:" + - "L0 " + - "L0.?[1686853686459459448,1686854243778378365] 1686935546.05s 38mb|------------------------------L0.?------------------------------| " + - "L0.?[1686854243778378366,1686854441162162150] 1686935546.05s 13mb |--------L0.?---------| " + - "**** Simulation run 293, type=split(HighL0OverlapTotalBacklog)(split_times=[1686854243778378365]). 1 Input Files, 16mb total:" + - "L0, all files 16mb " + - "L0.1246[1686853686459459448,1686854441162162150] 1686936871.55s|----------------------------------------L0.1246-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 16mb total:" + - "L0 " + - "L0.?[1686853686459459448,1686854243778378365] 1686936871.55s 12mb|------------------------------L0.?------------------------------| " + - "L0.?[1686854243778378366,1686854441162162150] 1686936871.55s 4mb |--------L0.?---------| " + - "**** Simulation run 294, type=split(HighL0OverlapTotalBacklog)(split_times=[1686854243778378365, 1686854986870270255]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1407[1686854034336087199,1686855311077579811] 1686932677.39s|----------------------------------------L1.1407-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686854034336087199,1686854243778378365] 1686932677.39s 16mb|----L1.?----| " + - "L1.?[1686854243778378366,1686854986870270255] 1686932677.39s 58mb |-----------------------L1.?-----------------------| " + - "L1.?[1686854986870270256,1686855311077579811] 1686932677.39s 25mb |--------L1.?--------| " + - "**** Simulation run 295, type=split(HighL0OverlapTotalBacklog)(split_times=[1686854986870270255]). 1 Input Files, 24mb total:" + - "L0, all files 24mb " + - "L0.975[1686854963648648637,1686855311972972960] 1686935546.05s|-----------------------------------------L0.975-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 24mb total:" + - "L0 " + - "L0.?[1686854963648648637,1686854986870270255] 1686935546.05s 2mb|L0.?| " + - "L0.?[1686854986870270256,1686855311972972960] 1686935546.05s 22mb |---------------------------------------L0.?---------------------------------------| " + - "**** Simulation run 296, type=split(HighL0OverlapTotalBacklog)(split_times=[1686854986870270255]). 1 Input Files, 7mb total:" + - "L0, all files 7mb " + - "L0.977[1686854963648648637,1686855311972972960] 1686936871.55s|-----------------------------------------L0.977-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 7mb total:" + - "L0 " + - "L0.?[1686854963648648637,1686854986870270255] 1686936871.55s 499kb|L0.?| " + - "L0.?[1686854986870270256,1686855311972972960] 1686936871.55s 7mb |---------------------------------------L0.?---------------------------------------| " + - "**** Simulation run 297, type=split(HighL0OverlapTotalBacklog)(split_times=[1686855729962162145]). 1 Input Files, 91mb total:" + - "L1, all files 91mb " + - "L1.1408[1686855311077579812,1686856473054054036] 1686932677.39s|----------------------------------------L1.1408-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 91mb total:" + - "L1 " + - "L1.?[1686855311077579812,1686855729962162145] 1686932677.39s 33mb|-------------L1.?-------------| " + - "L1.?[1686855729962162146,1686856473054054036] 1686932677.39s 58mb |-------------------------L1.?--------------------------| " + - "**** Simulation run 298, type=split(HighL0OverlapTotalBacklog)(split_times=[1686855729962162145]). 1 Input Files, 28mb total:" + - "L0, all files 28mb " + - "L0.1256[1686855544189189174,1686855892513513500] 1686935742.51s|----------------------------------------L0.1256-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 28mb total:" + - "L0 " + - "L0.?[1686855544189189174,1686855729962162145] 1686935742.51s 15mb|--------------------L0.?---------------------| " + - "L0.?[1686855729962162146,1686855892513513500] 1686935742.51s 13mb |------------------L0.?------------------| " + - "**** Simulation run 299, type=split(HighL0OverlapTotalBacklog)(split_times=[1686855729962162145]). 1 Input Files, 3mb total:" + - "L0, all files 3mb " + - "L0.1258[1686855544189189174,1686855892513513500] 1686936871.55s|----------------------------------------L0.1258-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" + - "L0 " + - "L0.?[1686855544189189174,1686855729962162145] 1686936871.55s 2mb|--------------------L0.?---------------------| " + - "L0.?[1686855729962162146,1686855892513513500] 1686936871.55s 2mb |------------------L0.?------------------| " + - "Committing partition 1:" + - " Soft Deleting 11 files: L0.969, L0.971, L0.975, L0.977, L0.1244, L0.1246, L0.1256, L0.1258, L1.1406, L1.1407, L1.1408" + - " Creating 23 files" + - "**** Simulation run 300, type=split(ReduceOverlap)(split_times=[1686854034336087198]). 1 Input Files, 38mb total:" + - "L0, all files 38mb " + - "L0.1415[1686853686459459448,1686854243778378365] 1686935546.05s|----------------------------------------L0.1415-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 38mb total:" + - "L0 " + - "L0.?[1686853686459459448,1686854034336087198] 1686935546.05s 23mb|-------------------------L0.?-------------------------| " + - "L0.?[1686854034336087199,1686854243778378365] 1686935546.05s 14mb |-------------L0.?--------------| " + - "**** Simulation run 301, type=split(ReduceOverlap)(split_times=[1686855311077579811]). 1 Input Files, 22mb total:" + - "L0, all files 22mb " + - "L0.1423[1686854986870270256,1686855311972972960] 1686935546.05s|----------------------------------------L0.1423-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 22mb total:" + - "L0 " + - "L0.?[1686854986870270256,1686855311077579811] 1686935546.05s 22mb|-----------------------------------------L0.?------------------------------------------| " + - "L0.?[1686855311077579812,1686855311972972960] 1686935546.05s 62kb |L0.?|" + - "**** Simulation run 302, type=split(ReduceOverlap)(split_times=[1686854034336087198]). 1 Input Files, 12mb total:" + - "L0, all files 12mb " + - "L0.1417[1686853686459459448,1686854243778378365] 1686936871.55s|----------------------------------------L0.1417-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 12mb total:" + - "L0 " + - "L0.?[1686853686459459448,1686854034336087198] 1686936871.55s 7mb|-------------------------L0.?-------------------------| " + - "L0.?[1686854034336087199,1686854243778378365] 1686936871.55s 4mb |-------------L0.?--------------| " + - "**** Simulation run 303, type=split(ReduceOverlap)(split_times=[1686855311077579811]). 1 Input Files, 7mb total:" + - "L0, all files 7mb " + - "L0.1425[1686854986870270256,1686855311972972960] 1686936871.55s|----------------------------------------L0.1425-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 7mb total:" + - "L0 " + - "L0.?[1686854986870270256,1686855311077579811] 1686936871.55s 7mb|-----------------------------------------L0.?------------------------------------------| " + - "L0.?[1686855311077579812,1686855311972972960] 1686936871.55s 19kb |L0.?|" + - "Committing partition 1:" + - " Soft Deleting 4 files: L0.1415, L0.1417, L0.1423, L0.1425" + - " Creating 8 files" + - "**** Simulation run 304, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686857724225846697, 1686858975397639357]). 19 Input Files, 297mb total:" + - "L0 " + - "L0.1260[1686856473054054037,1686856473054054039] 1686932677.39s 1b|L0.1260| " + - "L0.1035[1686856473054054040,1686856536496842959] 1686932677.39s 5mb|L0.1035| " + - "L0.979[1686856536496842960,1686857053594594580] 1686932677.39s 42mb |--L0.979--| " + - "L0.1265[1686857053594594581,1686857401918918899] 1686932677.39s 28mb |L0.1265| " + - "L0.1266[1686857401918918900,1686857634135135120] 1686932677.39s 19mb |L0.1266| " + - "L0.1121[1686857634135135121,1686857924405405390] 1686932677.39s 24mb |L0.1121| " + - "L0.1122[1686857924405405391,1686858214675675659] 1686932677.39s 24mb |L0.1122| " + - "L0.1327[1686858214675675660,1686858240168622590] 1686932677.39s 2mb |L0.1327| " + - "L0.1328[1686858240168622591,1686858278525917085] 1686932677.39s 3mb |L0.1328| " + - "L0.1283[1686858278525917086,1686858330783783762] 1686932677.39s 4mb |L0.1283| " + - "L0.1284[1686858330783783763,1686858795216216200] 1686932677.39s 38mb |-L0.1284-| " + - "L0.1123[1686858795216216201,1686859019000000000] 1686932677.39s 19mb |L0.1123| " + - "L0.1285[1686859019000000001,1686859259648648625] 1686932677.39s 20mb |L0.1285| " + - "L0.1286[1686859259648648626,1686859375756756740] 1686932677.39s 10mb |L0.1286| " + - "L1 " + - "L1.1235[1686856473054054037,1686857401918918899] 1686931893.7s 14mb|------L1.1235-------| " + - "L1.1236[1686857401918918900,1686858240168622590] 1686931893.7s 13mb |-----L1.1236------| " + - "L1.1273[1686858240168622591,1686858330783783762] 1686931893.7s 1mb |L1.1273| " + - "L1.1274[1686858330783783763,1686859259648648625] 1686931893.7s 14mb |------L1.1274-------| " + - "L1.1275[1686859259648648626,1686860188513513488] 1686931893.7s 14mb |------L1.1275-------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 297mb total:" + - "L1 " + - "L1.?[1686856473054054037,1686857724225846697] 1686932677.39s 100mb|------------L1.?------------| " + - "L1.?[1686857724225846698,1686858975397639357] 1686932677.39s 100mb |------------L1.?------------| " + - "L1.?[1686858975397639358,1686860188513513488] 1686932677.39s 97mb |-----------L1.?------------| " + - "Committing partition 1:" + - " Soft Deleting 19 files: L0.979, L0.1035, L0.1121, L0.1122, L0.1123, L1.1235, L1.1236, L0.1260, L0.1265, L0.1266, L1.1273, L1.1274, L1.1275, L0.1283, L0.1284, L0.1285, L0.1286, L0.1327, L0.1328" + - " Creating 3 files" + - "**** Simulation run 305, type=split(HighL0OverlapTotalBacklog)(split_times=[1686857216145945927]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1440[1686856473054054037,1686857724225846697] 1686932677.39s|----------------------------------------L1.1440-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686856473054054037,1686857216145945927] 1686932677.39s 59mb|-----------------------L1.?------------------------| " + - "L1.?[1686857216145945928,1686857724225846697] 1686932677.39s 41mb |---------------L1.?---------------| " + - "**** Simulation run 306, type=split(HighL0OverlapTotalBacklog)(split_times=[1686857216145945927]). 1 Input Files, 29mb total:" + - "L0, all files 29mb " + - "L0.1267[1686857053594594581,1686857401918918899] 1686935947.46s|----------------------------------------L0.1267-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 29mb total:" + - "L0 " + - "L0.?[1686857053594594581,1686857216145945927] 1686935947.46s 14mb|-----------------L0.?------------------| " + - "L0.?[1686857216145945928,1686857401918918899] 1686935947.46s 16mb |---------------------L0.?---------------------| " + - "**** Simulation run 307, type=split(HighL0OverlapTotalBacklog)(split_times=[1686857216145945927]). 1 Input Files, 2mb total:" + - "L0, all files 2mb " + - "L0.1269[1686857053594594581,1686857401918918899] 1686936871.55s|----------------------------------------L0.1269-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" + - "L0 " + - "L0.?[1686857053594594581,1686857216145945927] 1686936871.55s 1mb|-----------------L0.?------------------| " + - "L0.?[1686857216145945928,1686857401918918899] 1686936871.55s 1mb |---------------------L0.?---------------------| " + - "**** Simulation run 308, type=split(HighL0OverlapTotalBacklog)(split_times=[1686857959237837817, 1686858702329729707]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1441[1686857724225846698,1686858975397639357] 1686932677.39s|----------------------------------------L1.1441-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686857724225846698,1686857959237837817] 1686932677.39s 19mb|-----L1.?-----| " + - "L1.?[1686857959237837818,1686858702329729707] 1686932677.39s 59mb |-----------------------L1.?------------------------| " + - "L1.?[1686858702329729708,1686858975397639357] 1686932677.39s 22mb |------L1.?-------| " + - "**** Simulation run 309, type=split(HighL0OverlapTotalBacklog)(split_times=[1686857959237837817]). 1 Input Files, 24mb total:" + - "L0, all files 24mb " + - "L0.1166[1686857924405405391,1686858214675675659] 1686935947.46s|----------------------------------------L0.1166-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 24mb total:" + - "L0 " + - "L0.?[1686857924405405391,1686857959237837817] 1686935947.46s 3mb|--L0.?--| " + - "L0.?[1686857959237837818,1686858214675675659] 1686935947.46s 21mb |------------------------------------L0.?-------------------------------------| " + - "**** Simulation run 310, type=split(HighL0OverlapTotalBacklog)(split_times=[1686858702329729707]). 1 Input Files, 3mb total:" + - "L0, all files 3mb " + - "L0.1272[1686858330783783763,1686858795216216200] 1686936871.55s|----------------------------------------L0.1272-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 3mb total:" + - "L0 " + - "L0.?[1686858330783783763,1686858702329729707] 1686936871.55s 2mb|--------------------------------L0.?---------------------------------| " + - "L0.?[1686858702329729708,1686858795216216200] 1686936871.55s 626kb |------L0.?------| " + - "**** Simulation run 311, type=split(HighL0OverlapTotalBacklog)(split_times=[1686859445421621597]). 1 Input Files, 97mb total:" + - "L1, all files 97mb " + - "L1.1442[1686858975397639358,1686860188513513488] 1686932677.39s|----------------------------------------L1.1442-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 97mb total:" + - "L1 " + - "L1.?[1686858975397639358,1686859445421621597] 1686932677.39s 38mb|--------------L1.?--------------| " + - "L1.?[1686859445421621598,1686860188513513488] 1686932677.39s 59mb |------------------------L1.?-------------------------| " + - "**** Simulation run 312, type=split(HighL0OverlapTotalBacklog)(split_times=[1686859445421621597]). 1 Input Files, 10mb total:" + - "L0, all files 10mb " + - "L0.1125[1686859375756756741,1686859499000000000] 1686932677.39s|----------------------------------------L0.1125----------------------------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 10mb total:" + - "L0 " + - "L0.?[1686859375756756741,1686859445421621597] 1686932677.39s 6mb|----------------------L0.?----------------------| " + - "L0.?[1686859445421621598,1686859499000000000] 1686932677.39s 5mb |----------------L0.?-----------------| " + - "**** Simulation run 313, type=split(HighL0OverlapTotalBacklog)(split_times=[1686859445421621597]). 1 Input Files, 10mb total:" + - "L0, all files 10mb " + - "L0.1169[1686859375756756741,1686859499000000000] 1686935947.46s|----------------------------------------L0.1169----------------------------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 10mb total:" + - "L0 " + - "L0.?[1686859375756756741,1686859445421621597] 1686935947.46s 6mb|----------------------L0.?----------------------| " + - "L0.?[1686859445421621598,1686859499000000000] 1686935947.46s 4mb |----------------L0.?-----------------| " + - "**** Simulation run 314, type=split(HighL0OverlapTotalBacklog)(split_times=[1686859445421621597]). 1 Input Files, 408kb total:" + - "L0, all files 408kb " + - "L0.1210[1686859375756756741,1686859499000000000] 1686936871.55s|----------------------------------------L0.1210----------------------------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 408kb total:" + - "L0 " + - "L0.?[1686859375756756741,1686859445421621597] 1686936871.55s 231kb|----------------------L0.?----------------------| " + - "L0.?[1686859445421621598,1686859499000000000] 1686936871.55s 178kb |----------------L0.?-----------------| " + - "**** Simulation run 315, type=split(HighL0OverlapTotalBacklog)(split_times=[1686857959237837817]). 1 Input Files, 2mb total:" + - "L0, all files 2mb " + - "L0.1207[1686857924405405391,1686858214675675659] 1686936871.55s|----------------------------------------L0.1207-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" + - "L0 " + - "L0.?[1686857924405405391,1686857959237837817] 1686936871.55s 235kb|--L0.?--| " + - "L0.?[1686857959237837818,1686858214675675659] 1686936871.55s 2mb |------------------------------------L0.?-------------------------------------| " + - "**** Simulation run 316, type=split(HighL0OverlapTotalBacklog)(split_times=[1686858702329729707]). 1 Input Files, 39mb total:" + - "L0, all files 39mb " + - "L0.1282[1686858330783783763,1686858795216216200] 1686935947.46s|----------------------------------------L0.1282-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 39mb total:" + - "L0 " + - "L0.?[1686858330783783763,1686858702329729707] 1686935947.46s 31mb|--------------------------------L0.?---------------------------------| " + - "L0.?[1686858702329729708,1686858795216216200] 1686935947.46s 8mb |------L0.?------| " + - "Committing partition 1:" + - " Soft Deleting 12 files: L0.1125, L0.1166, L0.1169, L0.1207, L0.1210, L0.1267, L0.1269, L0.1272, L0.1282, L1.1440, L1.1441, L1.1442" + - " Creating 25 files" + - "**** Simulation run 317, type=split(ReduceOverlap)(split_times=[1686857724225846697]). 1 Input Files, 24mb total:" + - "L0, all files 24mb " + - "L0.1165[1686857634135135121,1686857924405405390] 1686935947.46s|----------------------------------------L0.1165-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 24mb total:" + - "L0 " + - "L0.?[1686857634135135121,1686857724225846697] 1686935947.46s 8mb|----------L0.?-----------| " + - "L0.?[1686857724225846698,1686857924405405390] 1686935947.46s 17mb |----------------------------L0.?----------------------------| " + - "**** Simulation run 318, type=split(ReduceOverlap)(split_times=[1686858975397639357]). 1 Input Files, 19mb total:" + - "L0, all files 19mb " + - "L0.1167[1686858795216216201,1686859019000000000] 1686935947.46s|----------------------------------------L0.1167-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 19mb total:" + - "L0 " + - "L0.?[1686858795216216201,1686858975397639357] 1686935947.46s 15mb|---------------------------------L0.?---------------------------------| " + - "L0.?[1686858975397639358,1686859019000000000] 1686935947.46s 4mb |-----L0.?------| " + - "**** Simulation run 319, type=split(ReduceOverlap)(split_times=[1686857724225846697]). 1 Input Files, 2mb total:" + - "L0, all files 2mb " + - "L0.1206[1686857634135135121,1686857924405405390] 1686936871.55s|----------------------------------------L0.1206-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" + - "L0 " + - "L0.?[1686857634135135121,1686857724225846697] 1686936871.55s 607kb|----------L0.?-----------| " + - "L0.?[1686857724225846698,1686857924405405390] 1686936871.55s 1mb |----------------------------L0.?----------------------------| " + - "**** Simulation run 320, type=split(ReduceOverlap)(split_times=[1686858975397639357]). 1 Input Files, 741kb total:" + - "L0, all files 741kb " + - "L0.1208[1686858795216216201,1686859019000000000] 1686936871.55s|----------------------------------------L0.1208-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 741kb total:" + - "L0 " + - "L0.?[1686858795216216201,1686858975397639357] 1686936871.55s 597kb|---------------------------------L0.?---------------------------------| " + - "L0.?[1686858975397639358,1686859019000000000] 1686936871.55s 144kb |-----L0.?------| " + - "Committing partition 1:" + - " Soft Deleting 4 files: L0.1165, L0.1167, L0.1206, L0.1208" + - " Creating 8 files" + - "**** Simulation run 321, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686860002800686531, 1686861030203733704]). 14 Input Files, 299mb total:" + - "L0 " + - "L0.1458[1686859375756756741,1686859445421621597] 1686932677.39s 6mb |L0.1458| " + - "L0.1459[1686859445421621598,1686859499000000000] 1686932677.39s 5mb |L0.1459| " + - "L0.1126[1686859499000000001,1686859666027027010] 1686932677.39s 14mb |L0.1126| " + - "L0.1127[1686859666027027011,1686859956297297279] 1686932677.39s 25mb |L0.1127| " + - "L0.1059[1686859956297297280,1686859969989511638] 1686932677.39s 1mb |L0.1059| " + - "L0.1293[1686859969989511639,1686860188513513488] 1686932677.39s 19mb |L0.1293| " + - "L0.1294[1686860188513513489,1686860536837837820] 1686932677.39s 30mb |L0.1294-| " + - "L0.1297[1686860536837837821,1686861117378378351] 1686932677.39s 49mb |----L0.1297----| " + - "L0.1298[1686861117378378352,1686861117378378360] 1686932677.39s 1b |L0.1298| " + - "L0.1128[1686861117378378361,1686861407648648630] 1686932677.39s 25mb |L0.1128| " + - "L1 " + - "L1.1456[1686858975397639358,1686859445421621597] 1686932677.39s 38mb|--L1.1456--| " + - "L1.1457[1686859445421621598,1686860188513513488] 1686932677.39s 59mb |------L1.1457------| " + - "L1.1276[1686860188513513489,1686861117378378351] 1686931893.7s 14mb |---------L1.1276---------| " + - "L1.1277[1686861117378378352,1686862046243243214] 1686931893.7s 14mb |---------L1.1277---------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 299mb total:" + - "L1 " + - "L1.?[1686858975397639358,1686860002800686531] 1686932677.39s 100mb|------------L1.?------------| " + - "L1.?[1686860002800686532,1686861030203733704] 1686932677.39s 100mb |------------L1.?------------| " + - "L1.?[1686861030203733705,1686862046243243214] 1686932677.39s 99mb |-----------L1.?------------| " + - "Committing partition 1:" + - " Soft Deleting 14 files: L0.1059, L0.1126, L0.1127, L0.1128, L1.1276, L1.1277, L0.1293, L0.1294, L0.1297, L0.1298, L1.1456, L1.1457, L0.1458, L0.1459" + - " Creating 3 files" + - "**** Simulation run 322, type=split(HighL0OverlapTotalBacklog)(split_times=[1686859589566760129]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1476[1686858975397639358,1686860002800686531] 1686932677.39s|----------------------------------------L1.1476-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686858975397639358,1686859589566760129] 1686932677.39s 60mb|-----------------------L1.?------------------------| " + - "L1.?[1686859589566760130,1686860002800686531] 1686932677.39s 40mb |---------------L1.?---------------| " + - "**** Simulation run 323, type=split(HighL0OverlapTotalBacklog)(split_times=[1686859589566760129]). 1 Input Files, 14mb total:" + - "L0, all files 14mb " + - "L0.1170[1686859499000000001,1686859666027027010] 1686935947.46s|----------------------------------------L0.1170-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 14mb total:" + - "L0 " + - "L0.?[1686859499000000001,1686859589566760129] 1686935947.46s 8mb|---------------------L0.?---------------------| " + - "L0.?[1686859589566760130,1686859666027027010] 1686935947.46s 6mb |-----------------L0.?------------------| " + - "**** Simulation run 324, type=split(HighL0OverlapTotalBacklog)(split_times=[1686859589566760129]). 1 Input Files, 553kb total:" + - "L0, all files 553kb " + - "L0.1211[1686859499000000001,1686859666027027010] 1686936871.55s|----------------------------------------L0.1211-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 553kb total:" + - "L0 " + - "L0.?[1686859499000000001,1686859589566760129] 1686936871.55s 300kb|---------------------L0.?---------------------| " + - "L0.?[1686859589566760130,1686859666027027010] 1686936871.55s 253kb |-----------------L0.?------------------| " + - "**** Simulation run 325, type=split(HighL0OverlapTotalBacklog)(split_times=[1686860203735880900, 1686860817905001671]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1477[1686860002800686532,1686861030203733704] 1686932677.39s|----------------------------------------L1.1477-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686860002800686532,1686860203735880900] 1686932677.39s 20mb|-----L1.?------| " + - "L1.?[1686860203735880901,1686860817905001671] 1686932677.39s 60mb |-----------------------L1.?------------------------| " + - "L1.?[1686860817905001672,1686861030203733704] 1686932677.39s 21mb |------L1.?------| " + - "**** Simulation run 326, type=split(HighL0OverlapTotalBacklog)(split_times=[1686860203735880900]). 1 Input Files, 29mb total:" + - "L0, all files 29mb " + - "L0.1296[1686860188513513489,1686860536837837820] 1686935947.46s|----------------------------------------L0.1296-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 29mb total:" + - "L0 " + - "L0.?[1686860188513513489,1686860203735880900] 1686935947.46s 1mb|L0.?| " + - "L0.?[1686860203735880901,1686860536837837820] 1686935947.46s 28mb |----------------------------------------L0.?----------------------------------------| " + - "**** Simulation run 327, type=split(HighL0OverlapTotalBacklog)(split_times=[1686860203735880900]). 1 Input Files, 1mb total:" + - "L0, all files 1mb " + - "L0.1292[1686860188513513489,1686860536837837820] 1686936871.55s|----------------------------------------L0.1292-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 1mb total:" + - "L0 " + - "L0.?[1686860188513513489,1686860203735880900] 1686936871.55s 50kb|L0.?| " + - "L0.?[1686860203735880901,1686860536837837820] 1686936871.55s 1mb |----------------------------------------L0.?----------------------------------------| " + - "**** Simulation run 328, type=split(HighL0OverlapTotalBacklog)(split_times=[1686860817905001671]). 1 Input Files, 49mb total:" + - "L0, all files 49mb " + - "L0.1299[1686860536837837821,1686861117378378351] 1686935947.46s|----------------------------------------L0.1299-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 49mb total:" + - "L0 " + - "L0.?[1686860536837837821,1686860817905001671] 1686935947.46s 24mb|------------------L0.?-------------------| " + - "L0.?[1686860817905001672,1686861117378378351] 1686935947.46s 25mb |--------------------L0.?--------------------| " + - "**** Simulation run 329, type=split(HighL0OverlapTotalBacklog)(split_times=[1686860817905001671]). 1 Input Files, 2mb total:" + - "L0, all files 2mb " + - "L0.1301[1686860536837837821,1686861117378378351] 1686936871.55s|----------------------------------------L0.1301-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" + - "L0 " + - "L0.?[1686860536837837821,1686860817905001671] 1686936871.55s 931kb|------------------L0.?-------------------| " + - "L0.?[1686860817905001672,1686861117378378351] 1686936871.55s 992kb |--------------------L0.?--------------------| " + - "**** Simulation run 330, type=split(HighL0OverlapTotalBacklog)(split_times=[1686861432074122442]). 1 Input Files, 99mb total:" + - "L1, all files 99mb " + - "L1.1478[1686861030203733705,1686862046243243214] 1686932677.39s|----------------------------------------L1.1478-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 99mb total:" + - "L1 " + - "L1.?[1686861030203733705,1686861432074122442] 1686932677.39s 39mb|--------------L1.?---------------| " + - "L1.?[1686861432074122443,1686862046243243214] 1686932677.39s 60mb |------------------------L1.?------------------------| " + - "**** Simulation run 331, type=split(HighL0OverlapTotalBacklog)(split_times=[1686861432074122442]). 1 Input Files, 25mb total:" + - "L0, all files 25mb " + - "L0.1129[1686861407648648631,1686861697918918899] 1686932677.39s|----------------------------------------L0.1129-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 25mb total:" + - "L0 " + - "L0.?[1686861407648648631,1686861432074122442] 1686932677.39s 2mb|L0.?-| " + - "L0.?[1686861432074122443,1686861697918918899] 1686932677.39s 23mb |--------------------------------------L0.?--------------------------------------| " + - "**** Simulation run 332, type=split(HighL0OverlapTotalBacklog)(split_times=[1686861432074122442]). 1 Input Files, 24mb total:" + - "L0, all files 24mb " + - "L0.1173[1686861407648648631,1686861697918918899] 1686935947.46s|----------------------------------------L0.1173-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 24mb total:" + - "L0 " + - "L0.?[1686861407648648631,1686861432074122442] 1686935947.46s 2mb|L0.?-| " + - "L0.?[1686861432074122443,1686861697918918899] 1686935947.46s 22mb |--------------------------------------L0.?--------------------------------------| " + - "**** Simulation run 333, type=split(HighL0OverlapTotalBacklog)(split_times=[1686861432074122442]). 1 Input Files, 962kb total:" + - "L0, all files 962kb " + - "L0.1214[1686861407648648631,1686861697918918899] 1686936871.55s|----------------------------------------L0.1214-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 962kb total:" + - "L0 " + - "L0.?[1686861407648648631,1686861432074122442] 1686936871.55s 81kb|L0.?-| " + - "L0.?[1686861432074122443,1686861697918918899] 1686936871.55s 881kb |--------------------------------------L0.?--------------------------------------| " + - "Committing partition 1:" + - " Soft Deleting 12 files: L0.1129, L0.1170, L0.1173, L0.1211, L0.1214, L0.1292, L0.1296, L0.1299, L0.1301, L1.1476, L1.1477, L1.1478" + - " Creating 25 files" + - "**** Simulation run 334, type=split(ReduceOverlap)(split_times=[1686860002800686531]). 1 Input Files, 17mb total:" + - "L0, all files 17mb " + - "L0.1295[1686859988431489231,1686860188513513488] 1686935947.46s|----------------------------------------L0.1295-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 17mb total:" + - "L0 " + - "L0.?[1686859988431489231,1686860002800686531] 1686935947.46s 1mb|L0.?| " + - "L0.?[1686860002800686532,1686860188513513488] 1686935947.46s 16mb |--------------------------------------L0.?---------------------------------------| " + - "**** Simulation run 335, type=split(ReduceOverlap)(split_times=[1686861030203733704]). 1 Input Files, 25mb total:" + - "L0, all files 25mb " + - "L0.1493[1686860817905001672,1686861117378378351] 1686935947.46s|----------------------------------------L0.1493-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 25mb total:" + - "L0 " + - "L0.?[1686860817905001672,1686861030203733704] 1686935947.46s 18mb|----------------------------L0.?-----------------------------| " + - "L0.?[1686861030203733705,1686861117378378351] 1686935947.46s 7mb |----------L0.?----------| " + - "**** Simulation run 336, type=split(ReduceOverlap)(split_times=[1686860002800686531]). 1 Input Files, 769kb total:" + - "L0, all files 769kb " + - "L0.1291[1686859956297297280,1686860188513513488] 1686936871.55s|----------------------------------------L0.1291----------------------------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 769kb total:" + - "L0 " + - "L0.?[1686859956297297280,1686860002800686531] 1686936871.55s 154kb|------L0.?------| " + - "L0.?[1686860002800686532,1686860188513513488] 1686936871.55s 615kb |--------------------------------L0.?---------------------------------| " + - "**** Simulation run 337, type=split(ReduceOverlap)(split_times=[1686861030203733704]). 1 Input Files, 992kb total:" + - "L0, all files 992kb " + - "L0.1495[1686860817905001672,1686861117378378351] 1686936871.55s|----------------------------------------L0.1495-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 992kb total:" + - "L0 " + - "L0.?[1686860817905001672,1686861030203733704] 1686936871.55s 703kb|----------------------------L0.?-----------------------------| " + - "L0.?[1686861030203733705,1686861117378378351] 1686936871.55s 289kb |----------L0.?----------| " + - "Committing partition 1:" + - " Soft Deleting 4 files: L0.1291, L0.1295, L0.1493, L0.1495" + - " Creating 8 files" + - "**** Simulation run 338, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686862070968521403, 1686863111733309101]). 12 Input Files, 276mb total:" + - "L0 " + - "L0.1498[1686861407648648631,1686861432074122442] 1686932677.39s 2mb |L0.1498| " + - "L0.1499[1686861432074122443,1686861697918918899] 1686932677.39s 23mb |L0.1499| " + - "L0.1074[1686861697918918900,1686861711611133258] 1686932677.39s 1mb |L0.1074| " + - "L0.1305[1686861711611133259,1686862046243243214] 1686932677.39s 28mb |L0.1305-| " + - "L0.1306[1686862046243243215,1686862278459459440] 1686932677.39s 20mb |L0.1306| " + - "L0.1081[1686862278459459441,1686862858999999980] 1686932677.39s 49mb |----L0.1081-----| " + - "L0.1309[1686862858999999981,1686862975108108077] 1686932677.39s 10mb |L0.1309| " + - "L0.1310[1686862975108108078,1686863149270270250] 1686932677.39s 15mb |L0.1310| " + - "L1 " + - "L1.1496[1686861030203733705,1686861432074122442] 1686932677.39s 39mb|-L1.1496--| " + - "L1.1497[1686861432074122443,1686862046243243214] 1686932677.39s 60mb |-----L1.1497-----| " + - "L1.1278[1686862046243243215,1686862975108108077] 1686931893.7s 14mb |----------L1.1278----------| " + - "L1.1279[1686862975108108078,1686863903972972940] 1686931893.7s 14mb |----------L1.1279----------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 276mb total:" + - "L1 " + - "L1.?[1686861030203733705,1686862070968521403] 1686932677.39s 100mb|-------------L1.?-------------| " + - "L1.?[1686862070968521404,1686863111733309101] 1686932677.39s 100mb |-------------L1.?-------------| " + - "L1.?[1686863111733309102,1686863903972972940] 1686932677.39s 76mb |---------L1.?---------| " + - "Committing partition 1:" + - " Soft Deleting 12 files: L0.1074, L0.1081, L1.1278, L1.1279, L0.1305, L0.1306, L0.1309, L0.1310, L1.1496, L1.1497, L0.1498, L0.1499" + - " Creating 3 files" + - "**** Simulation run 339, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686842547242379893, 1686843715484759786]). 18 Input Files, 298mb total:" + - "L0 " + - "L0.1149[1686841379000000000,1686842249810810810] 1686935947.46s 72mb|------L0.1149-------| " + - "L0.1342[1686842249810810811,1686842540081081080] 1686935947.46s 24mb |L0.1342| " + - "L0.1352[1686842540081081081,1686842571022320444] 1686935947.46s 3mb |L0.1352| " + - "L0.1353[1686842571022320445,1686842593136179151] 1686935947.46s 2mb |L0.1353| " + - "L0.939[1686842593136179152,1686843120621621620] 1686935947.46s 43mb |--L0.939---| " + - "L0.1348[1686843120621621621,1686843701162162160] 1686935947.46s 48mb |--L0.1348---| " + - "L0.1354[1686843701162162161,1686843763044640888] 1686935947.46s 5mb |L0.1354| " + - "L0.1355[1686843763044640889,1686843991432432430] 1686935947.46s 19mb |L0.1355| " + - "L0.1152[1686843991432432431,1686844334757800771] 1686935947.46s 28mb |L0.1152| " + - "L0.944[1686844334757800772,1686844862243243240] 1686935947.46s 43mb |--L0.944---| " + - "L0.1184[1686841379000000000,1686842249810810810] 1686936871.55s 3mb|------L0.1184-------| " + - "L0.1344[1686842249810810811,1686842540081081080] 1686936871.55s 962kb |L0.1344| " + - "L0.1356[1686842540081081081,1686842571022320444] 1686936871.55s 103kb |L0.1356| " + - "L0.1357[1686842571022320445,1686843120621621620] 1686936871.55s 2mb |--L0.1357---| " + - "L0.1350[1686843120621621621,1686843701162162160] 1686936871.55s 2mb |--L0.1350---| " + - "L0.1358[1686843701162162161,1686843763044640888] 1686936871.55s 205kb |L0.1358| " + - "L0.1359[1686843763044640889,1686843991432432430] 1686936871.55s 757kb |L0.1359| " + - "L0.1187[1686843991432432431,1686844862243243240] 1686936871.55s 3mb |------L0.1187-------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 298mb total:" + - "L0 " + - "L0.?[1686841379000000000,1686842547242379893] 1686936871.55s 100mb|------------L0.?------------| " + - "L0.?[1686842547242379894,1686843715484759786] 1686936871.55s 100mb |------------L0.?------------| " + - "L0.?[1686843715484759787,1686844862243243240] 1686936871.55s 98mb |-----------L0.?------------| " + - "Committing partition 1:" + - " Soft Deleting 18 files: L0.939, L0.944, L0.1149, L0.1152, L0.1184, L0.1187, L0.1342, L0.1344, L0.1348, L0.1350, L0.1352, L0.1353, L0.1354, L0.1355, L0.1356, L0.1357, L0.1358, L0.1359" + - " Creating 3 files" + - "**** Simulation run 340, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686846030485623133, 1686847198728003025]). 20 Input Files, 298mb total:" + - "L0 " + - "L0.1153[1686844862243243241,1686845579000000000] 1686935947.46s 59mb|----L0.1153-----| " + - "L0.1154[1686845579000000001,1686845733054054050] 1686935947.46s 13mb |L0.1154| " + - "L0.1365[1686845733054054051,1686846023324324320] 1686935947.46s 24mb |L0.1365| " + - "L0.1375[1686846023324324321,1686846054770701976] 1686935947.46s 3mb |L0.1375| " + - "L0.1376[1686846054770701977,1686846076379422391] 1686935947.46s 2mb |L0.1376| " + - "L0.949[1686846076379422392,1686846603864864860] 1686935947.46s 43mb |--L0.949---| " + - "L0.1371[1686846603864864861,1686847184405405399] 1686935947.46s 48mb |--L0.1371---| " + - "L0.1377[1686847184405405400,1686847247298160711] 1686935947.46s 5mb |L0.1377| " + - "L0.1378[1686847247298160712,1686847474675675670] 1686935947.46s 19mb |L0.1378| " + - "L0.1157[1686847474675675671,1686847818001044011] 1686935947.46s 28mb |L0.1157| " + - "L0.953[1686847818001044012,1686848345486486480] 1686935947.46s 43mb |--L0.953---| " + - "L0.1188[1686844862243243241,1686845579000000000] 1686936871.55s 2mb|----L0.1188-----| " + - "L0.1189[1686845579000000001,1686845733054054050] 1686936871.55s 510kb |L0.1189| " + - "L0.1367[1686845733054054051,1686846023324324320] 1686936871.55s 962kb |L0.1367| " + - "L0.1379[1686846023324324321,1686846054770701976] 1686936871.55s 104kb |L0.1379| " + - "L0.1380[1686846054770701977,1686846603864864860] 1686936871.55s 2mb |--L0.1380---| " + - "L0.1373[1686846603864864861,1686847184405405399] 1686936871.55s 2mb |--L0.1373---| " + - "L0.1381[1686847184405405400,1686847247298160711] 1686936871.55s 208kb |L0.1381| " + - "L0.1382[1686847247298160712,1686847474675675670] 1686936871.55s 753kb |L0.1382| " + - "L0.1192[1686847474675675671,1686848345486486480] 1686936871.55s 3mb |------L0.1192-------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 298mb total:" + - "L0 " + - "L0.?[1686844862243243241,1686846030485623133] 1686936871.55s 100mb|------------L0.?------------| " + - "L0.?[1686846030485623134,1686847198728003025] 1686936871.55s 100mb |------------L0.?------------| " + - "L0.?[1686847198728003026,1686848345486486480] 1686936871.55s 98mb |-----------L0.?------------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.949, L0.953, L0.1153, L0.1154, L0.1157, L0.1188, L0.1189, L0.1192, L0.1365, L0.1367, L0.1371, L0.1373, L0.1375, L0.1376, L0.1377, L0.1378, L0.1379, L0.1380, L0.1381, L0.1382" + - " Creating 3 files" + - "**** Simulation run 341, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686849491497710570, 1686850637508934659]). 19 Input Files, 228mb total:" + - "L0 " + - "L0.1158[1686848345486486481,1686849216297297290] 1686935947.46s 71mb|----------L0.1158----------| " + - "L0.1388[1686849216297297291,1686849506567567560] 1686935947.46s 24mb |L0.1388| " + - "L0.1398[1686849506567567561,1686849559289331160] 1686935947.46s 4mb |L0.1398| " + - "L0.1399[1686849559289331161,1686849568759166090] 1686935947.46s 793kb |L0.1399| " + - "L0.1160[1686849568759166091,1686849779000000000] 1686935947.46s 17mb |L0.1160| " + - "L0.1161[1686849779000000001,1686850087108108100] 1686935947.46s 25mb |L0.1161-| " + - "L0.1162[1686850087108108101,1686850559000000000] 1686935947.46s 39mb |---L0.1162----| " + - "L0.1394[1686850559000000001,1686850667648648639] 1686935947.46s 9mb |L0.1394| " + - "L0.1400[1686850667648648640,1686850773092175839] 1686935947.46s 9mb |L0.1400| " + - "L0.1401[1686850773092175840,1686850957918918910] 1686935947.46s 15mb |L0.1401|" + - "L0.1193[1686848345486486481,1686849216297297290] 1686936871.55s 6mb|----------L0.1193----------| " + - "L0.1390[1686849216297297291,1686849506567567560] 1686936871.55s 2mb |L0.1390| " + - "L0.1402[1686849506567567561,1686849559289331160] 1686936871.55s 342kb |L0.1402| " + - "L0.1403[1686849559289331161,1686849779000000000] 1686936871.55s 1mb |L0.1403| " + - "L0.1195[1686849779000000001,1686850087108108100] 1686936871.55s 2mb |L0.1195-| " + - "L0.1196[1686850087108108101,1686850559000000000] 1686936871.55s 2mb |---L0.1196----| " + - "L0.1396[1686850559000000001,1686850667648648639] 1686936871.55s 360kb |L0.1396| " + - "L0.1404[1686850667648648640,1686850773092175839] 1686936871.55s 349kb |L0.1404| " + - "L0.1405[1686850773092175840,1686850957918918910] 1686936871.55s 612kb |L0.1405|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 228mb total:" + - "L0 " + - "L0.?[1686848345486486481,1686849491497710570] 1686936871.55s 100mb|----------------L0.?-----------------| " + - "L0.?[1686849491497710571,1686850637508934659] 1686936871.55s 100mb |----------------L0.?-----------------| " + - "L0.?[1686850637508934660,1686850957918918910] 1686936871.55s 28mb |--L0.?---| " + - "Committing partition 1:" + - " Soft Deleting 19 files: L0.1158, L0.1160, L0.1161, L0.1162, L0.1193, L0.1195, L0.1196, L0.1388, L0.1390, L0.1394, L0.1396, L0.1398, L0.1399, L0.1400, L0.1401, L0.1402, L0.1403, L0.1404, L0.1405" + - " Creating 3 files" + - "**** Simulation run 342, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686851943085513215, 1686852928252107519]). 15 Input Files, 277mb total:" + - "L0 " + - "L0.1140[1686851828729729721,1686852699540540530] 1686934966.48s 62mb |---------L0.1140----------| " + - "L0.1237[1686852699540540531,1686852757594594584] 1686934966.48s 4mb |L0.1237| " + - "L0.1238[1686852757594594585,1686853236700974398] 1686934966.48s 34mb |---L0.1238---| " + - "L0.1413[1686853236700974399,1686853500686486475] 1686934966.48s 19mb |L0.1413| " + - "L0.1414[1686853500686486476,1686853570351351340] 1686934966.48s 5mb |L0.1414|" + - "L0.1243[1686853570351351341,1686853686459459447] 1686935546.05s 8mb |L0.1243|" + - "L0.1164[1686850957918918911,1686851301244287251] 1686935947.46s 28mb|-L0.1164-| " + - "L0.963[1686851301244287252,1686851828729729720] 1686935947.46s 43mb |----L0.963-----| " + - "L0.1198[1686850957918918911,1686851828729729720] 1686936871.55s 3mb|---------L0.1198----------| " + - "L0.1199[1686851828729729721,1686852699540540530] 1686936871.55s 34mb |---------L0.1199----------| " + - "L0.1239[1686852699540540531,1686852757594594584] 1686936871.55s 2mb |L0.1239| " + - "L0.1240[1686852757594594585,1686853222027027016] 1686936871.55s 18mb |---L0.1240---| " + - "L0.1411[1686853222027027017,1686853500686486475] 1686936871.55s 11mb |L0.1411| " + - "L0.1412[1686853500686486476,1686853570351351340] 1686936871.55s 3mb |L0.1412|" + - "L0.1245[1686853570351351341,1686853686459459447] 1686936871.55s 2mb |L0.1245|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 277mb total:" + - "L0 " + - "L0.?[1686850957918918911,1686851943085513215] 1686936871.55s 100mb|-------------L0.?-------------| " + - "L0.?[1686851943085513216,1686852928252107519] 1686936871.55s 100mb |-------------L0.?-------------| " + - "L0.?[1686852928252107520,1686853686459459447] 1686936871.55s 77mb |---------L0.?----------| " + - "Committing partition 1:" + - " Soft Deleting 15 files: L0.963, L0.1140, L0.1164, L0.1198, L0.1199, L0.1237, L0.1238, L0.1239, L0.1240, L0.1243, L0.1245, L0.1411, L0.1412, L0.1413, L0.1414" + - " Creating 3 files" + - "**** Simulation run 343, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686854918102788682, 1686856149746117916]). 20 Input Files, 226mb total:" + - "L0 " + - "L0.1432[1686853686459459448,1686854034336087198] 1686935546.05s 23mb|-L0.1432-| " + - "L0.1433[1686854034336087199,1686854243778378365] 1686935546.05s 14mb |L0.1433| " + - "L0.1416[1686854243778378366,1686854441162162150] 1686935546.05s 13mb |L0.1416| " + - "L0.1249[1686854441162162151,1686854615324324310] 1686935546.05s 12mb |L0.1249| " + - "L0.1250[1686854615324324311,1686854819000000000] 1686935546.05s 14mb |L0.1250| " + - "L0.1146[1686854819000000001,1686854963648648636] 1686935546.05s 10mb |L0.1146| " + - "L0.1422[1686854963648648637,1686854986870270255] 1686935546.05s 2mb |L0.1422| " + - "L0.1434[1686854986870270256,1686855311077579811] 1686935546.05s 22mb |L0.1434-| " + - "L0.1435[1686855311077579812,1686855311972972960] 1686935546.05s 62kb |L0.1435| " + - "L0.1255[1686855311972972961,1686855544189189173] 1686935742.51s 19mb |L0.1255| " + - "L0.1428[1686855544189189174,1686855729962162145] 1686935742.51s 15mb |L0.1428| " + - "L0.1429[1686855729962162146,1686855892513513500] 1686935742.51s 13mb |L0.1429| " + - "L0.1147[1686855892513513501,1686856182783783770] 1686935742.51s 23mb |L0.1147| " + - "L0.1261[1686856182783783771,1686856473054054036] 1686935742.51s 23mb |L0.1261| " + - "L0.1262[1686856473054054037,1686856473054054039] 1686935742.51s 1b |L0.1262|" + - "L0.1436[1686853686459459448,1686854034336087198] 1686936871.55s 7mb|-L0.1436-| " + - "L0.1437[1686854034336087199,1686854243778378365] 1686936871.55s 4mb |L0.1437| " + - "L0.1418[1686854243778378366,1686854441162162150] 1686936871.55s 4mb |L0.1418| " + - "L0.1251[1686854441162162151,1686854615324324310] 1686936871.55s 4mb |L0.1251| " + - "L0.1252[1686854615324324311,1686854819000000000] 1686936871.55s 4mb |L0.1252| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 226mb total:" + - "L0 " + - "L0.?[1686853686459459448,1686854918102788682] 1686936871.55s 100mb|----------------L0.?-----------------| " + - "L0.?[1686854918102788683,1686856149746117916] 1686936871.55s 100mb |----------------L0.?-----------------| " + - "L0.?[1686856149746117917,1686856473054054039] 1686936871.55s 26mb |--L0.?--| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.1146, L0.1147, L0.1249, L0.1250, L0.1251, L0.1252, L0.1255, L0.1261, L0.1262, L0.1416, L0.1418, L0.1422, L0.1428, L0.1429, L0.1432, L0.1433, L0.1434, L0.1435, L0.1436, L0.1437" + - " Creating 3 files" + - "**** Simulation run 344, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686856142243243231]). 10 Input Files, 22mb total:" + - "L0 " + - "L0.1203[1686854819000000001,1686854963648648636] 1686936871.55s 3mb|L0.1203| " + - "L0.1424[1686854963648648637,1686854986870270255] 1686936871.55s 499kb |L0.1424| " + - "L0.1438[1686854986870270256,1686855311077579811] 1686936871.55s 7mb |----L0.1438----| " + - "L0.1439[1686855311077579812,1686855311972972960] 1686936871.55s 19kb |L0.1439| " + - "L0.1257[1686855311972972961,1686855544189189173] 1686936871.55s 2mb |-L0.1257--| " + - "L0.1430[1686855544189189174,1686855729962162145] 1686936871.55s 2mb |L0.1430-| " + - "L0.1431[1686855729962162146,1686855892513513500] 1686936871.55s 2mb |L0.1431| " + - "L0.1204[1686855892513513501,1686856182783783770] 1686936871.55s 3mb |---L0.1204---| " + - "L0.1263[1686856182783783771,1686856473054054036] 1686936871.55s 3mb |---L0.1263---| " + - "L0.1264[1686856473054054037,1686856473054054039] 1686936871.55s 1b |L0.1264|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 22mb total:" + - "L0 " + - "L0.?[1686854819000000001,1686856142243243231] 1686936871.55s 17mb|--------------------------------L0.?---------------------------------| " + - "L0.?[1686856142243243232,1686856473054054039] 1686936871.55s 4mb |-----L0.?------| " + - "Committing partition 1:" + - " Soft Deleting 10 files: L0.1203, L0.1204, L0.1257, L0.1263, L0.1264, L0.1424, L0.1430, L0.1431, L0.1438, L0.1439" + - " Creating 2 files" + - "**** Simulation run 345, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686857679795016021, 1686858886535978002]). 20 Input Files, 251mb total:" + - "L0 " + - "L0.1038[1686856473054054040,1686856564304278603] 1686935742.51s 7mb|L0.1038| " + - "L0.981[1686856564304278604,1686857053594594580] 1686935742.51s 39mb |---L0.981---| " + - "L0.1445[1686857053594594581,1686857216145945927] 1686935947.46s 14mb |L0.1445| " + - "L0.1446[1686857216145945928,1686857401918918899] 1686935947.46s 16mb |L0.1446| " + - "L0.1268[1686857401918918900,1686857634135135120] 1686935947.46s 19mb |L0.1268| " + - "L0.1468[1686857634135135121,1686857724225846697] 1686935947.46s 8mb |L0.1468| " + - "L0.1469[1686857724225846698,1686857924405405390] 1686935947.46s 17mb |L0.1469| " + - "L0.1452[1686857924405405391,1686857959237837817] 1686935947.46s 3mb |L0.1452| " + - "L0.1453[1686857959237837818,1686858214675675659] 1686935947.46s 21mb |L0.1453| " + - "L0.1333[1686858214675675660,1686858240168622590] 1686935947.46s 2mb |L0.1333| " + - "L0.1334[1686858240168622591,1686858251288003855] 1686935947.46s 951kb |L0.1334| " + - "L0.1281[1686858251288003856,1686858330783783762] 1686935947.46s 7mb |L0.1281| " + - "L0.1466[1686858330783783763,1686858702329729707] 1686935947.46s 31mb |-L0.1466-| " + - "L0.1467[1686858702329729708,1686858795216216200] 1686935947.46s 8mb |L0.1467| " + - "L0.1470[1686858795216216201,1686858975397639357] 1686935947.46s 15mb |L0.1470| " + - "L0.1471[1686858975397639358,1686859019000000000] 1686935947.46s 4mb |L0.1471| " + - "L0.1287[1686859019000000001,1686859259648648625] 1686935947.46s 20mb |L0.1287| " + - "L0.1288[1686859259648648626,1686859375756756740] 1686935947.46s 10mb |L0.1288|" + - "L0.1460[1686859375756756741,1686859445421621597] 1686935947.46s 6mb |L0.1460|" + - "L0.1461[1686859445421621598,1686859499000000000] 1686935947.46s 4mb |L0.1461|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 251mb total:" + - "L0 " + - "L0.?[1686856473054054040,1686857679795016021] 1686935947.46s 100mb|--------------L0.?---------------| " + - "L0.?[1686857679795016022,1686858886535978002] 1686935947.46s 100mb |--------------L0.?---------------| " + - "L0.?[1686858886535978003,1686859499000000000] 1686935947.46s 51mb |------L0.?------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.981, L0.1038, L0.1268, L0.1281, L0.1287, L0.1288, L0.1333, L0.1334, L0.1445, L0.1446, L0.1452, L0.1453, L0.1460, L0.1461, L0.1466, L0.1467, L0.1468, L0.1469, L0.1470, L0.1471" + - " Creating 3 files" + - "**** Simulation run 346, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686859027432432416]). 20 Input Files, 33mb total:" + - "L0 " + - "L0.1481[1686859499000000001,1686859589566760129] 1686935947.46s 8mb |L0.1481|" + - "L0.1482[1686859589566760130,1686859666027027010] 1686935947.46s 6mb |L0.1482|" + - "L0.1041[1686856473054054040,1686857053594594580] 1686936871.55s 6mb|---L0.1041----| " + - "L0.1447[1686857053594594581,1686857216145945927] 1686936871.55s 1mb |L0.1447| " + - "L0.1448[1686857216145945928,1686857401918918899] 1686936871.55s 1mb |L0.1448| " + - "L0.1270[1686857401918918900,1686857634135135120] 1686936871.55s 2mb |L0.1270| " + - "L0.1472[1686857634135135121,1686857724225846697] 1686936871.55s 607kb |L0.1472| " + - "L0.1473[1686857724225846698,1686857924405405390] 1686936871.55s 1mb |L0.1473| " + - "L0.1464[1686857924405405391,1686857959237837817] 1686936871.55s 235kb |L0.1464| " + - "L0.1465[1686857959237837818,1686858214675675659] 1686936871.55s 2mb |L0.1465| " + - "L0.1335[1686858214675675660,1686858240168622590] 1686936871.55s 172kb |L0.1335| " + - "L0.1336[1686858240168622591,1686858330783783762] 1686936871.55s 611kb |L0.1336| " + - "L0.1454[1686858330783783763,1686858702329729707] 1686936871.55s 2mb |L0.1454-| " + - "L0.1455[1686858702329729708,1686858795216216200] 1686936871.55s 626kb |L0.1455| " + - "L0.1474[1686858795216216201,1686858975397639357] 1686936871.55s 597kb |L0.1474| " + - "L0.1475[1686858975397639358,1686859019000000000] 1686936871.55s 144kb |L0.1475| " + - "L0.1289[1686859019000000001,1686859259648648625] 1686936871.55s 797kb |L0.1289| " + - "L0.1290[1686859259648648626,1686859375756756740] 1686936871.55s 385kb |L0.1290| " + - "L0.1462[1686859375756756741,1686859445421621597] 1686936871.55s 231kb |L0.1462|" + - "L0.1463[1686859445421621598,1686859499000000000] 1686936871.55s 178kb |L0.1463|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 33mb total:" + - "L0 " + - "L0.?[1686856473054054040,1686859027432432416] 1686936871.55s 27mb|---------------------------------L0.?---------------------------------| " + - "L0.?[1686859027432432417,1686859666027027010] 1686936871.55s 7mb |-----L0.?------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.1041, L0.1270, L0.1289, L0.1290, L0.1335, L0.1336, L0.1447, L0.1448, L0.1454, L0.1455, L0.1462, L0.1463, L0.1464, L0.1465, L0.1472, L0.1473, L0.1474, L0.1475, L0.1481, L0.1482" + - " Creating 2 files" + - "**** Simulation run 347, type=compact(ManySmallFiles). 2 Input Files, 553kb total:" + - "L0 " + - "L0.1483[1686859499000000001,1686859589566760129] 1686936871.55s 300kb|-------------------L0.1483--------------------| " + - "L0.1484[1686859589566760130,1686859666027027010] 1686936871.55s 253kb |----------------L0.1484----------------| " + - "**** 1 Output Files (parquet_file_id not yet assigned), 553kb total:" + - "L0, all files 553kb " + - "L0.?[1686859499000000001,1686859666027027010] 1686936871.55s|------------------------------------------L0.?------------------------------------------|" + - "Committing partition 1:" + - " Soft Deleting 2 files: L0.1483, L0.1484" + - " Creating 1 files" + - "**** Simulation run 348, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686860866085039343, 1686862066143051675]). 20 Input Files, 276mb total:" + - "L0 " + - "L0.1171[1686859666027027011,1686859956297297279] 1686935947.46s 24mb|L0.1171| " + - "L0.1062[1686859956297297280,1686859988431489230] 1686935947.46s 3mb |L0.1062| " + - "L0.1504[1686859988431489231,1686860002800686531] 1686935947.46s 1mb |L0.1504| " + - "L0.1505[1686860002800686532,1686860188513513488] 1686935947.46s 16mb |L0.1505| " + - "L0.1488[1686860188513513489,1686860203735880900] 1686935947.46s 1mb |L0.1488| " + - "L0.1489[1686860203735880901,1686860536837837820] 1686935947.46s 28mb |L0.1489| " + - "L0.1492[1686860536837837821,1686860817905001671] 1686935947.46s 24mb |L0.1492| " + - "L0.1506[1686860817905001672,1686861030203733704] 1686935947.46s 18mb |L0.1506| " + - "L0.1507[1686861030203733705,1686861117378378351] 1686935947.46s 7mb |L0.1507| " + - "L0.1300[1686861117378378352,1686861117378378360] 1686935947.46s 1b |L0.1300| " + - "L0.1172[1686861117378378361,1686861407648648630] 1686935947.46s 24mb |L0.1172| " + - "L0.1500[1686861407648648631,1686861432074122442] 1686935947.46s 2mb |L0.1500| " + - "L0.1501[1686861432074122443,1686861697918918899] 1686935947.46s 22mb |L0.1501| " + - "L0.1077[1686861697918918900,1686861730053110850] 1686935947.46s 3mb |L0.1077| " + - "L0.1307[1686861730053110851,1686862046243243214] 1686935947.46s 26mb |L0.1307| " + - "L0.1308[1686862046243243215,1686862278459459440] 1686935947.46s 19mb |L0.1308| " + - "L0.1084[1686862278459459441,1686862858999999980] 1686935947.46s 46mb |---L0.1084---| " + - "L0.1311[1686862858999999981,1686862975108108077] 1686935947.46s 9mb |L0.1311|" + - "L0.1212[1686859666027027011,1686859956297297279] 1686936871.55s 962kb|L0.1212| " + - "L0.1508[1686859956297297280,1686860002800686531] 1686936871.55s 154kb |L0.1508| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 276mb total:" + - "L0 " + - "L0.?[1686859666027027011,1686860866085039343] 1686936871.55s 100mb|-------------L0.?-------------| " + - "L0.?[1686860866085039344,1686862066143051675] 1686936871.55s 100mb |-------------L0.?-------------| " + - "L0.?[1686862066143051676,1686862975108108077] 1686936871.55s 76mb |---------L0.?---------| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.1062, L0.1077, L0.1084, L0.1171, L0.1172, L0.1212, L0.1300, L0.1307, L0.1308, L0.1311, L0.1488, L0.1489, L0.1492, L0.1500, L0.1501, L0.1504, L0.1505, L0.1506, L0.1507, L0.1508" + - " Creating 3 files" + - "**** Simulation run 349, type=compact(ManySmallFiles). 14 Input Files, 12mb total:" + - "L0 " + - "L0.1509[1686860002800686532,1686860188513513488] 1686936871.55s 615kb|L0.1509| " + - "L0.1490[1686860188513513489,1686860203735880900] 1686936871.55s 50kb |L0.1490| " + - "L0.1491[1686860203735880901,1686860536837837820] 1686936871.55s 1mb |L0.1491-| " + - "L0.1494[1686860536837837821,1686860817905001671] 1686936871.55s 931kb |L0.1494| " + - "L0.1510[1686860817905001672,1686861030203733704] 1686936871.55s 703kb |L0.1510| " + - "L0.1511[1686861030203733705,1686861117378378351] 1686936871.55s 289kb |L0.1511| " + - "L0.1302[1686861117378378352,1686861117378378360] 1686936871.55s 1b |L0.1302| " + - "L0.1213[1686861117378378361,1686861407648648630] 1686936871.55s 962kb |L0.1213| " + - "L0.1502[1686861407648648631,1686861432074122442] 1686936871.55s 81kb |L0.1502| " + - "L0.1503[1686861432074122443,1686861697918918899] 1686936871.55s 881kb |L0.1503| " + - "L0.1303[1686861697918918900,1686862046243243214] 1686936871.55s 1mb |L0.1303-| " + - "L0.1304[1686862046243243215,1686862278459459440] 1686936871.55s 769kb |L0.1304| " + - "L0.1087[1686862278459459441,1686862858999999980] 1686936871.55s 4mb |----L0.1087----| " + - "L0.1313[1686862858999999981,1686862975108108077] 1686936871.55s 782kb |L0.1313|" + - "**** 1 Output Files (parquet_file_id not yet assigned), 12mb total:" + - "L0, all files 12mb " + - "L0.?[1686860002800686532,1686862975108108077] 1686936871.55s|------------------------------------------L0.?------------------------------------------|" + - "Committing partition 1:" + - " Soft Deleting 14 files: L0.1087, L0.1213, L0.1302, L0.1303, L0.1304, L0.1313, L0.1490, L0.1491, L0.1494, L0.1502, L0.1503, L0.1509, L0.1510, L0.1511" + - " Creating 1 files" + - "**** Simulation run 350, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686863763854983772, 1686864552601859466]). 20 Input Files, 243mb total:" + - "L0 " + - "L0.1131[1686863149270270251,1686863439540540519] 1686932677.39s 25mb |--L0.1131--| " + - "L0.1083[1686863439540540520,1686863453232754878] 1686932677.39s 1mb |L0.1083| " + - "L0.1132[1686863453232754879,1686863699000000000] 1686932677.39s 21mb |-L0.1132-| " + - "L0.1315[1686863699000000001,1686863903972972940] 1686932677.39s 17mb |L0.1315| " + - "L0.1316[1686863903972972941,1686864020081081060] 1686932677.39s 10mb |L0.1316| " + - "L0.1329[1686864020081081061,1686864651607515459] 1686934966.48s 42mb |----------L0.1329----------| " + - "L0.1330[1686864651607515460,1686864832837837803] 1686934966.48s 12mb |L0.1330| " + - "L0.1322[1686864832837837804,1686864890891891870] 1686934966.48s 4mb |L0.1322|" + - "L0.1312[1686862975108108078,1686863149270270250] 1686935947.46s 14mb|L0.1312| " + - "L0.1175[1686863149270270251,1686863439540540519] 1686935947.46s 23mb |--L0.1175--| " + - "L0.1086[1686863439540540520,1686863528879205201] 1686935947.46s 7mb |L0.1086| " + - "L0.1176[1686863528879205202,1686863699000000000] 1686935947.46s 14mb |L0.1176| " + - "L0.1317[1686863699000000001,1686863903972972940] 1686935947.46s 16mb |L0.1317| " + - "L0.1318[1686863903972972941,1686864020081081060] 1686935947.46s 9mb |L0.1318| " + - "L0.1314[1686862975108108078,1686863149270270250] 1686936871.55s 1mb|L0.1314| " + - "L0.1216[1686863149270270251,1686863439540540519] 1686936871.55s 2mb |--L0.1216--| " + - "L0.1217[1686863439540540520,1686863699000000000] 1686936871.55s 2mb |-L0.1217--| " + - "L0.1319[1686863699000000001,1686863903972972940] 1686936871.55s 1mb |L0.1319| " + - "L0.1320[1686863903972972941,1686864020081081060] 1686936871.55s 782kb |L0.1320| " + - "L0.1331[1686864020081081061,1686864651607515459] 1686936871.55s 20mb |----------L0.1331----------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 243mb total:" + - "L0 " + - "L0.?[1686862975108108078,1686863763854983772] 1686936871.55s 100mb|---------------L0.?----------------| " + - "L0.?[1686863763854983773,1686864552601859466] 1686936871.55s 100mb |---------------L0.?----------------| " + - "L0.?[1686864552601859467,1686864890891891870] 1686936871.55s 43mb |----L0.?-----| " + - "Committing partition 1:" + - " Soft Deleting 20 files: L0.1083, L0.1086, L0.1131, L0.1132, L0.1175, L0.1176, L0.1216, L0.1217, L0.1312, L0.1314, L0.1315, L0.1316, L0.1317, L0.1318, L0.1319, L0.1320, L0.1322, L0.1329, L0.1330, L0.1331" + - " Creating 3 files" + - "**** Simulation run 351, type=compact(ManySmallFiles). 2 Input Files, 8mb total:" + - "L0 " + - "L0.1332[1686864651607515460,1686864832837837803] 1686936871.55s 6mb|-----------------------------L0.1332------------------------------| " + - "L0.1324[1686864832837837804,1686864890891891870] 1686936871.55s 2mb |------L0.1324------| " + - "**** 1 Output Files (parquet_file_id not yet assigned), 8mb total:" + - "L0, all files 8mb " + - "L0.?[1686864651607515460,1686864890891891870] 1686936871.55s|-----------------------------------------L0.?------------------------------------------| " + - "Committing partition 1:" + - " Soft Deleting 2 files: L0.1324, L0.1332" + - " Creating 1 files" + - "**** Simulation run 352, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686865715561243055, 1686866540230594239]). 7 Input Files, 211mb total:" + - "L0 " + - "L0.1134[1686865761702702681,1686866632513513490] 1686932677.39s 60mb |-----------------L0.1134------------------| " + - "L0.1143[1686864890891891871,1686865413378378356] 1686934966.48s 35mb|--------L0.1143---------| " + - "L0.1002[1686865413378378357,1686865761702702680] 1686934966.48s 23mb |----L0.1002----| " + - "L0.1178[1686865761702702681,1686866632513513490] 1686935947.46s 59mb |-----------------L0.1178------------------| " + - "L0.1220[1686864890891891871,1686865413378378356] 1686936871.55s 16mb|--------L0.1220---------| " + - "L0.1004[1686865413378378357,1686865761702702680] 1686936871.55s 11mb |----L0.1004----| " + - "L0.1221[1686865761702702681,1686866632513513490] 1686936871.55s 6mb |-----------------L0.1221------------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 211mb total:" + - "L0 " + - "L0.?[1686864890891891871,1686865715561243055] 1686936871.55s 100mb|------------------L0.?------------------| " + - "L0.?[1686865715561243056,1686866540230594239] 1686936871.55s 100mb |------------------L0.?------------------| " + - "L0.?[1686866540230594240,1686866632513513490] 1686936871.55s 11mb |L0.?|" + - "Committing partition 1:" + - " Soft Deleting 7 files: L0.1002, L0.1004, L0.1134, L0.1143, L0.1178, L0.1220, L0.1221" + - " Creating 3 files" + - "**** Simulation run 353, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686868931238859876, 1686869543477719751]). 8 Input Files, 293mb total:" + - "L0 " + - "L0.1139[1686868319000000001,1686868747944483205] 1686933271.57s 34mb|------L0.1139------| " + - "L0.1015[1686868747944483206,1686869244945945920] 1686933271.57s 40mb |-------L0.1015--------| " + - "L0.1019[1686869244945945921,1686869890068506247] 1686935742.51s 100mb |-----------L0.1019------------| " + - "L0.1020[1686869890068506248,1686870115756756730] 1686935742.51s 35mb |-L0.1020-| " + - "L0.1183[1686868319000000001,1686868896621621596] 1686935947.46s 38mb|---------L0.1183----------| " + - "L0.1017[1686868896621621597,1686869244945945920] 1686935947.46s 23mb |----L0.1017----| " + - "L0.1226[1686868319000000001,1686869244945945920] 1686936871.55s 9mb|------------------L0.1226-------------------| " + - "L0.1021[1686869244945945921,1686870115756756730] 1686936871.55s 14mb |-----------------L0.1021-----------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 293mb total:" + - "L0 " + - "L0.?[1686868319000000001,1686868931238859876] 1686936871.55s 100mb|------------L0.?------------| " + - "L0.?[1686868931238859877,1686869543477719751] 1686936871.55s 100mb |------------L0.?------------| " + - "L0.?[1686869543477719752,1686870115756756730] 1686936871.55s 93mb |-----------L0.?-----------| " + - "Committing partition 1:" + - " Soft Deleting 8 files: L0.1015, L0.1017, L0.1019, L0.1020, L0.1021, L0.1139, L0.1183, L0.1226" + - " Creating 3 files" + - "**** Simulation run 354, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686870677571828433, 1686871239386900135]). 3 Input Files, 255mb total:" + - "L0 " + - "L0.1022[1686870115756756731,1686870676199779489] 1686936871.55s 100mb|-------------L0.1022-------------| " + - "L0.1023[1686870676199779490,1686870986567567540] 1686936871.55s 55mb |-----L0.1023-----| " + - "L0.1024[1686870986567567541,1686871550514515284] 1686936871.55s 100mb |-------------L0.1024-------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 255mb total:" + - "L0 " + - "L0.?[1686870115756756731,1686870677571828433] 1686936871.55s 100mb|--------------L0.?---------------| " + - "L0.?[1686870677571828434,1686871239386900135] 1686936871.55s 100mb |--------------L0.?---------------| " + - "L0.?[1686871239386900136,1686871550514515284] 1686936871.55s 55mb |------L0.?-------| " + - "Committing partition 1:" + - " Soft Deleting 3 files: L0.1022, L0.1023, L0.1024" + - " Creating 3 files" + - "**** Simulation run 355, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686872106056369133, 1686872661598222981]). 4 Input Files, 212mb total:" + - "L0 " + - "L0.1025[1686871550514515285,1686871857378378350] 1686936871.55s 54mb|-------L0.1025-------| " + - "L0.1026[1686871619000000000,1686871857378378350] 1686936871.55s 1mb |----L0.1026-----| " + - "L0.1027[1686871857378378351,1686872413821229216] 1686936871.55s 100mb |----------------L0.1027-----------------| " + - "L0.1028[1686872413821229217,1686872728189189160] 1686936871.55s 56mb |-------L0.1028--------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 212mb total:" + - "L0 " + - "L0.?[1686871550514515285,1686872106056369133] 1686936871.55s 100mb|------------------L0.?------------------| " + - "L0.?[1686872106056369134,1686872661598222981] 1686936871.55s 100mb |------------------L0.?------------------| " + - "L0.?[1686872661598222982,1686872728189189160] 1686936871.55s 12mb |L0.?|" + - "Committing partition 1:" + - " Soft Deleting 4 files: L0.1025, L0.1026, L0.1027, L0.1028" + - " Creating 3 files" + - "**** Simulation run 356, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686873284631629744]). 2 Input Files, 156mb total:" + - "L0 " + - "L0.1029[1686872728189189161,1686873284631629744] 1686936871.55s 100mb|------------------------L0.1029------------------------| " + - "L0.1030[1686873284631629745,1686873599000000000] 1686936871.55s 56mb |-----------L0.1030------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 156mb total:" + - "L0 " + - "L0.?[1686872728189189161,1686873284631629744] 1686936871.55s 100mb|-------------------------L0.?--------------------------| " + - "L0.?[1686873284631629745,1686873599000000000] 1686936871.55s 56mb |-------------L0.?-------------| " + - "Committing partition 1:" + - " Soft Deleting 2 files: L0.1029, L0.1030" + - " Creating 2 files" + - "**** Simulation run 357, type=split(CompactAndSplitOutput(ManySmallFiles))(split_times=[1686867299592048857, 1686867966670584223]). 14 Input Files, 253mb total:" + - "L0 " + - "L0.1135[1686866632513513491,1686867209822490496] 1686932677.39s 40mb|----------L0.1135-----------| " + - "L0.1006[1686867209822490497,1686867503324324300] 1686932677.39s 20mb |---L0.1006---| " + - "L0.1136[1686867503324324301,1686867659000000000] 1686933271.57s 13mb |L0.1136| " + - "L0.1137[1686867659000000001,1686867839000000000] 1686933271.57s 14mb |L0.1137| " + - "L0.1138[1686867839000000001,1686868319000000000] 1686933271.57s 39mb |--------L0.1138--------| " + - "L0.1179[1686866632513513491,1686867154999999976] 1686935947.46s 36mb|---------L0.1179---------| " + - "L0.1012[1686867154999999977,1686867503324324300] 1686935947.46s 24mb |----L0.1012-----| " + - "L0.1180[1686867503324324301,1686867659000000000] 1686935947.46s 10mb |L0.1180| " + - "L0.1181[1686867659000000001,1686867839000000000] 1686935947.46s 12mb |L0.1181| " + - "L0.1182[1686867839000000001,1686868319000000000] 1686935947.46s 32mb |--------L0.1182--------| " + - "L0.1222[1686866632513513491,1686867503324324300] 1686936871.55s 6mb|------------------L0.1222-------------------| " + - "L0.1223[1686867503324324301,1686867659000000000] 1686936871.55s 1mb |L0.1223| " + - "L0.1224[1686867659000000001,1686867839000000000] 1686936871.55s 2mb |L0.1224| " + - "L0.1225[1686867839000000001,1686868319000000000] 1686936871.55s 5mb |--------L0.1225--------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 253mb total:" + - "L0 " + - "L0.?[1686866632513513491,1686867299592048857] 1686936871.55s 100mb|--------------L0.?---------------| " + - "L0.?[1686867299592048858,1686867966670584223] 1686936871.55s 100mb |--------------L0.?---------------| " + - "L0.?[1686867966670584224,1686868319000000000] 1686936871.55s 53mb |------L0.?------| " + - "Committing partition 1:" + - " Soft Deleting 14 files: L0.1006, L0.1012, L0.1135, L0.1136, L0.1137, L0.1138, L0.1179, L0.1180, L0.1181, L0.1182, L0.1222, L0.1223, L0.1224, L0.1225" + - " Creating 3 files" + - "**** Simulation run 358, type=split(HighL0OverlapTotalBacklog)(split_times=[1686842540081081080]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.1515[1686841379000000000,1686842547242379893] 1686936871.55s|----------------------------------------L0.1515-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686841379000000000,1686842540081081080] 1686936871.55s 99mb|-----------------------------------------L0.?------------------------------------------| " + - "L0.?[1686842540081081081,1686842547242379893] 1686936871.55s 628kb |L0.?|" + - "**** Simulation run 359, type=split(HighL0OverlapTotalBacklog)(split_times=[1686843701162162160]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.1516[1686842547242379894,1686843715484759786] 1686936871.55s|----------------------------------------L0.1516-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686842547242379894,1686843701162162160] 1686936871.55s 99mb|-----------------------------------------L0.?-----------------------------------------| " + - "L0.?[1686843701162162161,1686843715484759786] 1686936871.55s 1mb |L0.?|" + - "**** Simulation run 360, type=split(HighL0OverlapTotalBacklog)(split_times=[1686846023324324320]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.1518[1686844862243243241,1686846030485623133] 1686936871.55s|----------------------------------------L0.1518-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686844862243243241,1686846023324324320] 1686936871.55s 99mb|-----------------------------------------L0.?------------------------------------------| " + - "L0.?[1686846023324324321,1686846030485623133] 1686936871.55s 628kb |L0.?|" + - "**** Simulation run 361, type=split(HighL0OverlapTotalBacklog)(split_times=[1686847184405405399]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.1519[1686846030485623134,1686847198728003025] 1686936871.55s|----------------------------------------L0.1519-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686846030485623134,1686847184405405399] 1686936871.55s 99mb|-----------------------------------------L0.?-----------------------------------------| " + - "L0.?[1686847184405405400,1686847198728003025] 1686936871.55s 1mb |L0.?|" + - "**** Simulation run 362, type=split(HighL0OverlapTotalBacklog)(split_times=[1686849216297297290]). 1 Input Files, 96mb total:" + - "L1, all files 96mb " + - "L1.1386[1686848345486486481,1686849506567567560] 1686932677.39s|----------------------------------------L1.1386-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 96mb total:" + - "L1 " + - "L1.?[1686848345486486481,1686849216297297290] 1686932677.39s 72mb|------------------------------L1.?-------------------------------| " + - "L1.?[1686849216297297291,1686849506567567560] 1686932677.39s 24mb |--------L1.?--------| " + - "**** Simulation run 363, type=split(HighL0OverlapTotalBacklog)(split_times=[1686849216297297290]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.1521[1686848345486486481,1686849491497710570] 1686936871.55s|----------------------------------------L0.1521-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686848345486486481,1686849216297297290] 1686936871.55s 76mb|-------------------------------L0.?-------------------------------| " + - "L0.?[1686849216297297291,1686849491497710570] 1686936871.55s 24mb |-------L0.?--------| " + - "**** Simulation run 364, type=split(HighL0OverlapTotalBacklog)(split_times=[1686850087108108099]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.1522[1686849491497710571,1686850637508934659] 1686936871.55s|----------------------------------------L0.1522-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686849491497710571,1686850087108108099] 1686936871.55s 52mb|--------------------L0.?--------------------| " + - "L0.?[1686850087108108100,1686850637508934659] 1686936871.55s 48mb |------------------L0.?-------------------| " + - "**** Simulation run 365, type=split(HighL0OverlapTotalBacklog)(split_times=[1686850087108108099]). 1 Input Files, 91mb total:" + - "L1, all files 91mb " + - "L1.1392[1686849559289331161,1686850667648648639] 1686932677.39s|----------------------------------------L1.1392-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 91mb total:" + - "L1 " + - "L1.?[1686849559289331161,1686850087108108099] 1686932677.39s 43mb|------------------L1.?------------------| " + - "L1.?[1686850087108108100,1686850667648648639] 1686932677.39s 48mb |--------------------L1.?---------------------| " + - "**** Simulation run 366, type=split(HighL0OverlapTotalBacklog)(split_times=[1686850957918918908]). 1 Input Files, 28mb total:" + - "L0, all files 28mb " + - "L0.1523[1686850637508934660,1686850957918918910] 1686936871.55s|----------------------------------------L0.1523-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 28mb total:" + - "L0 " + - "L0.?[1686850637508934660,1686850957918918908] 1686936871.55s 28mb|-----------------------------------------L0.?------------------------------------------| " + - "L0.?[1686850957918918909,1686850957918918910] 1686936871.55s 1b |L0.?|" + - "**** Simulation run 367, type=split(HighL0OverlapTotalBacklog)(split_times=[1686850957918918908, 1686851828729729717]). 1 Input Files, 87mb total:" + - "L1, all files 87mb " + - "L1.1385[1686850773092175840,1686851828729729720] 1686932677.39s|----------------------------------------L1.1385-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 87mb total:" + - "L1 " + - "L1.?[1686850773092175840,1686850957918918908] 1686932677.39s 15mb|----L1.?-----| " + - "L1.?[1686850957918918909,1686851828729729717] 1686932677.39s 72mb |----------------------------------L1.?----------------------------------| " + - "L1.?[1686851828729729718,1686851828729729720] 1686932677.39s 1b |L1.?|" + - "**** Simulation run 368, type=split(HighL0OverlapTotalBacklog)(split_times=[1686851828729729717]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.1524[1686850957918918911,1686851943085513215] 1686936871.55s|----------------------------------------L0.1524-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686850957918918911,1686851828729729717] 1686936871.55s 88mb|------------------------------------L0.?-------------------------------------| " + - "L0.?[1686851828729729718,1686851943085513215] 1686936871.55s 12mb |--L0.?--| " + - "**** Simulation run 369, type=split(HighL0OverlapTotalBacklog)(split_times=[1686852699540540526]). 1 Input Files, 14mb total:" + - "L1, all files 14mb " + - "L1.1230[1686851828729729721,1686852757594594584] 1686931893.7s|----------------------------------------L1.1230-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 14mb total:" + - "L1 " + - "L1.?[1686851828729729721,1686852699540540526] 1686931893.7s 14mb|---------------------------------------L1.?---------------------------------------| " + - "L1.?[1686852699540540527,1686852757594594584] 1686931893.7s 927kb |L1.?|" + - "**** Simulation run 370, type=split(HighL0OverlapTotalBacklog)(split_times=[1686852699540540526]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.1525[1686851943085513216,1686852928252107519] 1686936871.55s|----------------------------------------L0.1525-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686851943085513216,1686852699540540526] 1686936871.55s 77mb|-------------------------------L0.?--------------------------------| " + - "L0.?[1686852699540540527,1686852928252107519] 1686936871.55s 23mb |-------L0.?-------| " + - "**** Simulation run 371, type=split(HighL0OverlapTotalBacklog)(split_times=[1686853570351351335]). 1 Input Files, 77mb total:" + - "L0, all files 77mb " + - "L0.1526[1686852928252107520,1686853686459459447] 1686936871.55s|----------------------------------------L0.1526-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 77mb total:" + - "L0 " + - "L0.?[1686852928252107520,1686853570351351335] 1686936871.55s 65mb|-----------------------------------L0.?-----------------------------------| " + - "L0.?[1686853570351351336,1686853686459459447] 1686936871.55s 12mb |---L0.?----| " + - "**** Simulation run 372, type=split(HighL0OverlapTotalBacklog)(split_times=[1686853570351351335]). 1 Input Files, 42mb total:" + - "L1, all files 42mb " + - "L1.1410[1686853500686486476,1686854034336087198] 1686932677.39s|----------------------------------------L1.1410-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 42mb total:" + - "L1 " + - "L1.?[1686853500686486476,1686853570351351335] 1686932677.39s 5mb|--L1.?---| " + - "L1.?[1686853570351351336,1686854034336087198] 1686932677.39s 36mb |------------------------------------L1.?------------------------------------| " + - "**** Simulation run 373, type=split(HighL0OverlapTotalBacklog)(split_times=[1686854441162162144]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.1527[1686853686459459448,1686854918102788682] 1686936871.55s|----------------------------------------L0.1527-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686853686459459448,1686854441162162144] 1686936871.55s 61mb|------------------------L0.?-------------------------| " + - "L0.?[1686854441162162145,1686854918102788682] 1686936871.55s 39mb |--------------L0.?--------------| " + - "**** Simulation run 374, type=split(HighL0OverlapTotalBacklog)(split_times=[1686854441162162144]). 1 Input Files, 58mb total:" + - "L1, all files 58mb " + - "L1.1420[1686854243778378366,1686854986870270255] 1686932677.39s|----------------------------------------L1.1420-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 58mb total:" + - "L1 " + - "L1.?[1686854243778378366,1686854441162162144] 1686932677.39s 15mb|--------L1.?---------| " + - "L1.?[1686854441162162145,1686854986870270255] 1686932677.39s 43mb |------------------------------L1.?------------------------------| " + - "**** Simulation run 375, type=split(HighL0OverlapTotalBacklog)(split_times=[1686855311972972953]). 1 Input Files, 17mb total:" + - "L0, all files 17mb " + - "L0.1530[1686854819000000001,1686856142243243231] 1686936871.55s|----------------------------------------L0.1530-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 17mb total:" + - "L0 " + - "L0.?[1686854819000000001,1686855311972972953] 1686936871.55s 7mb|-------------L0.?--------------| " + - "L0.?[1686855311972972954,1686856142243243231] 1686936871.55s 11mb |-------------------------L0.?-------------------------| " + - "**** Simulation run 376, type=split(HighL0OverlapTotalBacklog)(split_times=[1686855311972972953]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.1528[1686854918102788683,1686856149746117916] 1686936871.55s|----------------------------------------L0.1528-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686854918102788683,1686855311972972953] 1686936871.55s 32mb|-----------L0.?-----------| " + - "L0.?[1686855311972972954,1686856149746117916] 1686936871.55s 68mb |---------------------------L0.?----------------------------| " + - "**** Simulation run 377, type=split(HighL0OverlapTotalBacklog)(split_times=[1686855311972972953]). 1 Input Files, 33mb total:" + - "L1, all files 33mb " + - "L1.1426[1686855311077579812,1686855729962162145] 1686932677.39s|----------------------------------------L1.1426----------------------------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 33mb total:" + - "L1 " + - "L1.?[1686855311077579812,1686855311972972953] 1686932677.39s 72kb|L1.?| " + - "L1.?[1686855311972972954,1686855729962162145] 1686932677.39s 33mb|-----------------------------------------L1.?------------------------------------------| " + - "**** Simulation run 378, type=split(HighL0OverlapTotalBacklog)(split_times=[1686856182783783762]). 1 Input Files, 58mb total:" + - "L1, all files 58mb " + - "L1.1427[1686855729962162146,1686856473054054036] 1686932677.39s|----------------------------------------L1.1427-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 58mb total:" + - "L1 " + - "L1.?[1686855729962162146,1686856182783783762] 1686932677.39s 35mb|------------------------L1.?------------------------| " + - "L1.?[1686856182783783763,1686856473054054036] 1686932677.39s 23mb |--------------L1.?---------------| " + - "**** Simulation run 379, type=split(HighL0OverlapTotalBacklog)(split_times=[1686856182783783762]). 1 Input Files, 4mb total:" + - "L0, all files 4mb " + - "L0.1531[1686856142243243232,1686856473054054039] 1686936871.55s|----------------------------------------L0.1531-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" + - "L0 " + - "L0.?[1686856142243243232,1686856182783783762] 1686936871.55s 549kb|--L0.?---| " + - "L0.?[1686856182783783763,1686856473054054039] 1686936871.55s 4mb |------------------------------------L0.?------------------------------------| " + - "**** Simulation run 380, type=split(HighL0OverlapTotalBacklog)(split_times=[1686856182783783762]). 1 Input Files, 26mb total:" + - "L0, all files 26mb " + - "L0.1529[1686856149746117917,1686856473054054039] 1686936871.55s|----------------------------------------L0.1529-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 26mb total:" + - "L0 " + - "L0.?[1686856149746117917,1686856182783783762] 1686936871.55s 3mb|-L0.?--| " + - "L0.?[1686856182783783763,1686856473054054039] 1686936871.55s 24mb |-------------------------------------L0.?-------------------------------------| " + - "**** Simulation run 381, type=split(HighL0OverlapTotalBacklog)(split_times=[1686857053594594571]). 1 Input Files, 59mb total:" + - "L1, all files 59mb " + - "L1.1443[1686856473054054037,1686857216145945927] 1686932677.39s|----------------------------------------L1.1443-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 59mb total:" + - "L1 " + - "L1.?[1686856473054054037,1686857053594594571] 1686932677.39s 46mb|--------------------------------L1.?--------------------------------| " + - "L1.?[1686857053594594572,1686857216145945927] 1686932677.39s 13mb |------L1.?-------| " + - "**** Simulation run 382, type=split(HighL0OverlapTotalBacklog)(split_times=[1686857053594594571]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.1532[1686856473054054040,1686857679795016021] 1686935947.46s|----------------------------------------L0.1532-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686856473054054040,1686857053594594571] 1686935947.46s 48mb|------------------L0.?-------------------| " + - "L0.?[1686857053594594572,1686857679795016021] 1686935947.46s 52mb |--------------------L0.?--------------------| " + - "**** Simulation run 383, type=split(HighL0OverlapTotalBacklog)(split_times=[1686857053594594571, 1686857924405405380, 1686858795216216189]). 1 Input Files, 27mb total:" + - "L0, all files 27mb " + - "L0.1535[1686856473054054040,1686859027432432416] 1686936871.55s|----------------------------------------L0.1535-----------------------------------------|" + - "**** 4 Output Files (parquet_file_id not yet assigned), 27mb total:" + - "L0 " + - "L0.?[1686856473054054040,1686857053594594571] 1686936871.55s 6mb|-------L0.?-------| " + - "L0.?[1686857053594594572,1686857924405405380] 1686936871.55s 9mb |------------L0.?------------| " + - "L0.?[1686857924405405381,1686858795216216189] 1686936871.55s 9mb |------------L0.?------------| " + - "L0.?[1686858795216216190,1686859027432432416] 1686936871.55s 2mb |-L0.?-| " + - "**** Simulation run 384, type=split(HighL0OverlapTotalBacklog)(split_times=[1686857924405405380, 1686858795216216189]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.1533[1686857679795016022,1686858886535978002] 1686935947.46s|----------------------------------------L0.1533-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686857679795016022,1686857924405405380] 1686935947.46s 20mb|------L0.?------| " + - "L0.?[1686857924405405381,1686858795216216189] 1686935947.46s 72mb |-----------------------------L0.?-----------------------------| " + - "L0.?[1686858795216216190,1686858886535978002] 1686935947.46s 8mb |L0.?| " + - "**** Simulation run 385, type=split(HighL0OverlapTotalBacklog)(split_times=[1686857924405405380]). 1 Input Files, 19mb total:" + - "L1, all files 19mb " + - "L1.1449[1686857724225846698,1686857959237837817] 1686932677.39s|----------------------------------------L1.1449----------------------------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 19mb total:" + - "L1 " + - "L1.?[1686857724225846698,1686857924405405380] 1686932677.39s 16mb|-----------------------------------L1.?-----------------------------------| " + - "L1.?[1686857924405405381,1686857959237837817] 1686932677.39s 3mb |---L1.?----| " + - "**** Simulation run 386, type=split(HighL0OverlapTotalBacklog)(split_times=[1686858795216216189]). 1 Input Files, 22mb total:" + - "L1, all files 22mb " + - "L1.1451[1686858702329729708,1686858975397639357] 1686932677.39s|----------------------------------------L1.1451-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 22mb total:" + - "L1 " + - "L1.?[1686858702329729708,1686858795216216189] 1686932677.39s 7mb|------------L1.?------------| " + - "L1.?[1686858795216216190,1686858975397639357] 1686932677.39s 14mb |--------------------------L1.?---------------------------| " + - "**** Simulation run 387, type=split(HighL0OverlapTotalBacklog)(split_times=[1686859666027026998]). 1 Input Files, 7mb total:" + - "L0, all files 7mb " + - "L0.1536[1686859027432432417,1686859666027027010] 1686936871.55s|----------------------------------------L0.1536-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 7mb total:" + - "L0 " + - "L0.?[1686859027432432417,1686859666027026998] 1686936871.55s 7mb|-----------------------------------------L0.?------------------------------------------| " + - "L0.?[1686859666027026999,1686859666027027010] 1686936871.55s 1b |L0.?|" + - "**** Simulation run 388, type=split(HighL0OverlapTotalBacklog)(split_times=[1686859666027026998]). 1 Input Files, 553kb total:" + - "L0, all files 553kb " + - "L0.1537[1686859499000000001,1686859666027027010] 1686936871.55s|----------------------------------------L0.1537-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 553kb total:" + - "L0 " + - "L0.?[1686859499000000001,1686859666027026998] 1686936871.55s 553kb|-----------------------------------------L0.?------------------------------------------| " + - "L0.?[1686859666027026999,1686859666027027010] 1686936871.55s 1b |L0.?|" + - "**** Simulation run 389, type=split(HighL0OverlapTotalBacklog)(split_times=[1686859666027026998]). 1 Input Files, 40mb total:" + - "L1, all files 40mb " + - "L1.1480[1686859589566760130,1686860002800686531] 1686932677.39s|----------------------------------------L1.1480-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 40mb total:" + - "L1 " + - "L1.?[1686859589566760130,1686859666027026998] 1686932677.39s 7mb|-----L1.?-----| " + - "L1.?[1686859666027026999,1686860002800686531] 1686932677.39s 33mb |---------------------------------L1.?----------------------------------| " + - "**** Simulation run 390, type=split(HighL0OverlapTotalBacklog)(split_times=[1686860536837837807]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.1538[1686859666027027011,1686860866085039343] 1686936871.55s|----------------------------------------L0.1538-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686859666027027011,1686860536837837807] 1686936871.55s 73mb|-----------------------------L0.?------------------------------| " + - "L0.?[1686860536837837808,1686860866085039343] 1686936871.55s 27mb |---------L0.?---------| " + - "**** Simulation run 391, type=split(HighL0OverlapTotalBacklog)(split_times=[1686860536837837807, 1686861407648648616, 1686862278459459425]). 1 Input Files, 12mb total:" + - "L0, all files 12mb " + - "L0.1541[1686860002800686532,1686862975108108077] 1686936871.55s|----------------------------------------L0.1541-----------------------------------------|" + - "**** 4 Output Files (parquet_file_id not yet assigned), 12mb total:" + - "L0 " + - "L0.?[1686860002800686532,1686860536837837807] 1686936871.55s 2mb|-----L0.?-----| " + - "L0.?[1686860536837837808,1686861407648648616] 1686936871.55s 4mb |----------L0.?----------| " + - "L0.?[1686861407648648617,1686862278459459425] 1686936871.55s 4mb |----------L0.?----------| " + - "L0.?[1686862278459459426,1686862975108108077] 1686936871.55s 3mb |-------L0.?--------| " + - "**** Simulation run 392, type=split(HighL0OverlapTotalBacklog)(split_times=[1686860536837837807]). 1 Input Files, 60mb total:" + - "L1, all files 60mb " + - "L1.1486[1686860203735880901,1686860817905001671] 1686932677.39s|----------------------------------------L1.1486-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 60mb total:" + - "L1 " + - "L1.?[1686860203735880901,1686860536837837807] 1686932677.39s 32mb|---------------------L1.?---------------------| " + - "L1.?[1686860536837837808,1686860817905001671] 1686932677.39s 27mb |-----------------L1.?------------------| " + - "**** Simulation run 393, type=split(HighL0OverlapTotalBacklog)(split_times=[1686861407648648616]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.1539[1686860866085039344,1686862066143051675] 1686936871.55s|----------------------------------------L0.1539-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686860866085039344,1686861407648648616] 1686936871.55s 45mb|-----------------L0.?-----------------| " + - "L0.?[1686861407648648617,1686862066143051675] 1686936871.55s 55mb |---------------------L0.?----------------------| " + - "**** Simulation run 394, type=split(HighL0OverlapTotalBacklog)(split_times=[1686861407648648616]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1512[1686861030203733705,1686862070968521403] 1686932677.39s|----------------------------------------L1.1512-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686861030203733705,1686861407648648616] 1686932677.39s 36mb|-------------L1.?-------------| " + - "L1.?[1686861407648648617,1686862070968521403] 1686932677.39s 64mb |-------------------------L1.?--------------------------| " + - "**** Simulation run 395, type=split(HighL0OverlapTotalBacklog)(split_times=[1686862278459459425]). 1 Input Files, 76mb total:" + - "L0, all files 76mb " + - "L0.1540[1686862066143051676,1686862975108108077] 1686936871.55s|----------------------------------------L0.1540-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 76mb total:" + - "L0 " + - "L0.?[1686862066143051676,1686862278459459425] 1686936871.55s 18mb|-------L0.?--------| " + - "L0.?[1686862278459459426,1686862975108108077] 1686936871.55s 58mb |-------------------------------L0.?-------------------------------| " + - "**** Simulation run 396, type=split(HighL0OverlapTotalBacklog)(split_times=[1686862278459459425]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1513[1686862070968521404,1686863111733309101] 1686932677.39s|----------------------------------------L1.1513-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686862070968521404,1686862278459459425] 1686932677.39s 20mb|-----L1.?------| " + - "L1.?[1686862278459459426,1686863111733309101] 1686932677.39s 80mb |---------------------------------L1.?---------------------------------| " + - "**** Simulation run 397, type=split(HighL0OverlapTotalBacklog)(split_times=[1686863149270270234]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.1542[1686862975108108078,1686863763854983772] 1686936871.55s|----------------------------------------L0.1542-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686862975108108078,1686863149270270234] 1686936871.55s 22mb|------L0.?-------| " + - "L0.?[1686863149270270235,1686863763854983772] 1686936871.55s 78mb |--------------------------------L0.?--------------------------------| " + - "**** Simulation run 398, type=split(HighL0OverlapTotalBacklog)(split_times=[1686863149270270234]). 1 Input Files, 76mb total:" + - "L1, all files 76mb " + - "L1.1514[1686863111733309102,1686863903972972940] 1686932677.39s|----------------------------------------L1.1514-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 76mb total:" + - "L1 " + - "L1.?[1686863111733309102,1686863149270270234] 1686932677.39s 4mb|L1.?| " + - "L1.?[1686863149270270235,1686863903972972940] 1686932677.39s 73mb |---------------------------------------L1.?----------------------------------------| " + - "**** Simulation run 399, type=split(HighL0OverlapTotalBacklog)(split_times=[1686864020081081043]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.1543[1686863763854983773,1686864552601859466] 1686936871.55s|----------------------------------------L0.1543-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686863763854983773,1686864020081081043] 1686936871.55s 32mb|-----------L0.?------------| " + - "L0.?[1686864020081081044,1686864552601859466] 1686936871.55s 68mb |---------------------------L0.?---------------------------| " + - "**** Simulation run 400, type=split(HighL0OverlapTotalBacklog)(split_times=[1686864020081081043]). 1 Input Files, 12mb total:" + - "L1, all files 12mb " + - "L1.1280[1686863903972972941,1686864651607515459] 1686931893.7s|----------------------------------------L1.1280-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 12mb total:" + - "L1 " + - "L1.?[1686863903972972941,1686864020081081043] 1686931893.7s 2mb|---L1.?----| " + - "L1.?[1686864020081081044,1686864651607515459] 1686931893.7s 10mb |-----------------------------------L1.?-----------------------------------| " + - "**** Simulation run 401, type=split(HighL0OverlapTotalBacklog)(split_times=[1686864890891891852]). 1 Input Files, 43mb total:" + - "L0, all files 43mb " + - "L0.1544[1686864552601859467,1686864890891891870] 1686936871.55s|----------------------------------------L0.1544-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 43mb total:" + - "L0 " + - "L0.?[1686864552601859467,1686864890891891852] 1686936871.55s 43mb|-----------------------------------------L0.?------------------------------------------| " + - "L0.?[1686864890891891853,1686864890891891870] 1686936871.55s 1b |L0.?|" + - "**** Simulation run 402, type=split(HighL0OverlapTotalBacklog)(split_times=[1686864890891891852]). 1 Input Files, 8mb total:" + - "L0, all files 8mb " + - "L0.1545[1686864651607515460,1686864890891891870] 1686936871.55s|----------------------------------------L0.1545----------------------------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 8mb total:" + - "L0 " + - "L0.?[1686864651607515460,1686864890891891852] 1686936871.55s 8mb|-----------------------------------------L0.?------------------------------------------| " + - "L0.?[1686864890891891853,1686864890891891870] 1686936871.55s 1b |L0.?|" + - "**** Simulation run 403, type=split(HighL0OverlapTotalBacklog)(split_times=[1686864890891891852, 1686865761702702661]). 1 Input Files, 14mb total:" + - "L1, all files 14mb " + - "L1.1326[1686864832837837804,1686865761702702680] 1686931893.7s|----------------------------------------L1.1326-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 14mb total:" + - "L1 " + - "L1.?[1686864832837837804,1686864890891891852] 1686931893.7s 927kb|L1.?| " + - "L1.?[1686864890891891853,1686865761702702661] 1686931893.7s 14mb |---------------------------------------L1.?---------------------------------------| " + - "L1.?[1686865761702702662,1686865761702702680] 1686931893.7s 1b |L1.?|" + - "**** Simulation run 404, type=split(HighL0OverlapTotalBacklog)(split_times=[1686865761702702661]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.1547[1686865715561243056,1686866540230594239] 1686936871.55s|----------------------------------------L0.1547-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686865715561243056,1686865761702702661] 1686936871.55s 6mb|L0.?| " + - "L0.?[1686865761702702662,1686866540230594239] 1686936871.55s 94mb |---------------------------------------L0.?---------------------------------------| " + - "**** Simulation run 405, type=split(HighL0OverlapTotalBacklog)(split_times=[1686868917918918910]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.1549[1686868319000000001,1686868931238859876] 1686936871.55s|----------------------------------------L0.1549-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686868319000000001,1686868917918918910] 1686936871.55s 98mb|-----------------------------------------L0.?-----------------------------------------| " + - "L0.?[1686868917918918911,1686868931238859876] 1686936871.55s 2mb |L0.?|" + - "**** Simulation run 406, type=split(HighL0OverlapTotalBacklog)(split_times=[1686868917918918910]). 1 Input Files, 15mb total:" + - "L1, all files 15mb " + - "L1.905[1686868379000000000,1686869244945945920] 1686928854.57s|-----------------------------------------L1.905-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 15mb total:" + - "L1 " + - "L1.?[1686868379000000000,1686868917918918910] 1686928854.57s 9mb|-------------------------L1.?-------------------------| " + - "L1.?[1686868917918918911,1686869244945945920] 1686928854.57s 6mb |-------------L1.?--------------| " + - "**** Simulation run 407, type=split(HighL0OverlapTotalBacklog)(split_times=[1686869516837837819]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.1550[1686868931238859877,1686869543477719751] 1686936871.55s|----------------------------------------L0.1550-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686868931238859877,1686869516837837819] 1686936871.55s 96mb|----------------------------------------L0.?----------------------------------------| " + - "L0.?[1686869516837837820,1686869543477719751] 1686936871.55s 4mb |L0.?|" + - "**** Simulation run 408, type=split(HighL0OverlapTotalBacklog)(split_times=[1686869516837837819]). 1 Input Files, 15mb total:" + - "L1, all files 15mb " + - "L1.906[1686869244945945921,1686870115756756730] 1686928854.57s|-----------------------------------------L1.906-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 15mb total:" + - "L1 " + - "L1.?[1686869244945945921,1686869516837837819] 1686928854.57s 5mb|-----------L1.?-----------| " + - "L1.?[1686869516837837820,1686870115756756730] 1686928854.57s 10mb |---------------------------L1.?----------------------------| " + - "**** Simulation run 409, type=split(HighL0OverlapTotalBacklog)(split_times=[1686870986567567540]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.1553[1686870677571828434,1686871239386900135] 1686936871.55s|----------------------------------------L0.1553-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686870677571828434,1686870986567567540] 1686936871.55s 55mb|---------------------L0.?----------------------| " + - "L0.?[1686870986567567541,1686871239386900135] 1686936871.55s 45mb |-----------------L0.?-----------------| " + - "**** Simulation run 410, type=split(HighL0OverlapTotalBacklog)(split_times=[1686871857378378349]). 1 Input Files, 15mb total:" + - "L1, all files 15mb " + - "L1.908[1686870986567567541,1686871857378378350] 1686928854.57s|-----------------------------------------L1.908-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 15mb total:" + - "L1 " + - "L1.?[1686870986567567541,1686871857378378349] 1686928854.57s 15mb|-----------------------------------------L1.?------------------------------------------| " + - "L1.?[1686871857378378350,1686871857378378350] 1686928854.57s 1b |L1.?|" + - "**** Simulation run 411, type=split(HighL0OverlapTotalBacklog)(split_times=[1686871857378378349]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.1555[1686871550514515285,1686872106056369133] 1686936871.55s|----------------------------------------L0.1555-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686871550514515285,1686871857378378349] 1686936871.55s 55mb|---------------------L0.?----------------------| " + - "L0.?[1686871857378378350,1686872106056369133] 1686936871.55s 45mb |-----------------L0.?-----------------| " + - "Committing partition 1:" + - " Soft Deleting 54 files: L1.905, L1.906, L1.908, L1.1230, L1.1280, L1.1326, L1.1385, L1.1386, L1.1392, L1.1410, L1.1420, L1.1426, L1.1427, L1.1443, L1.1449, L1.1451, L1.1480, L1.1486, L1.1512, L1.1513, L1.1514, L0.1515, L0.1516, L0.1518, L0.1519, L0.1521, L0.1522, L0.1523, L0.1524, L0.1525, L0.1526, L0.1527, L0.1528, L0.1529, L0.1530, L0.1531, L0.1532, L0.1533, L0.1535, L0.1536, L0.1537, L0.1538, L0.1539, L0.1540, L0.1541, L0.1542, L0.1543, L0.1544, L0.1545, L0.1547, L0.1549, L0.1550, L0.1553, L0.1555" + - " Creating 115 files" + - "**** Simulation run 412, type=split(ReduceOverlap)(split_times=[1686857216145945927]). 1 Input Files, 52mb total:" + - "L0, all files 52mb " + - "L0.1613[1686857053594594572,1686857679795016021] 1686935947.46s|----------------------------------------L0.1613-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 52mb total:" + - "L0 " + - "L0.?[1686857053594594572,1686857216145945927] 1686935947.46s 13mb|--------L0.?---------| " + - "L0.?[1686857216145945928,1686857679795016021] 1686935947.46s 38mb |------------------------------L0.?------------------------------| " + - "**** Simulation run 413, type=split(ReduceOverlap)(split_times=[1686857724225846697]). 1 Input Files, 20mb total:" + - "L0, all files 20mb " + - "L0.1618[1686857679795016022,1686857924405405380] 1686935947.46s|----------------------------------------L0.1618----------------------------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 20mb total:" + - "L0 " + - "L0.?[1686857679795016022,1686857724225846697] 1686935947.46s 4mb|-----L0.?-----| " + - "L0.?[1686857724225846698,1686857924405405380] 1686935947.46s 17mb |---------------------------------L0.?----------------------------------| " + - "**** Simulation run 414, type=split(ReduceOverlap)(split_times=[1686857959237837817, 1686858702329729707]). 1 Input Files, 72mb total:" + - "L0, all files 72mb " + - "L0.1619[1686857924405405381,1686858795216216189] 1686935947.46s|----------------------------------------L0.1619-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 72mb total:" + - "L0 " + - "L0.?[1686857924405405381,1686857959237837817] 1686935947.46s 3mb|L0.?| " + - "L0.?[1686857959237837818,1686858702329729707] 1686935947.46s 62mb |-----------------------------------L0.?-----------------------------------| " + - "L0.?[1686858702329729708,1686858795216216189] 1686935947.46s 8mb |-L0.?--| " + - "**** Simulation run 415, type=split(ReduceOverlap)(split_times=[1686858975397639357]). 1 Input Files, 51mb total:" + - "L0, all files 51mb " + - "L0.1534[1686858886535978003,1686859499000000000] 1686935947.46s|----------------------------------------L0.1534-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 51mb total:" + - "L0 " + - "L0.?[1686858886535978003,1686858975397639357] 1686935947.46s 7mb|---L0.?----| " + - "L0.?[1686858975397639358,1686859499000000000] 1686935947.46s 43mb |-----------------------------------L0.?-----------------------------------| " + - "**** Simulation run 416, type=split(ReduceOverlap)(split_times=[1686842571022320444]). 1 Input Files, 99mb total:" + - "L0, all files 99mb " + - "L0.1565[1686842547242379894,1686843701162162160] 1686936871.55s|----------------------------------------L0.1565-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 99mb total:" + - "L0 " + - "L0.?[1686842547242379894,1686842571022320444] 1686936871.55s 2mb|L0.?| " + - "L0.?[1686842571022320445,1686843701162162160] 1686936871.55s 97mb |-----------------------------------------L0.?-----------------------------------------| " + - "**** Simulation run 417, type=split(ReduceOverlap)(split_times=[1686843763044640888]). 1 Input Files, 98mb total:" + - "L0, all files 98mb " + - "L0.1517[1686843715484759787,1686844862243243240] 1686936871.55s|----------------------------------------L0.1517-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 98mb total:" + - "L0 " + - "L0.?[1686843715484759787,1686843763044640888] 1686936871.55s 4mb|L0.?| " + - "L0.?[1686843763044640889,1686844862243243240] 1686936871.55s 94mb |----------------------------------------L0.?----------------------------------------| " + - "**** Simulation run 418, type=split(ReduceOverlap)(split_times=[1686846054770701976]). 1 Input Files, 99mb total:" + - "L0, all files 99mb " + - "L0.1569[1686846030485623134,1686847184405405399] 1686936871.55s|----------------------------------------L0.1569-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 99mb total:" + - "L0 " + - "L0.?[1686846030485623134,1686846054770701976] 1686936871.55s 2mb|L0.?| " + - "L0.?[1686846054770701977,1686847184405405399] 1686936871.55s 97mb |-----------------------------------------L0.?-----------------------------------------| " + - "**** Simulation run 419, type=split(ReduceOverlap)(split_times=[1686847247298160711]). 1 Input Files, 98mb total:" + - "L0, all files 98mb " + - "L0.1520[1686847198728003026,1686848345486486480] 1686936871.55s|----------------------------------------L0.1520-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 98mb total:" + - "L0 " + - "L0.?[1686847198728003026,1686847247298160711] 1686936871.55s 4mb|L0.?| " + - "L0.?[1686847247298160712,1686848345486486480] 1686936871.55s 94mb |----------------------------------------L0.?----------------------------------------| " + - "**** Simulation run 420, type=split(ReduceOverlap)(split_times=[1686849506567567560, 1686849559289331160]). 1 Input Files, 52mb total:" + - "L0, all files 52mb " + - "L0.1575[1686849491497710571,1686850087108108099] 1686936871.55s|----------------------------------------L0.1575-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 52mb total:" + - "L0 " + - "L0.?[1686849491497710571,1686849506567567560] 1686936871.55s 1mb|L0.?| " + - "L0.?[1686849506567567561,1686849559289331160] 1686936871.55s 5mb |L0.?-| " + - "L0.?[1686849559289331161,1686850087108108099] 1686936871.55s 46mb |------------------------------------L0.?-------------------------------------| " + - "**** Simulation run 421, type=split(ReduceOverlap)(split_times=[1686850667648648639, 1686850773092175839]). 1 Input Files, 28mb total:" + - "L0, all files 28mb " + - "L0.1579[1686850637508934660,1686850957918918908] 1686936871.55s|----------------------------------------L0.1579-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 28mb total:" + - "L0 " + - "L0.?[1686850637508934660,1686850667648648639] 1686936871.55s 3mb|-L0.?-| " + - "L0.?[1686850667648648640,1686850773092175839] 1686936871.55s 9mb |-----------L0.?------------| " + - "L0.?[1686850773092175840,1686850957918918908] 1686936871.55s 16mb |----------------------L0.?-----------------------| " + - "**** Simulation run 422, type=split(ReduceOverlap)(split_times=[1686851828729729720]). 1 Input Files, 12mb total:" + - "L0, all files 12mb " + - "L0.1585[1686851828729729718,1686851943085513215] 1686936871.55s|----------------------------------------L0.1585----------------------------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 12mb total:" + - "L0 " + - "L0.?[1686851828729729718,1686851828729729720] 1686936871.55s 0b|L0.?| " + - "L0.?[1686851828729729721,1686851943085513215] 1686936871.55s 12mb|-----------------------------------------L0.?------------------------------------------| " + - "**** Simulation run 423, type=split(ReduceOverlap)(split_times=[1686852757594594584]). 1 Input Files, 23mb total:" + - "L0, all files 23mb " + - "L0.1589[1686852699540540527,1686852928252107519] 1686936871.55s|----------------------------------------L0.1589-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 23mb total:" + - "L0 " + - "L0.?[1686852699540540527,1686852757594594584] 1686936871.55s 6mb|--------L0.?--------| " + - "L0.?[1686852757594594585,1686852928252107519] 1686936871.55s 17mb |------------------------------L0.?-------------------------------| " + - "**** Simulation run 424, type=split(ReduceOverlap)(split_times=[1686853500686486475]). 1 Input Files, 65mb total:" + - "L0, all files 65mb " + - "L0.1590[1686852928252107520,1686853570351351335] 1686936871.55s|----------------------------------------L0.1590-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 65mb total:" + - "L0 " + - "L0.?[1686852928252107520,1686853500686486475] 1686936871.55s 58mb|-------------------------------------L0.?-------------------------------------| " + - "L0.?[1686853500686486476,1686853570351351335] 1686936871.55s 7mb |-L0.?--| " + - "**** Simulation run 425, type=split(ReduceOverlap)(split_times=[1686854034336087198, 1686854243778378365]). 1 Input Files, 61mb total:" + - "L0, all files 61mb " + - "L0.1594[1686853686459459448,1686854441162162144] 1686936871.55s|----------------------------------------L0.1594-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 61mb total:" + - "L0 " + - "L0.?[1686853686459459448,1686854034336087198] 1686936871.55s 28mb|-----------------L0.?------------------| " + - "L0.?[1686854034336087199,1686854243778378365] 1686936871.55s 17mb |---------L0.?---------| " + - "L0.?[1686854243778378366,1686854441162162144] 1686936871.55s 16mb |--------L0.?---------| " + - "**** Simulation run 426, type=split(ReduceOverlap)(split_times=[1686854986870270255, 1686855311077579811]). 1 Input Files, 7mb total:" + - "L0, all files 7mb " + - "L0.1598[1686854819000000001,1686855311972972953] 1686936871.55s|----------------------------------------L0.1598-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 7mb total:" + - "L0 " + - "L0.?[1686854819000000001,1686854986870270255] 1686936871.55s 2mb|------------L0.?------------| " + - "L0.?[1686854986870270256,1686855311077579811] 1686936871.55s 4mb |--------------------------L0.?---------------------------| " + - "L0.?[1686855311077579812,1686855311972972953] 1686936871.55s 12kb |L0.?|" + - "**** Simulation run 427, type=split(ReduceOverlap)(split_times=[1686854986870270255, 1686855311077579811]). 1 Input Files, 32mb total:" + - "L0, all files 32mb " + - "L0.1600[1686854918102788683,1686855311972972953] 1686936871.55s|----------------------------------------L0.1600-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 32mb total:" + - "L0 " + - "L0.?[1686854918102788683,1686854986870270255] 1686936871.55s 6mb|----L0.?-----| " + - "L0.?[1686854986870270256,1686855311077579811] 1686936871.55s 26mb |----------------------------------L0.?----------------------------------| " + - "L0.?[1686855311077579812,1686855311972972953] 1686936871.55s 74kb |L0.?|" + - "**** Simulation run 428, type=split(ReduceOverlap)(split_times=[1686855729962162145]). 1 Input Files, 68mb total:" + - "L0, all files 68mb " + - "L0.1601[1686855311972972954,1686856149746117916] 1686936871.55s|----------------------------------------L0.1601-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 68mb total:" + - "L0 " + - "L0.?[1686855311972972954,1686855729962162145] 1686936871.55s 34mb|-------------------L0.?-------------------| " + - "L0.?[1686855729962162146,1686856149746117916] 1686936871.55s 34mb |-------------------L0.?--------------------| " + - "**** Simulation run 429, type=split(ReduceOverlap)(split_times=[1686855729962162145]). 1 Input Files, 11mb total:" + - "L0, all files 11mb " + - "L0.1599[1686855311972972954,1686856142243243231] 1686936871.55s|----------------------------------------L0.1599-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 11mb total:" + - "L0 " + - "L0.?[1686855311972972954,1686855729962162145] 1686936871.55s 6mb|-------------------L0.?--------------------| " + - "L0.?[1686855729962162146,1686856142243243231] 1686936871.55s 5mb |-------------------L0.?-------------------| " + - "**** Simulation run 430, type=split(ReduceOverlap)(split_times=[1686856473054054036]). 1 Input Files, 24mb total:" + - "L0, all files 24mb " + - "L0.1609[1686856182783783763,1686856473054054039] 1686936871.55s|----------------------------------------L0.1609-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 24mb total:" + - "L0 " + - "L0.?[1686856182783783763,1686856473054054036] 1686936871.55s 24mb|-----------------------------------------L0.?------------------------------------------| " + - "L0.?[1686856473054054037,1686856473054054039] 1686936871.55s 1b |L0.?|" + - "**** Simulation run 431, type=split(ReduceOverlap)(split_times=[1686856473054054036]). 1 Input Files, 4mb total:" + - "L0, all files 4mb " + - "L0.1607[1686856182783783763,1686856473054054039] 1686936871.55s|----------------------------------------L0.1607-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" + - "L0 " + - "L0.?[1686856182783783763,1686856473054054036] 1686936871.55s 4mb|-----------------------------------------L0.?------------------------------------------| " + - "L0.?[1686856473054054037,1686856473054054039] 1686936871.55s 1b |L0.?|" + - "**** Simulation run 432, type=split(ReduceOverlap)(split_times=[1686857216145945927, 1686857724225846697]). 1 Input Files, 9mb total:" + - "L0, all files 9mb " + - "L0.1615[1686857053594594572,1686857924405405380] 1686936871.55s|----------------------------------------L0.1615-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 9mb total:" + - "L0 " + - "L0.?[1686857053594594572,1686857216145945927] 1686936871.55s 2mb|-----L0.?-----| " + - "L0.?[1686857216145945928,1686857724225846697] 1686936871.55s 5mb |-----------------------L0.?-----------------------| " + - "L0.?[1686857724225846698,1686857924405405380] 1686936871.55s 2mb |-------L0.?-------| " + - "**** Simulation run 433, type=split(ReduceOverlap)(split_times=[1686857959237837817, 1686858702329729707]). 1 Input Files, 9mb total:" + - "L0, all files 9mb " + - "L0.1616[1686857924405405381,1686858795216216189] 1686936871.55s|----------------------------------------L0.1616-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 9mb total:" + - "L0 " + - "L0.?[1686857924405405381,1686857959237837817] 1686936871.55s 374kb|L0.?| " + - "L0.?[1686857959237837818,1686858702329729707] 1686936871.55s 8mb |-----------------------------------L0.?-----------------------------------| " + - "L0.?[1686858702329729708,1686858795216216189] 1686936871.55s 998kb |-L0.?--| " + - "**** Simulation run 434, type=split(ReduceOverlap)(split_times=[1686858975397639357]). 1 Input Files, 2mb total:" + - "L0, all files 2mb " + - "L0.1617[1686858795216216190,1686859027432432416] 1686936871.55s|----------------------------------------L0.1617-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" + - "L0 " + - "L0.?[1686858795216216190,1686858975397639357] 1686936871.55s 2mb|-------------------------------L0.?--------------------------------| " + - "L0.?[1686858975397639358,1686859027432432416] 1686936871.55s 559kb |-------L0.?-------| " + - "**** Simulation run 435, type=split(ReduceOverlap)(split_times=[1686859589566760129]). 1 Input Files, 7mb total:" + - "L0, all files 7mb " + - "L0.1625[1686859027432432417,1686859666027026998] 1686936871.55s|----------------------------------------L0.1625-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 7mb total:" + - "L0 " + - "L0.?[1686859027432432417,1686859589566760129] 1686936871.55s 6mb|------------------------------------L0.?-------------------------------------| " + - "L0.?[1686859589566760130,1686859666027026998] 1686936871.55s 821kb |--L0.?--| " + - "**** Simulation run 436, type=split(ReduceOverlap)(split_times=[1686859589566760129]). 1 Input Files, 553kb total:" + - "L0, all files 553kb " + - "L0.1627[1686859499000000001,1686859666027026998] 1686936871.55s|----------------------------------------L0.1627-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 553kb total:" + - "L0 " + - "L0.?[1686859499000000001,1686859589566760129] 1686936871.55s 300kb|---------------------L0.?---------------------| " + - "L0.?[1686859589566760130,1686859666027026998] 1686936871.55s 253kb |-----------------L0.?------------------| " + - "**** Simulation run 437, type=split(ReduceOverlap)(split_times=[1686860002800686531, 1686860203735880900]). 1 Input Files, 73mb total:" + - "L0, all files 73mb " + - "L0.1631[1686859666027027011,1686860536837837807] 1686936871.55s|----------------------------------------L0.1631-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 73mb total:" + - "L0 " + - "L0.?[1686859666027027011,1686860002800686531] 1686936871.55s 28mb|--------------L0.?--------------| " + - "L0.?[1686860002800686532,1686860203735880900] 1686936871.55s 17mb |-------L0.?-------| " + - "L0.?[1686860203735880901,1686860536837837807] 1686936871.55s 28mb |--------------L0.?--------------| " + - "**** Simulation run 438, type=split(ReduceOverlap)(split_times=[1686860203735880900]). 1 Input Files, 2mb total:" + - "L0, all files 2mb " + - "L0.1633[1686860002800686532,1686860536837837807] 1686936871.55s|----------------------------------------L0.1633-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" + - "L0 " + - "L0.?[1686860002800686532,1686860203735880900] 1686936871.55s 827kb|-------------L0.?--------------| " + - "L0.?[1686860203735880901,1686860536837837807] 1686936871.55s 1mb |-------------------------L0.?-------------------------| " + - "**** Simulation run 439, type=split(ReduceOverlap)(split_times=[1686860817905001671, 1686861030203733704]). 1 Input Files, 4mb total:" + - "L0, all files 4mb " + - "L0.1634[1686860536837837808,1686861407648648616] 1686936871.55s|----------------------------------------L0.1634-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 4mb total:" + - "L0 " + - "L0.?[1686860536837837808,1686860817905001671] 1686936871.55s 1mb|-----------L0.?------------| " + - "L0.?[1686860817905001672,1686861030203733704] 1686936871.55s 874kb |-------L0.?--------| " + - "L0.?[1686861030203733705,1686861407648648616] 1686936871.55s 2mb |----------------L0.?-----------------| " + - "**** Simulation run 440, type=split(ReduceOverlap)(split_times=[1686860817905001671]). 1 Input Files, 27mb total:" + - "L0, all files 27mb " + - "L0.1632[1686860536837837808,1686860866085039343] 1686936871.55s|----------------------------------------L0.1632-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 27mb total:" + - "L0 " + - "L0.?[1686860536837837808,1686860817905001671] 1686936871.55s 23mb|-----------------------------------L0.?-----------------------------------| " + - "L0.?[1686860817905001672,1686860866085039343] 1686936871.55s 4mb |---L0.?----| " + - "**** Simulation run 441, type=split(ReduceOverlap)(split_times=[1686861030203733704]). 1 Input Files, 45mb total:" + - "L0, all files 45mb " + - "L0.1639[1686860866085039344,1686861407648648616] 1686936871.55s|----------------------------------------L0.1639-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 45mb total:" + - "L0 " + - "L0.?[1686860866085039344,1686861030203733704] 1686936871.55s 14mb|----------L0.?-----------| " + - "L0.?[1686861030203733705,1686861407648648616] 1686936871.55s 31mb |----------------------------L0.?----------------------------| " + - "**** Simulation run 442, type=split(ReduceOverlap)(split_times=[1686862070968521403]). 1 Input Files, 4mb total:" + - "L0, all files 4mb " + - "L0.1635[1686861407648648617,1686862278459459425] 1686936871.55s|----------------------------------------L0.1635-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 4mb total:" + - "L0 " + - "L0.?[1686861407648648617,1686862070968521403] 1686936871.55s 3mb|-------------------------------L0.?-------------------------------| " + - "L0.?[1686862070968521404,1686862278459459425] 1686936871.55s 854kb |-------L0.?--------| " + - "**** Simulation run 443, type=split(ReduceOverlap)(split_times=[1686862070968521403]). 1 Input Files, 18mb total:" + - "L0, all files 18mb " + - "L0.1643[1686862066143051676,1686862278459459425] 1686936871.55s|----------------------------------------L0.1643-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 18mb total:" + - "L0 " + - "L0.?[1686862066143051676,1686862070968521403] 1686936871.55s 412kb|L0.?| " + - "L0.?[1686862070968521404,1686862278459459425] 1686936871.55s 17mb |----------------------------------------L0.?-----------------------------------------| " + - "**** Simulation run 444, type=split(ReduceOverlap)(split_times=[1686863111733309101]). 1 Input Files, 22mb total:" + - "L0, all files 22mb " + - "L0.1647[1686862975108108078,1686863149270270234] 1686936871.55s|----------------------------------------L0.1647-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 22mb total:" + - "L0 " + - "L0.?[1686862975108108078,1686863111733309101] 1686936871.55s 17mb|--------------------------------L0.?--------------------------------| " + - "L0.?[1686863111733309102,1686863149270270234] 1686936871.55s 5mb |------L0.?-------| " + - "**** Simulation run 445, type=split(ReduceOverlap)(split_times=[1686863903972972940]). 1 Input Files, 32mb total:" + - "L0, all files 32mb " + - "L0.1651[1686863763854983773,1686864020081081043] 1686936871.55s|----------------------------------------L0.1651-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 32mb total:" + - "L0 " + - "L0.?[1686863763854983773,1686863903972972940] 1686936871.55s 18mb|---------------------L0.?----------------------| " + - "L0.?[1686863903972972941,1686864020081081043] 1686936871.55s 15mb |-----------------L0.?-----------------| " + - "**** Simulation run 446, type=split(ReduceOverlap)(split_times=[1686864651607515459, 1686864832837837803]). 1 Input Files, 43mb total:" + - "L0, all files 43mb " + - "L0.1655[1686864552601859467,1686864890891891852] 1686936871.55s|----------------------------------------L0.1655-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 43mb total:" + - "L0 " + - "L0.?[1686864552601859467,1686864651607515459] 1686936871.55s 13mb|----------L0.?----------| " + - "L0.?[1686864651607515460,1686864832837837803] 1686936871.55s 23mb |---------------------L0.?---------------------| " + - "L0.?[1686864832837837804,1686864890891891852] 1686936871.55s 7mb |----L0.?-----| " + - "**** Simulation run 447, type=split(ReduceOverlap)(split_times=[1686864832837837803]). 1 Input Files, 8mb total:" + - "L0, all files 8mb " + - "L0.1657[1686864651607515460,1686864890891891852] 1686936871.55s|----------------------------------------L0.1657-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 8mb total:" + - "L0 " + - "L0.?[1686864651607515460,1686864832837837803] 1686936871.55s 6mb|-------------------------------L0.?-------------------------------| " + - "L0.?[1686864832837837804,1686864890891891852] 1686936871.55s 2mb |-------L0.?--------| " + - "**** Simulation run 448, type=split(ReduceOverlap)(split_times=[1686865761702702680]). 1 Input Files, 94mb total:" + - "L0, all files 94mb " + - "L0.1663[1686865761702702662,1686866540230594239] 1686936871.55s|----------------------------------------L0.1663----------------------------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 94mb total:" + - "L0 " + - "L0.?[1686865761702702662,1686865761702702680] 1686936871.55s 0b|L0.?| " + - "L0.?[1686865761702702681,1686866540230594239] 1686936871.55s 94mb|-----------------------------------------L0.?------------------------------------------| " + - "**** Simulation run 449, type=split(ReduceOverlap)(split_times=[1686867503324324300, 1686867659000000000, 1686867839000000000]). 1 Input Files, 100mb total:" + - "L0, all files 100mb " + - "L0.1561[1686867299592048858,1686867966670584223] 1686936871.55s|----------------------------------------L0.1561-----------------------------------------|" + - "**** 4 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L0 " + - "L0.?[1686867299592048858,1686867503324324300] 1686936871.55s 31mb|----------L0.?-----------| " + - "L0.?[1686867503324324301,1686867659000000000] 1686936871.55s 23mb |-------L0.?--------| " + - "L0.?[1686867659000000001,1686867839000000000] 1686936871.55s 27mb |---------L0.?---------| " + - "L0.?[1686867839000000001,1686867966670584223] 1686936871.55s 19mb |-----L0.?------| " + - "**** Simulation run 450, type=split(ReduceOverlap)(split_times=[1686869244945945920]). 1 Input Files, 96mb total:" + - "L0, all files 96mb " + - "L0.1668[1686868931238859877,1686869516837837819] 1686936871.55s|----------------------------------------L0.1668-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 96mb total:" + - "L0 " + - "L0.?[1686868931238859877,1686869244945945920] 1686936871.55s 51mb|---------------------L0.?---------------------| " + - "L0.?[1686869244945945921,1686869516837837819] 1686936871.55s 44mb |-----------------L0.?------------------| " + - "**** Simulation run 451, type=split(ReduceOverlap)(split_times=[1686871857378378350]). 1 Input Files, 45mb total:" + - "L0, all files 45mb " + - "L0.1677[1686871857378378350,1686872106056369133] 1686936871.55s|----------------------------------------L0.1677-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 45mb total:" + - "L0 " + - "L0.?[1686871857378378350,1686871857378378350] 1686936871.55s 0b|L0.?| " + - "L0.?[1686871857378378351,1686872106056369133] 1686936871.55s 45mb|-----------------------------------------L0.?------------------------------------------| " + - "Committing partition 1:" + - " Soft Deleting 40 files: L0.1517, L0.1520, L0.1534, L0.1561, L0.1565, L0.1569, L0.1575, L0.1579, L0.1585, L0.1589, L0.1590, L0.1594, L0.1598, L0.1599, L0.1600, L0.1601, L0.1607, L0.1609, L0.1613, L0.1615, L0.1616, L0.1617, L0.1618, L0.1619, L0.1625, L0.1627, L0.1631, L0.1632, L0.1633, L0.1634, L0.1635, L0.1639, L0.1643, L0.1647, L0.1651, L0.1655, L0.1657, L0.1663, L0.1668, L0.1677" + - " Creating 93 files" + - "**** Simulation run 452, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686857087331457301, 1686857701608860565]). 11 Input Files, 242mb total:" + - "L0 " + - "L0.1612[1686856473054054040,1686857053594594571] 1686935947.46s 48mb|-------------L0.1612-------------| " + - "L0.1678[1686857053594594572,1686857216145945927] 1686935947.46s 13mb |L0.1678| " + - "L0.1679[1686857216145945928,1686857679795016021] 1686935947.46s 38mb |---------L0.1679----------| " + - "L0.1680[1686857679795016022,1686857724225846697] 1686935947.46s 4mb |L0.1680| " + - "L0.1681[1686857724225846698,1686857924405405380] 1686935947.46s 17mb |-L0.1681--| " + - "L0.1682[1686857924405405381,1686857959237837817] 1686935947.46s 3mb |L0.1682|" + - "L1 " + - "L1.1610[1686856473054054037,1686857053594594571] 1686932677.39s 46mb|-------------L1.1610-------------| " + - "L1.1611[1686857053594594572,1686857216145945927] 1686932677.39s 13mb |L1.1611| " + - "L1.1444[1686857216145945928,1686857724225846697] 1686932677.39s 41mb |----------L1.1444-----------| " + - "L1.1621[1686857724225846698,1686857924405405380] 1686932677.39s 16mb |-L1.1621--| " + - "L1.1622[1686857924405405381,1686857959237837817] 1686932677.39s 3mb |L1.1622|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 242mb total:" + - "L1 " + - "L1.?[1686856473054054037,1686857087331457301] 1686935947.46s 100mb|---------------L1.?----------------| " + - "L1.?[1686857087331457302,1686857701608860565] 1686935947.46s 100mb |---------------L1.?----------------| " + - "L1.?[1686857701608860566,1686857959237837817] 1686935947.46s 42mb |----L1.?-----| " + - "Committing partition 1:" + - " Soft Deleting 11 files: L1.1444, L1.1610, L1.1611, L0.1612, L1.1621, L1.1622, L0.1678, L0.1679, L0.1680, L0.1681, L0.1682" + - " Creating 3 files" + - "**** Simulation run 453, type=split(ReduceOverlap)(split_times=[1686857087331457301]). 1 Input Files, 2mb total:" + - "L0, all files 2mb " + - "L0.1724[1686857053594594572,1686857216145945927] 1686936871.55s|----------------------------------------L0.1724-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 2mb total:" + - "L0 " + - "L0.?[1686857053594594572,1686857087331457301] 1686936871.55s 362kb|------L0.?------| " + - "L0.?[1686857087331457302,1686857216145945927] 1686936871.55s 1mb |--------------------------------L0.?---------------------------------| " + - "**** Simulation run 454, type=split(ReduceOverlap)(split_times=[1686857701608860565]). 1 Input Files, 5mb total:" + - "L0, all files 5mb " + - "L0.1725[1686857216145945928,1686857724225846697] 1686936871.55s|----------------------------------------L0.1725-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 5mb total:" + - "L0 " + - "L0.?[1686857216145945928,1686857701608860565] 1686936871.55s 5mb|---------------------------------------L0.?----------------------------------------| " + - "L0.?[1686857701608860566,1686857724225846697] 1686936871.55s 243kb |L0.?|" + - "Committing partition 1:" + - " Soft Deleting 2 files: L0.1724, L0.1725" + - " Creating 4 files" + - "**** Simulation run 455, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686858566228295774, 1686859173218753730]). 9 Input Files, 269mb total:" + - "L0 " + - "L0.1683[1686857959237837818,1686858702329729707] 1686935947.46s 62mb|----------------L0.1683----------------| " + - "L0.1684[1686858702329729708,1686858795216216189] 1686935947.46s 8mb |L0.1684| " + - "L0.1620[1686858795216216190,1686858886535978002] 1686935947.46s 8mb |L0.1620| " + - "L0.1685[1686858886535978003,1686858975397639357] 1686935947.46s 7mb |L0.1685| " + - "L0.1686[1686858975397639358,1686859499000000000] 1686935947.46s 43mb |---------L0.1686----------| " + - "L1 " + - "L1.1450[1686857959237837818,1686858702329729707] 1686932677.39s 59mb|----------------L1.1450----------------| " + - "L1.1623[1686858702329729708,1686858795216216189] 1686932677.39s 7mb |L1.1623| " + - "L1.1624[1686858795216216190,1686858975397639357] 1686932677.39s 14mb |L1.1624| " + - "L1.1479[1686858975397639358,1686859589566760129] 1686932677.39s 60mb |------------L1.1479------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 269mb total:" + - "L1 " + - "L1.?[1686857959237837818,1686858566228295774] 1686935947.46s 100mb|-------------L1.?--------------| " + - "L1.?[1686858566228295775,1686859173218753730] 1686935947.46s 100mb |-------------L1.?--------------| " + - "L1.?[1686859173218753731,1686859589566760129] 1686935947.46s 69mb |--------L1.?--------| " + - "Committing partition 1:" + - " Soft Deleting 9 files: L1.1450, L1.1479, L0.1620, L1.1623, L1.1624, L0.1683, L0.1684, L0.1685, L0.1686" + - " Creating 3 files" + - "**** Simulation run 456, type=split(ReduceOverlap)(split_times=[1686858566228295774]). 1 Input Files, 8mb total:" + - "L0, all files 8mb " + - "L0.1728[1686857959237837818,1686858702329729707] 1686936871.55s|----------------------------------------L0.1728-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 8mb total:" + - "L0 " + - "L0.?[1686857959237837818,1686858566228295774] 1686936871.55s 6mb|---------------------------------L0.?----------------------------------| " + - "L0.?[1686858566228295775,1686858702329729707] 1686936871.55s 1mb |-----L0.?-----| " + - "**** Simulation run 457, type=split(ReduceOverlap)(split_times=[1686859173218753730]). 1 Input Files, 6mb total:" + - "L0, all files 6mb " + - "L0.1732[1686859027432432417,1686859589566760129] 1686936871.55s|----------------------------------------L0.1732-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 6mb total:" + - "L0 " + - "L0.?[1686859027432432417,1686859173218753730] 1686936871.55s 2mb|--------L0.?---------| " + - "L0.?[1686859173218753731,1686859589566760129] 1686936871.55s 4mb |------------------------------L0.?------------------------------| " + - "Committing partition 1:" + - " Soft Deleting 2 files: L0.1728, L0.1732" + - " Creating 4 files" + - "**** Simulation run 458, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686841969006279730, 1686842559012559460]). 5 Input Files, 202mb total:" + - "L0 " + - "L0.1563[1686841379000000000,1686842540081081080] 1686936871.55s 99mb|---------------------------------------L0.1563---------------------------------------| " + - "L0.1564[1686842540081081081,1686842547242379893] 1686936871.55s 628kb |L0.1564|" + - "L0.1687[1686842547242379894,1686842571022320444] 1686936871.55s 2mb |L0.1687|" + - "L1 " + - "L1.1340[1686841379000000000,1686842540081081080] 1686932677.39s 97mb|---------------------------------------L1.1340---------------------------------------| " + - "L1.1341[1686842540081081081,1686842571022320444] 1686932677.39s 3mb |L1.1341|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 202mb total:" + - "L1 " + - "L1.?[1686841379000000000,1686841969006279730] 1686936871.55s 100mb|-------------------L1.?-------------------| " + - "L1.?[1686841969006279731,1686842559012559460] 1686936871.55s 100mb |-------------------L1.?-------------------| " + - "L1.?[1686842559012559461,1686842571022320444] 1686936871.55s 2mb |L1.?|" + - "Committing partition 1:" + - " Soft Deleting 5 files: L1.1340, L1.1341, L0.1563, L0.1564, L0.1687" + - " Creating 3 files" + - "**** Simulation run 459, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686843161028605744, 1686843751034891043]). 5 Input Files, 202mb total:" + - "L0 " + - "L0.1688[1686842571022320445,1686843701162162160] 1686936871.55s 97mb|--------------------------------------L0.1688--------------------------------------| " + - "L0.1566[1686843701162162161,1686843715484759786] 1686936871.55s 1mb |L0.1566|" + - "L0.1689[1686843715484759787,1686843763044640888] 1686936871.55s 4mb |L0.1689|" + - "L1 " + - "L1.1346[1686842571022320445,1686843701162162160] 1686932677.39s 95mb|--------------------------------------L1.1346--------------------------------------| " + - "L1.1347[1686843701162162161,1686843763044640888] 1686932677.39s 5mb |L1.1347|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 202mb total:" + - "L1 " + - "L1.?[1686842571022320445,1686843161028605744] 1686936871.55s 100mb|-------------------L1.?-------------------| " + - "L1.?[1686843161028605745,1686843751034891043] 1686936871.55s 100mb |-------------------L1.?-------------------| " + - "L1.?[1686843751034891044,1686843763044640888] 1686936871.55s 2mb |L1.?|" + - "Committing partition 1:" + - " Soft Deleting 5 files: L1.1346, L1.1347, L0.1566, L0.1688, L0.1689" + - " Creating 3 files" + - "**** Simulation run 460, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686844353050911219]). 2 Input Files, 186mb total:" + - "L0 " + - "L0.1690[1686843763044640889,1686844862243243240] 1686936871.55s 94mb|----------------------------------------L0.1690-----------------------------------------|" + - "L1 " + - "L1.1339[1686843763044640889,1686844862243243240] 1686932677.39s 92mb|----------------------------------------L1.1339-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 186mb total:" + - "L1 " + - "L1.?[1686843763044640889,1686844353050911219] 1686936871.55s 100mb|---------------------L1.?---------------------| " + - "L1.?[1686844353050911220,1686844862243243240] 1686936871.55s 86mb |-----------------L1.?------------------| " + - "Committing partition 1:" + - " Soft Deleting 2 files: L1.1339, L0.1690" + - " Creating 2 files" + - "**** Simulation run 461, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686845452373250763, 1686846042503258285]). 5 Input Files, 202mb total:" + - "L0 " + - "L0.1567[1686844862243243241,1686846023324324320] 1686936871.55s 99mb|---------------------------------------L0.1567---------------------------------------| " + - "L0.1568[1686846023324324321,1686846030485623133] 1686936871.55s 628kb |L0.1568|" + - "L0.1691[1686846030485623134,1686846054770701976] 1686936871.55s 2mb |L0.1691|" + - "L1 " + - "L1.1363[1686844862243243241,1686846023324324320] 1686932677.39s 97mb|---------------------------------------L1.1363---------------------------------------| " + - "L1.1364[1686846023324324321,1686846054770701976] 1686932677.39s 3mb |L1.1364|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 202mb total:" + - "L1 " + - "L1.?[1686844862243243241,1686845452373250763] 1686936871.55s 100mb|-------------------L1.?-------------------| " + - "L1.?[1686845452373250764,1686846042503258285] 1686936871.55s 100mb |-------------------L1.?-------------------| " + - "L1.?[1686846042503258286,1686846054770701976] 1686936871.55s 2mb |L1.?|" + - "Committing partition 1:" + - " Soft Deleting 5 files: L1.1363, L1.1364, L0.1567, L0.1568, L0.1691" + - " Creating 3 files" + - "**** Simulation run 462, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686846644900712284, 1686847235030722591]). 5 Input Files, 202mb total:" + - "L0 " + - "L0.1692[1686846054770701977,1686847184405405399] 1686936871.55s 97mb|--------------------------------------L0.1692--------------------------------------| " + - "L0.1570[1686847184405405400,1686847198728003025] 1686936871.55s 1mb |L0.1570|" + - "L0.1693[1686847198728003026,1686847247298160711] 1686936871.55s 4mb |L0.1693|" + - "L1 " + - "L1.1369[1686846054770701977,1686847184405405399] 1686932677.39s 95mb|--------------------------------------L1.1369--------------------------------------| " + - "L1.1370[1686847184405405400,1686847247298160711] 1686932677.39s 5mb |L1.1370|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 202mb total:" + - "L1 " + - "L1.?[1686846054770701977,1686846644900712284] 1686936871.55s 100mb|-------------------L1.?-------------------| " + - "L1.?[1686846644900712285,1686847235030722591] 1686936871.55s 100mb |-------------------L1.?-------------------| " + - "L1.?[1686847235030722592,1686847247298160711] 1686936871.55s 2mb |L1.?|" + - "Committing partition 1:" + - " Soft Deleting 5 files: L1.1369, L1.1370, L0.1570, L0.1692, L0.1693" + - " Creating 3 files" + - "**** Simulation run 463, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686847837428156951]). 2 Input Files, 186mb total:" + - "L0 " + - "L0.1694[1686847247298160712,1686848345486486480] 1686936871.55s 94mb|----------------------------------------L0.1694-----------------------------------------|" + - "L1 " + - "L1.1362[1686847247298160712,1686848345486486480] 1686932677.39s 92mb|----------------------------------------L1.1362-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 186mb total:" + - "L1 " + - "L1.?[1686847247298160712,1686847837428156951] 1686936871.55s 100mb|---------------------L1.?---------------------| " + - "L1.?[1686847837428156952,1686848345486486480] 1686936871.55s 86mb |-----------------L1.?------------------| " + - "Committing partition 1:" + - " Soft Deleting 2 files: L1.1362, L0.1694" + - " Creating 2 files" + - "**** Simulation run 464, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686848934953137039, 1686849524419787597]). 9 Input Files, 295mb total:" + - "L0 " + - "L0.1573[1686848345486486481,1686849216297297290] 1686936871.55s 76mb|------------------L0.1573------------------| " + - "L0.1574[1686849216297297291,1686849491497710570] 1686936871.55s 24mb |--L0.1574---| " + - "L0.1695[1686849491497710571,1686849506567567560] 1686936871.55s 1mb |L0.1695| " + - "L0.1696[1686849506567567561,1686849559289331160] 1686936871.55s 5mb |L0.1696| " + - "L0.1697[1686849559289331161,1686850087108108099] 1686936871.55s 46mb |---------L0.1697---------| " + - "L1 " + - "L1.1571[1686848345486486481,1686849216297297290] 1686932677.39s 72mb|------------------L1.1571------------------| " + - "L1.1572[1686849216297297291,1686849506567567560] 1686932677.39s 24mb |--L1.1572---| " + - "L1.1387[1686849506567567561,1686849559289331160] 1686932677.39s 4mb |L1.1387| " + - "L1.1577[1686849559289331161,1686850087108108099] 1686932677.39s 43mb |---------L1.1577---------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 295mb total:" + - "L1 " + - "L1.?[1686848345486486481,1686848934953137039] 1686936871.55s 100mb|------------L1.?------------| " + - "L1.?[1686848934953137040,1686849524419787597] 1686936871.55s 100mb |------------L1.?------------| " + - "L1.?[1686849524419787598,1686850087108108099] 1686936871.55s 95mb |-----------L1.?------------| " + - "Committing partition 1:" + - " Soft Deleting 9 files: L1.1387, L1.1571, L1.1572, L0.1573, L0.1574, L1.1577, L0.1695, L0.1696, L0.1697" + - " Creating 3 files" + - "**** Simulation run 465, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686850880662583047, 1686851674217057994]). 9 Input Files, 219mb total:" + - "L0 " + - "L0.1576[1686850087108108100,1686850637508934659] 1686936871.55s 48mb|---------L0.1576----------| " + - "L0.1698[1686850637508934660,1686850667648648639] 1686936871.55s 3mb |L0.1698| " + - "L0.1699[1686850667648648640,1686850773092175839] 1686936871.55s 9mb |L0.1699| " + - "L0.1700[1686850773092175840,1686850957918918908] 1686936871.55s 16mb |L0.1700| " + - "L0.1580[1686850957918918909,1686850957918918910] 1686936871.55s 1b |L0.1580| " + - "L1 " + - "L1.1578[1686850087108108100,1686850667648648639] 1686932677.39s 48mb|----------L1.1578-----------| " + - "L1.1393[1686850667648648640,1686850773092175839] 1686932677.39s 9mb |L1.1393| " + - "L1.1581[1686850773092175840,1686850957918918908] 1686932677.39s 15mb |L1.1581| " + - "L1.1582[1686850957918918909,1686851828729729717] 1686932677.39s 72mb |-----------------L1.1582------------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 219mb total:" + - "L1 " + - "L1.?[1686850087108108100,1686850880662583047] 1686936871.55s 100mb|-----------------L1.?------------------| " + - "L1.?[1686850880662583048,1686851674217057994] 1686936871.55s 100mb |-----------------L1.?------------------| " + - "L1.?[1686851674217057995,1686851828729729717] 1686936871.55s 19mb |L1.?-| " + - "Committing partition 1:" + - " Soft Deleting 9 files: L1.1393, L0.1576, L1.1578, L0.1580, L1.1581, L1.1582, L0.1698, L0.1699, L0.1700" + - " Creating 3 files" + - "**** Simulation run 466, type=split(ReduceOverlap)(split_times=[1686851674217057994]). 1 Input Files, 88mb total:" + - "L0, all files 88mb " + - "L0.1584[1686850957918918911,1686851828729729717] 1686936871.55s|----------------------------------------L0.1584-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 88mb total:" + - "L0 " + - "L0.?[1686850957918918911,1686851674217057994] 1686936871.55s 73mb|----------------------------------L0.?----------------------------------| " + - "L0.?[1686851674217057995,1686851828729729717] 1686936871.55s 16mb |----L0.?-----| " + - "Committing partition 1:" + - " Soft Deleting 1 files: L0.1584" + - " Creating 2 files" + - "**** Simulation run 467, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686851661119027532, 1686852441575472016]). 8 Input Files, 233mb total:" + - "L0 " + - "L0.1807[1686850957918918911,1686851674217057994] 1686936871.55s 73mb |-------------L0.1807-------------| " + - "L0.1808[1686851674217057995,1686851828729729717] 1686936871.55s 16mb |L0.1808| " + - "L0.1701[1686851828729729718,1686851828729729720] 1686936871.55s 0b |L0.1701| " + - "L0.1702[1686851828729729721,1686851943085513215] 1686936871.55s 12mb |L0.1702| " + - "L1 " + - "L1.1805[1686850880662583048,1686851674217057994] 1686936871.55s 100mb|---------------L1.1805---------------| " + - "L1.1806[1686851674217057995,1686851828729729717] 1686936871.55s 19mb |L1.1806| " + - "L1.1583[1686851828729729718,1686851828729729720] 1686932677.39s 1b |L1.1583| " + - "L1.1586[1686851828729729721,1686852699540540526] 1686931893.7s 14mb |-----------------L1.1586-----------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 233mb total:" + - "L1 " + - "L1.?[1686850880662583048,1686851661119027532] 1686936871.55s 100mb|----------------L1.?----------------| " + - "L1.?[1686851661119027533,1686852441575472016] 1686936871.55s 100mb |----------------L1.?----------------| " + - "L1.?[1686852441575472017,1686852699540540526] 1686936871.55s 33mb |---L1.?---| " + - "Committing partition 1:" + - " Soft Deleting 8 files: L1.1583, L1.1586, L0.1701, L0.1702, L1.1805, L1.1806, L0.1807, L0.1808" + - " Creating 3 files" + - "**** Simulation run 468, type=split(ReduceOverlap)(split_times=[1686852441575472016]). 1 Input Files, 77mb total:" + - "L0, all files 77mb " + - "L0.1588[1686851943085513216,1686852699540540526] 1686936871.55s|----------------------------------------L0.1588-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 77mb total:" + - "L0 " + - "L0.?[1686851943085513216,1686852441575472016] 1686936871.55s 51mb|--------------------------L0.?---------------------------| " + - "L0.?[1686852441575472017,1686852699540540526] 1686936871.55s 26mb |------------L0.?------------| " + - "Committing partition 1:" + - " Soft Deleting 1 files: L0.1588" + - " Creating 2 files" + - "**** Simulation run 469, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686852290761155116, 1686852920403282699]). 8 Input Files, 292mb total:" + - "L0 " + - "L0.1812[1686851943085513216,1686852441575472016] 1686936871.55s 51mb |-------L0.1812--------| " + - "L0.1813[1686852441575472017,1686852699540540526] 1686936871.55s 26mb |-L0.1813--| " + - "L0.1703[1686852699540540527,1686852757594594584] 1686936871.55s 6mb |L0.1703| " + - "L0.1704[1686852757594594585,1686852928252107519] 1686936871.55s 17mb |L0.1704| " + - "L1 " + - "L1.1810[1686851661119027533,1686852441575472016] 1686936871.55s 100mb|--------------L1.1810---------------| " + - "L1.1811[1686852441575472017,1686852699540540526] 1686936871.55s 33mb |-L1.1811--| " + - "L1.1587[1686852699540540527,1686852757594594584] 1686931893.7s 927kb |L1.1587| " + - "L1.1409[1686852757594594585,1686853500686486475] 1686932677.39s 58mb |-------------L1.1409--------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 292mb total:" + - "L1 " + - "L1.?[1686851661119027533,1686852290761155116] 1686936871.55s 100mb|------------L1.?------------| " + - "L1.?[1686852290761155117,1686852920403282699] 1686936871.55s 100mb |------------L1.?------------| " + - "L1.?[1686852920403282700,1686853500686486475] 1686936871.55s 92mb |-----------L1.?-----------| " + - "Committing partition 1:" + - " Soft Deleting 8 files: L1.1409, L1.1587, L0.1703, L0.1704, L1.1810, L1.1811, L0.1812, L0.1813" + - " Creating 3 files" + - "**** Simulation run 470, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686853405911193904, 1686853891419105108]). 9 Input Files, 273mb total:" + - "L0 " + - "L0.1705[1686852928252107520,1686853500686486475] 1686936871.55s 58mb|--------------L0.1705---------------| " + - "L0.1706[1686853500686486476,1686853570351351335] 1686936871.55s 7mb |L0.1706| " + - "L0.1591[1686853570351351336,1686853686459459447] 1686936871.55s 12mb |L0.1591| " + - "L0.1707[1686853686459459448,1686854034336087198] 1686936871.55s 28mb |-------L0.1707-------| " + - "L0.1708[1686854034336087199,1686854243778378365] 1686936871.55s 17mb |--L0.1708---| " + - "L1 " + - "L1.1816[1686852920403282700,1686853500686486475] 1686936871.55s 92mb|---------------L1.1816---------------| " + - "L1.1592[1686853500686486476,1686853570351351335] 1686932677.39s 5mb |L1.1592| " + - "L1.1593[1686853570351351336,1686854034336087198] 1686932677.39s 36mb |-----------L1.1593-----------| " + - "L1.1419[1686854034336087199,1686854243778378365] 1686932677.39s 16mb |--L1.1419---| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 273mb total:" + - "L1 " + - "L1.?[1686852920403282700,1686853405911193904] 1686936871.55s 100mb|-------------L1.?--------------| " + - "L1.?[1686853405911193905,1686853891419105108] 1686936871.55s 100mb |-------------L1.?--------------| " + - "L1.?[1686853891419105109,1686854243778378365] 1686936871.55s 73mb |--------L1.?---------| " + - "Committing partition 1:" + - " Soft Deleting 9 files: L1.1419, L0.1591, L1.1592, L1.1593, L0.1705, L0.1706, L0.1707, L0.1708, L1.1816" + - " Creating 3 files" + - "**** Simulation run 471, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686854840368603300, 1686855436958828234]). 15 Input Files, 249mb total:" + - "L0 " + - "L0.1709[1686854243778378366,1686854441162162144] 1686936871.55s 16mb|-L0.1709-| " + - "L0.1595[1686854441162162145,1686854918102788682] 1686936871.55s 39mb |---------L0.1595----------| " + - "L0.1710[1686854819000000001,1686854986870270255] 1686936871.55s 2mb |L0.1710-| " + - "L0.1713[1686854918102788683,1686854986870270255] 1686936871.55s 6mb |L0.1713| " + - "L0.1711[1686854986870270256,1686855311077579811] 1686936871.55s 4mb |-----L0.1711-----| " + - "L0.1714[1686854986870270256,1686855311077579811] 1686936871.55s 26mb |-----L0.1714-----| " + - "L0.1712[1686855311077579812,1686855311972972953] 1686936871.55s 12kb |L0.1712| " + - "L0.1715[1686855311077579812,1686855311972972953] 1686936871.55s 74kb |L0.1715| " + - "L0.1716[1686855311972972954,1686855729962162145] 1686936871.55s 34mb |--------L0.1716--------| " + - "L0.1718[1686855311972972954,1686855729962162145] 1686936871.55s 6mb |--------L0.1718--------| " + - "L1 " + - "L1.1596[1686854243778378366,1686854441162162144] 1686932677.39s 15mb|-L1.1596-| " + - "L1.1597[1686854441162162145,1686854986870270255] 1686932677.39s 43mb |------------L1.1597------------| " + - "L1.1421[1686854986870270256,1686855311077579811] 1686932677.39s 25mb |-----L1.1421-----| " + - "L1.1602[1686855311077579812,1686855311972972953] 1686932677.39s 72kb |L1.1602| " + - "L1.1603[1686855311972972954,1686855729962162145] 1686932677.39s 33mb |--------L1.1603--------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 249mb total:" + - "L1 " + - "L1.?[1686854243778378366,1686854840368603300] 1686936871.55s 100mb|---------------L1.?---------------| " + - "L1.?[1686854840368603301,1686855436958828234] 1686936871.55s 100mb |---------------L1.?---------------| " + - "L1.?[1686855436958828235,1686855729962162145] 1686936871.55s 49mb |-----L1.?------| " + - "Committing partition 1:" + - " Soft Deleting 15 files: L1.1421, L0.1595, L1.1596, L1.1597, L1.1602, L1.1603, L0.1709, L0.1710, L0.1711, L0.1712, L0.1713, L0.1714, L0.1715, L0.1716, L0.1718" + - " Creating 3 files" + - "**** Simulation run 472, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686856308052485466, 1686856886142808786]). 13 Input Files, 235mb total:" + - "L0 " + - "L0.1719[1686855729962162146,1686856142243243231] 1686936871.55s 5mb|---------L0.1719---------| " + - "L0.1717[1686855729962162146,1686856149746117916] 1686936871.55s 34mb|---------L0.1717---------| " + - "L0.1606[1686856142243243232,1686856182783783762] 1686936871.55s 549kb |L0.1606| " + - "L0.1608[1686856149746117917,1686856182783783762] 1686936871.55s 3mb |L0.1608| " + - "L0.1722[1686856182783783763,1686856473054054036] 1686936871.55s 4mb |-----L0.1722-----| " + - "L0.1720[1686856182783783763,1686856473054054036] 1686936871.55s 24mb |-----L0.1720-----| " + - "L0.1723[1686856473054054037,1686856473054054039] 1686936871.55s 1b |L0.1723| " + - "L0.1721[1686856473054054037,1686856473054054039] 1686936871.55s 1b |L0.1721| " + - "L0.1614[1686856473054054040,1686857053594594571] 1686936871.55s 6mb |--------------L0.1614---------------| " + - "L0.1774[1686857053594594572,1686857087331457301] 1686936871.55s 362kb |L0.1774|" + - "L1 " + - "L1.1604[1686855729962162146,1686856182783783762] 1686932677.39s 35mb|----------L1.1604-----------| " + - "L1.1605[1686856182783783763,1686856473054054036] 1686932677.39s 23mb |-----L1.1605-----| " + - "L1.1771[1686856473054054037,1686857087331457301] 1686935947.46s 100mb |---------------L1.1771----------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 235mb total:" + - "L1 " + - "L1.?[1686855729962162146,1686856308052485466] 1686936871.55s 100mb|----------------L1.?----------------| " + - "L1.?[1686856308052485467,1686856886142808786] 1686936871.55s 100mb |----------------L1.?----------------| " + - "L1.?[1686856886142808787,1686857087331457301] 1686936871.55s 35mb |---L1.?----| " + - "Committing partition 1:" + - " Soft Deleting 13 files: L1.1604, L1.1605, L0.1606, L0.1608, L0.1614, L0.1717, L0.1719, L0.1720, L0.1721, L0.1722, L0.1723, L1.1771, L0.1774" + - " Creating 3 files" + - "**** Simulation run 473, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686857661762616884, 1686858236193776466]). 9 Input Files, 257mb total:" + - "L0 " + - "L0.1775[1686857087331457302,1686857216145945927] 1686936871.55s 1mb|L0.1775| " + - "L0.1776[1686857216145945928,1686857701608860565] 1686936871.55s 5mb |----------L0.1776----------| " + - "L0.1777[1686857701608860566,1686857724225846697] 1686936871.55s 243kb |L0.1777| " + - "L0.1726[1686857724225846698,1686857924405405380] 1686936871.55s 2mb |-L0.1726--| " + - "L0.1727[1686857924405405381,1686857959237837817] 1686936871.55s 374kb |L0.1727| " + - "L0.1781[1686857959237837818,1686858566228295774] 1686936871.55s 6mb |-------------L0.1781--------------| " + - "L1 " + - "L1.1772[1686857087331457302,1686857701608860565] 1686935947.46s 100mb|--------------L1.1772--------------| " + - "L1.1773[1686857701608860566,1686857959237837817] 1686935947.46s 42mb |---L1.1773---| " + - "L1.1778[1686857959237837818,1686858566228295774] 1686935947.46s 100mb |-------------L1.1778--------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 257mb total:" + - "L1 " + - "L1.?[1686857087331457302,1686857661762616884] 1686936871.55s 100mb|--------------L1.?--------------| " + - "L1.?[1686857661762616885,1686858236193776466] 1686936871.55s 100mb |--------------L1.?--------------| " + - "L1.?[1686858236193776467,1686858566228295774] 1686936871.55s 57mb |-------L1.?-------| " + - "Committing partition 1:" + - " Soft Deleting 9 files: L0.1726, L0.1727, L1.1772, L1.1773, L0.1775, L0.1776, L0.1777, L1.1778, L0.1781" + - " Creating 3 files" + - "**** Simulation run 474, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686859138657133582, 1686859711085971389]). 19 Input Files, 286mb total:" + - "L0 " + - "L0.1782[1686858566228295775,1686858702329729707] 1686936871.55s 1mb|L0.1782| " + - "L0.1729[1686858702329729708,1686858795216216189] 1686936871.55s 998kb |L0.1729| " + - "L0.1730[1686858795216216190,1686858975397639357] 1686936871.55s 2mb |L0.1730| " + - "L0.1731[1686858975397639358,1686859027432432416] 1686936871.55s 559kb |L0.1731| " + - "L0.1783[1686859027432432417,1686859173218753730] 1686936871.55s 2mb |L0.1783| " + - "L0.1784[1686859173218753731,1686859589566760129] 1686936871.55s 4mb |------L0.1784-------| " + - "L0.1734[1686859499000000001,1686859589566760129] 1686936871.55s 300kb |L0.1734| " + - "L0.1735[1686859589566760130,1686859666027026998] 1686936871.55s 253kb |L0.1735| " + - "L0.1733[1686859589566760130,1686859666027026998] 1686936871.55s 821kb |L0.1733| " + - "L0.1626[1686859666027026999,1686859666027027010] 1686936871.55s 1b |L0.1626| " + - "L0.1628[1686859666027026999,1686859666027027010] 1686936871.55s 1b |L0.1628| " + - "L0.1736[1686859666027027011,1686860002800686531] 1686936871.55s 28mb |----L0.1736-----| " + - "L0.1739[1686860002800686532,1686860203735880900] 1686936871.55s 827kb |-L0.1739-| " + - "L0.1737[1686860002800686532,1686860203735880900] 1686936871.55s 17mb |-L0.1737-| " + - "L1 " + - "L1.1779[1686858566228295775,1686859173218753730] 1686935947.46s 100mb|------------L1.1779------------| " + - "L1.1780[1686859173218753731,1686859589566760129] 1686935947.46s 69mb |------L1.1780-------| " + - "L1.1629[1686859589566760130,1686859666027026998] 1686932677.39s 7mb |L1.1629| " + - "L1.1630[1686859666027026999,1686860002800686531] 1686932677.39s 33mb |----L1.1630-----| " + - "L1.1485[1686860002800686532,1686860203735880900] 1686932677.39s 20mb |-L1.1485-| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 286mb total:" + - "L1 " + - "L1.?[1686858566228295775,1686859138657133582] 1686936871.55s 100mb|------------L1.?-------------| " + - "L1.?[1686859138657133583,1686859711085971389] 1686936871.55s 100mb |------------L1.?-------------| " + - "L1.?[1686859711085971390,1686860203735880900] 1686936871.55s 86mb |----------L1.?-----------| " + - "Committing partition 1:" + - " Soft Deleting 19 files: L1.1485, L0.1626, L0.1628, L1.1629, L1.1630, L0.1729, L0.1730, L0.1731, L0.1733, L0.1734, L0.1735, L0.1736, L0.1737, L0.1739, L1.1779, L1.1780, L0.1782, L0.1783, L0.1784" + - " Creating 3 files" + - "**** Simulation run 475, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686860851476331520, 1686861499216782139]). 15 Input Files, 288mb total:" + - "L0 " + - "L0.1738[1686860203735880901,1686860536837837807] 1686936871.55s 28mb|---L0.1738----| " + - "L0.1740[1686860203735880901,1686860536837837807] 1686936871.55s 1mb|---L0.1740----| " + - "L0.1741[1686860536837837808,1686860817905001671] 1686936871.55s 1mb |--L0.1741--| " + - "L0.1744[1686860536837837808,1686860817905001671] 1686936871.55s 23mb |--L0.1744--| " + - "L0.1742[1686860817905001672,1686861030203733704] 1686936871.55s 874kb |L0.1742-| " + - "L0.1745[1686860817905001672,1686860866085039343] 1686936871.55s 4mb |L0.1745| " + - "L0.1746[1686860866085039344,1686861030203733704] 1686936871.55s 14mb |L0.1746| " + - "L0.1743[1686861030203733705,1686861407648648616] 1686936871.55s 2mb |----L0.1743-----| " + - "L0.1747[1686861030203733705,1686861407648648616] 1686936871.55s 31mb |----L0.1747-----| " + - "L0.1748[1686861407648648617,1686862070968521403] 1686936871.55s 3mb |-----------L0.1748-----------| " + - "L1 " + - "L1.1637[1686860203735880901,1686860536837837807] 1686932677.39s 32mb|---L1.1637----| " + - "L1.1638[1686860536837837808,1686860817905001671] 1686932677.39s 27mb |--L1.1638--| " + - "L1.1487[1686860817905001672,1686861030203733704] 1686932677.39s 21mb |L1.1487-| " + - "L1.1641[1686861030203733705,1686861407648648616] 1686932677.39s 36mb |----L1.1641-----| " + - "L1.1642[1686861407648648617,1686862070968521403] 1686932677.39s 64mb |-----------L1.1642-----------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 288mb total:" + - "L1 " + - "L1.?[1686860203735880901,1686860851476331520] 1686936871.55s 100mb|------------L1.?-------------| " + - "L1.?[1686860851476331521,1686861499216782139] 1686936871.55s 100mb |------------L1.?-------------| " + - "L1.?[1686861499216782140,1686862070968521403] 1686936871.55s 88mb |----------L1.?-----------| " + - "Committing partition 1:" + - " Soft Deleting 15 files: L1.1487, L1.1637, L1.1638, L1.1641, L1.1642, L0.1738, L0.1740, L0.1741, L0.1742, L0.1743, L0.1744, L0.1745, L0.1746, L0.1747, L0.1748" + - " Creating 3 files" + - "**** Simulation run 476, type=split(ReduceOverlap)(split_times=[1686861499216782139]). 1 Input Files, 55mb total:" + - "L0, all files 55mb " + - "L0.1640[1686861407648648617,1686862066143051675] 1686936871.55s|----------------------------------------L0.1640-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 55mb total:" + - "L0 " + - "L0.?[1686861407648648617,1686861499216782139] 1686936871.55s 8mb|---L0.?---| " + - "L0.?[1686861499216782140,1686862066143051675] 1686936871.55s 47mb |-----------------------------------L0.?------------------------------------| " + - "Committing partition 1:" + - " Soft Deleting 1 files: L0.1640" + - " Creating 2 files" + - "**** Simulation run 477, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686861358211972492, 1686861864947613463]). 8 Input Files, 282mb total:" + - "L0 " + - "L0.1835[1686861407648648617,1686861499216782139] 1686936871.55s 8mb |L0.1835| " + - "L0.1836[1686861499216782140,1686862066143051675] 1686936871.55s 47mb |-------------L0.1836-------------| " + - "L0.1750[1686862066143051676,1686862070968521403] 1686936871.55s 412kb |L0.1750| " + - "L0.1749[1686862070968521404,1686862278459459425] 1686936871.55s 854kb |--L0.1749--| " + - "L0.1751[1686862070968521404,1686862278459459425] 1686936871.55s 17mb |--L0.1751--| " + - "L1 " + - "L1.1833[1686860851476331521,1686861499216782139] 1686936871.55s 100mb|---------------L1.1833----------------| " + - "L1.1834[1686861499216782140,1686862070968521403] 1686936871.55s 88mb |-------------L1.1834--------------| " + - "L1.1645[1686862070968521404,1686862278459459425] 1686932677.39s 20mb |--L1.1645--| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 282mb total:" + - "L1 " + - "L1.?[1686860851476331521,1686861358211972492] 1686936871.55s 100mb|------------L1.?-------------| " + - "L1.?[1686861358211972493,1686861864947613463] 1686936871.55s 100mb |------------L1.?-------------| " + - "L1.?[1686861864947613464,1686862278459459425] 1686936871.55s 82mb |----------L1.?----------| " + - "Committing partition 1:" + - " Soft Deleting 8 files: L1.1645, L0.1749, L0.1750, L0.1751, L1.1833, L1.1834, L0.1835, L0.1836" + - " Creating 3 files" + - "**** Simulation run 478, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686862801147318435]). 6 Input Files, 167mb total:" + - "L0 " + - "L0.1636[1686862278459459426,1686862975108108077] 1686936871.55s 3mb|-------------------------------L0.1636--------------------------------| " + - "L0.1644[1686862278459459426,1686862975108108077] 1686936871.55s 58mb|-------------------------------L0.1644--------------------------------| " + - "L0.1752[1686862975108108078,1686863111733309101] 1686936871.55s 17mb |--L0.1752---| " + - "L0.1753[1686863111733309102,1686863149270270234] 1686936871.55s 5mb |L0.1753|" + - "L1 " + - "L1.1646[1686862278459459426,1686863111733309101] 1686932677.39s 80mb|--------------------------------------L1.1646---------------------------------------| " + - "L1.1649[1686863111733309102,1686863149270270234] 1686932677.39s 4mb |L1.1649|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 167mb total:" + - "L1 " + - "L1.?[1686862278459459426,1686862801147318435] 1686936871.55s 100mb|------------------------L1.?------------------------| " + - "L1.?[1686862801147318436,1686863149270270234] 1686936871.55s 67mb |--------------L1.?---------------| " + - "Committing partition 1:" + - " Soft Deleting 6 files: L0.1636, L0.1644, L1.1646, L1.1649, L0.1752, L0.1753" + - " Creating 2 files" + - "**** Simulation run 479, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686863696277675850, 1686864243285081465]). 8 Input Files, 275mb total:" + - "L0 " + - "L0.1648[1686863149270270235,1686863763854983772] 1686936871.55s 78mb|-------------L0.1648--------------| " + - "L0.1754[1686863763854983773,1686863903972972940] 1686936871.55s 18mb |L0.1754| " + - "L0.1755[1686863903972972941,1686864020081081043] 1686936871.55s 15mb |L0.1755| " + - "L0.1652[1686864020081081044,1686864552601859466] 1686936871.55s 68mb |-----------L0.1652-----------| " + - "L0.1756[1686864552601859467,1686864651607515459] 1686936871.55s 13mb |L0.1756|" + - "L1 " + - "L1.1650[1686863149270270235,1686863903972972940] 1686932677.39s 73mb|------------------L1.1650------------------| " + - "L1.1653[1686863903972972941,1686864020081081043] 1686931893.7s 2mb |L1.1653| " + - "L1.1654[1686864020081081044,1686864651607515459] 1686931893.7s 10mb |--------------L1.1654--------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 275mb total:" + - "L1 " + - "L1.?[1686863149270270235,1686863696277675850] 1686936871.55s 100mb|-------------L1.?-------------| " + - "L1.?[1686863696277675851,1686864243285081465] 1686936871.55s 100mb |-------------L1.?-------------| " + - "L1.?[1686864243285081466,1686864651607515459] 1686936871.55s 75mb |---------L1.?---------| " + - "Committing partition 1:" + - " Soft Deleting 8 files: L0.1648, L1.1650, L0.1652, L1.1653, L1.1654, L0.1754, L0.1755, L0.1756" + - " Creating 3 files" + - "**** Simulation run 480, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686865392302667070, 1686866132997818680]). 16 Input Files, 267mb total:" + - "L0 " + - "L0.1759[1686864651607515460,1686864832837837803] 1686936871.55s 6mb|L0.1759| " + - "L0.1757[1686864651607515460,1686864832837837803] 1686936871.55s 23mb|L0.1757| " + - "L0.1760[1686864832837837804,1686864890891891852] 1686936871.55s 2mb |L0.1760| " + - "L0.1758[1686864832837837804,1686864890891891852] 1686936871.55s 7mb |L0.1758| " + - "L0.1656[1686864890891891853,1686864890891891870] 1686936871.55s 1b |L0.1656| " + - "L0.1658[1686864890891891853,1686864890891891870] 1686936871.55s 1b |L0.1658| " + - "L0.1546[1686864890891891871,1686865715561243055] 1686936871.55s 100mb |--------------L0.1546--------------| " + - "L0.1662[1686865715561243056,1686865761702702661] 1686936871.55s 6mb |L0.1662| " + - "L0.1761[1686865761702702662,1686865761702702680] 1686936871.55s 0b |L0.1761| " + - "L0.1762[1686865761702702681,1686866540230594239] 1686936871.55s 94mb |-------------L0.1762-------------| " + - "L0.1548[1686866540230594240,1686866632513513490] 1686936871.55s 11mb |L0.1548|" + - "L1 " + - "L1.1325[1686864651607515460,1686864832837837803] 1686931893.7s 3mb|L1.1325| " + - "L1.1659[1686864832837837804,1686864890891891852] 1686931893.7s 927kb |L1.1659| " + - "L1.1660[1686864890891891853,1686865761702702661] 1686931893.7s 14mb |---------------L1.1660---------------| " + - "L1.1661[1686865761702702662,1686865761702702680] 1686931893.7s 1b |L1.1661| " + - "L1.761[1686865761702702681,1686866632513513490] 1686928854.57s 1mb |---------------L1.761----------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 267mb total:" + - "L1 " + - "L1.?[1686864651607515460,1686865392302667070] 1686936871.55s 100mb|-------------L1.?--------------| " + - "L1.?[1686865392302667071,1686866132997818680] 1686936871.55s 100mb |-------------L1.?--------------| " + - "L1.?[1686866132997818681,1686866632513513490] 1686936871.55s 67mb |--------L1.?--------| " + - "Committing partition 1:" + - " Soft Deleting 16 files: L1.761, L1.1325, L0.1546, L0.1548, L0.1656, L0.1658, L1.1659, L1.1660, L1.1661, L0.1662, L0.1757, L0.1758, L0.1759, L0.1760, L0.1761, L0.1762" + - " Creating 3 files" + - "**** Simulation run 481, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686867294213029769, 1686867955912546047]). 10 Input Files, 255mb total:" + - "L0 " + - "L0.1560[1686866632513513491,1686867299592048857] 1686936871.55s 100mb|-------------L0.1560-------------| " + - "L0.1763[1686867299592048858,1686867503324324300] 1686936871.55s 31mb |L0.1763-| " + - "L0.1764[1686867503324324301,1686867659000000000] 1686936871.55s 23mb |L0.1764| " + - "L0.1765[1686867659000000001,1686867839000000000] 1686936871.55s 27mb |L0.1765| " + - "L0.1766[1686867839000000001,1686867966670584223] 1686936871.55s 19mb |L0.1766| " + - "L0.1562[1686867966670584224,1686868319000000000] 1686936871.55s 53mb |----L0.1562-----| " + - "L1 " + - "L1.762[1686866632513513491,1686867503324324300] 1686928854.57s 1mb|-------------------L1.762-------------------| " + - "L1.763[1686867503324324301,1686867659000000000] 1686928854.57s 196kb |L1.763| " + - "L1.73[1686867719000000000,1686867839000000000] 1686928854.57s 225kb |L1.73| " + - "L1.75[1686867899000000000,1686868319000000000] 1686928854.57s 588kb |-------L1.75--------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 255mb total:" + - "L1 " + - "L1.?[1686866632513513491,1686867294213029769] 1686936871.55s 100mb|--------------L1.?---------------| " + - "L1.?[1686867294213029770,1686867955912546047] 1686936871.55s 100mb |--------------L1.?---------------| " + - "L1.?[1686867955912546048,1686868319000000000] 1686936871.55s 55mb |------L1.?-------| " + - "Committing partition 1:" + - " Soft Deleting 10 files: L1.73, L1.75, L1.762, L1.763, L0.1560, L0.1562, L0.1763, L0.1764, L0.1765, L0.1766" + - " Creating 3 files" + - "**** Simulation run 482, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686869101428723112, 1686869883857446223]). 9 Input Files, 230mb total:" + - "L0 " + - "L0.1664[1686868319000000001,1686868917918918910] 1686936871.55s 98mb|----------L0.1664----------| " + - "L0.1665[1686868917918918911,1686868931238859876] 1686936871.55s 2mb |L0.1665| " + - "L0.1767[1686868931238859877,1686869244945945920] 1686936871.55s 51mb |---L0.1767---| " + - "L0.1768[1686869244945945921,1686869516837837819] 1686936871.55s 44mb |--L0.1768--| " + - "L0.1669[1686869516837837820,1686869543477719751] 1686936871.55s 4mb |L0.1669| " + - "L1 " + - "L1.1666[1686868379000000000,1686868917918918910] 1686928854.57s 9mb |--------L1.1666---------| " + - "L1.1667[1686868917918918911,1686869244945945920] 1686928854.57s 6mb |---L1.1667----| " + - "L1.1670[1686869244945945921,1686869516837837819] 1686928854.57s 5mb |--L1.1670--| " + - "L1.1671[1686869516837837820,1686870115756756730] 1686928854.57s 10mb |----------L1.1671-----------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 230mb total:" + - "L1 " + - "L1.?[1686868319000000001,1686869101428723112] 1686936871.55s 100mb|----------------L1.?-----------------| " + - "L1.?[1686869101428723113,1686869883857446223] 1686936871.55s 100mb |----------------L1.?-----------------| " + - "L1.?[1686869883857446224,1686870115756756730] 1686936871.55s 30mb |--L1.?---| " + - "Committing partition 1:" + - " Soft Deleting 9 files: L0.1664, L0.1665, L1.1666, L1.1667, L0.1669, L1.1670, L1.1671, L0.1767, L0.1768" + - " Creating 3 files" + - "**** Simulation run 483, type=split(ReduceOverlap)(split_times=[1686869883857446223]). 1 Input Files, 93mb total:" + - "L0, all files 93mb " + - "L0.1551[1686869543477719752,1686870115756756730] 1686936871.55s|----------------------------------------L0.1551-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 93mb total:" + - "L0 " + - "L0.?[1686869543477719752,1686869883857446223] 1686936871.55s 56mb|-----------------------L0.?------------------------| " + - "L0.?[1686869883857446224,1686870115756756730] 1686936871.55s 38mb |---------------L0.?---------------| " + - "Committing partition 1:" + - " Soft Deleting 1 files: L0.1551" + - " Creating 2 files" + - "**** Simulation run 484, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686869556056907425, 1686870010685091737]). 4 Input Files, 223mb total:" + - "L0 " + - "L0.1854[1686869543477719752,1686869883857446223] 1686936871.55s 56mb |----------L0.1854-----------| " + - "L0.1855[1686869883857446224,1686870115756756730] 1686936871.55s 38mb |-----L0.1855------| " + - "L1 " + - "L1.1852[1686869101428723113,1686869883857446223] 1686936871.55s 100mb|------------------------------L1.1852------------------------------| " + - "L1.1853[1686869883857446224,1686870115756756730] 1686936871.55s 30mb |-----L1.1853------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 223mb total:" + - "L1 " + - "L1.?[1686869101428723113,1686869556056907425] 1686936871.55s 100mb|-----------------L1.?-----------------| " + - "L1.?[1686869556056907426,1686870010685091737] 1686936871.55s 100mb |-----------------L1.?-----------------| " + - "L1.?[1686870010685091738,1686870115756756730] 1686936871.55s 23mb |-L1.?--| " + - "Committing partition 1:" + - " Soft Deleting 4 files: L1.1852, L1.1853, L0.1854, L0.1855" + - " Creating 3 files" + - "**** Simulation run 485, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686870726636810267, 1686871337516863803]). 6 Input Files, 285mb total:" + - "L0 " + - "L0.1552[1686870115756756731,1686870677571828433] 1686936871.55s 100mb|----------L0.1552----------| " + - "L0.1672[1686870677571828434,1686870986567567540] 1686936871.55s 55mb |---L0.1672---| " + - "L0.1673[1686870986567567541,1686871239386900135] 1686936871.55s 45mb |--L0.1673--| " + - "L0.1554[1686871239386900136,1686871550514515284] 1686936871.55s 55mb |---L0.1554----| " + - "L1 " + - "L1.907[1686870115756756731,1686870986567567540] 1686928854.57s 15mb|------------------L1.907-------------------| " + - "L1.1674[1686870986567567541,1686871857378378349] 1686928854.57s 15mb |-----------------L1.1674------------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 285mb total:" + - "L1 " + - "L1.?[1686870115756756731,1686870726636810267] 1686936871.55s 100mb|------------L1.?-------------| " + - "L1.?[1686870726636810268,1686871337516863803] 1686936871.55s 100mb |------------L1.?-------------| " + - "L1.?[1686871337516863804,1686871857378378349] 1686936871.55s 85mb |----------L1.?----------| " + - "Committing partition 1:" + - " Soft Deleting 6 files: L1.907, L0.1552, L0.1554, L0.1672, L0.1673, L1.1674" + - " Creating 3 files" + - "**** Simulation run 486, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686871801134370324, 1686872264751876844]). 7 Input Files, 300mb total:" + - "L0 " + - "L0.1676[1686871550514515285,1686871857378378349] 1686936871.55s 55mb |-----L0.1676-----| " + - "L0.1769[1686871857378378350,1686871857378378350] 1686936871.55s 0b |L0.1769| " + - "L0.1770[1686871857378378351,1686872106056369133] 1686936871.55s 45mb |---L0.1770----| " + - "L0.1556[1686872106056369134,1686872661598222981] 1686936871.55s 100mb |-------------L0.1556-------------| " + - "L1 " + - "L1.1861[1686871337516863804,1686871857378378349] 1686936871.55s 85mb|------------L1.1861------------| " + - "L1.1675[1686871857378378350,1686871857378378350] 1686928854.57s 1b |L1.1675| " + - "L1.909[1686871857378378351,1686872728189189160] 1686928854.57s 15mb |------------------------L1.909------------------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 300mb total:" + - "L1 " + - "L1.?[1686871337516863804,1686871801134370324] 1686936871.55s 100mb|------------L1.?------------| " + - "L1.?[1686871801134370325,1686872264751876844] 1686936871.55s 100mb |------------L1.?------------| " + - "L1.?[1686872264751876845,1686872728189189160] 1686936871.55s 100mb |-----------L1.?------------| " + - "Committing partition 1:" + - " Soft Deleting 7 files: L1.909, L0.1556, L1.1675, L0.1676, L0.1769, L0.1770, L1.1861" + - " Creating 3 files" + - "**** Simulation run 487, type=split(CompactAndSplitOutput(TotalSizeLessThanMaxCompactSize))(split_times=[1686872735710689569, 1686873206669502293]). 5 Input Files, 283mb total:" + - "L0 " + - "L0.1559[1686873284631629745,1686873599000000000] 1686936871.55s 56mb |------L0.1559------| " + - "L0.1558[1686872728189189161,1686873284631629744] 1686936871.55s 100mb |--------------L0.1558--------------| " + - "L0.1557[1686872661598222982,1686872728189189160] 1686936871.55s 12mb |L0.1557| " + - "L1 " + - "L1.1864[1686872264751876845,1686872728189189160] 1686936871.55s 100mb|-----------L1.1864-----------| " + - "L1.910[1686872728189189161,1686873599000000000] 1686928854.57s 15mb |-------------------------L1.910-------------------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 283mb total:" + - "L1 " + - "L1.?[1686872264751876845,1686872735710689569] 1686936871.55s 100mb|------------L1.?-------------| " + - "L1.?[1686872735710689570,1686873206669502293] 1686936871.55s 100mb |------------L1.?-------------| " + - "L1.?[1686873206669502294,1686873599000000000] 1686936871.55s 83mb |----------L1.?----------| " + - "Committing partition 1:" + - " Soft Deleting 5 files: L1.910, L0.1557, L0.1558, L0.1559, L1.1864" + - " Creating 3 files" + - "**** Simulation run 488, type=split(ReduceOverlap)(split_times=[1686867839000000000]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1849[1686867294213029770,1686867955912546047] 1686936871.55s|----------------------------------------L1.1849-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686867294213029770,1686867839000000000] 1686936871.55s 82mb|----------------------------------L1.?----------------------------------| " + - "L1.?[1686867839000000001,1686867955912546047] 1686936871.55s 18mb |----L1.?-----| " + - "**** Simulation run 489, type=split(ReduceOverlap)(split_times=[1686863699000000000]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1843[1686863696277675851,1686864243285081465] 1686936871.55s|----------------------------------------L1.1843-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686863696277675851,1686863699000000000] 1686936871.55s 510kb|L1.?| " + - "L1.?[1686863699000000001,1686864243285081465] 1686936871.55s 100mb|-----------------------------------------L1.?------------------------------------------| " + - "**** Simulation run 490, type=split(ReduceOverlap)(split_times=[1686859499000000000]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1830[1686859138657133583,1686859711085971389] 1686936871.55s|----------------------------------------L1.1830-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686859138657133583,1686859499000000000] 1686936871.55s 63mb|-------------------------L1.?-------------------------| " + - "L1.?[1686859499000000001,1686859711085971389] 1686936871.55s 37mb |-------------L1.?--------------| " + - "**** Simulation run 491, type=split(ReduceOverlap)(split_times=[1686859019000000000]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1829[1686858566228295775,1686859138657133582] 1686936871.55s|----------------------------------------L1.1829-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686858566228295775,1686859019000000000] 1686936871.55s 79mb|--------------------------------L1.?---------------------------------| " + - "L1.?[1686859019000000001,1686859138657133582] 1686936871.55s 21mb |------L1.?------| " + - "**** Simulation run 492, type=split(ReduceOverlap)(split_times=[1686850559000000000]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1804[1686850087108108100,1686850880662583047] 1686936871.55s|----------------------------------------L1.1804----------------------------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686850087108108100,1686850559000000000] 1686936871.55s 59mb|-----------------------L1.?------------------------| " + - "L1.?[1686850559000000001,1686850880662583047] 1686936871.55s 41mb |---------------L1.?---------------| " + - "**** Simulation run 493, type=split(ReduceOverlap)(split_times=[1686849779000000000]). 1 Input Files, 95mb total:" + - "L1, all files 95mb " + - "L1.1803[1686849524419787598,1686850087108108099] 1686936871.55s|----------------------------------------L1.1803-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 95mb total:" + - "L1 " + - "L1.?[1686849524419787598,1686849779000000000] 1686936871.55s 43mb|-----------------L1.?-----------------| " + - "L1.?[1686849779000000001,1686850087108108099] 1686936871.55s 52mb |---------------------L1.?----------------------| " + - "**** Simulation run 494, type=split(ReduceOverlap)(split_times=[1686845579000000000]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1794[1686845452373250764,1686846042503258285] 1686936871.55s|----------------------------------------L1.1794-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686845452373250764,1686845579000000000] 1686936871.55s 21mb|------L1.?-------| " + - "L1.?[1686845579000000001,1686846042503258285] 1686936871.55s 79mb |--------------------------------L1.?--------------------------------| " + - "Committing partition 1:" + - " Soft Deleting 7 files: L1.1794, L1.1803, L1.1804, L1.1829, L1.1830, L1.1843, L1.1849" + - " Creating 14 files" + - "**** Simulation run 495, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686842786390926609, 1686844193781853218]). 3 Input Files, 298mb total:" + - "L1 " + - "L1.1785[1686841379000000000,1686841969006279730] 1686936871.55s 100mb|-L1.1785--| " + - "L1.1786[1686841969006279731,1686842559012559460] 1686936871.55s 100mb |-L1.1786--| " + - "L2 " + - "L2.2[1686841379000000000,1686845579000000000] 1686928811.43s 98mb|------------------------------------------L2.2------------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 298mb total:" + - "L2 " + - "L2.?[1686841379000000000,1686842786390926609] 1686936871.55s 100mb|------------L2.?------------| " + - "L2.?[1686842786390926610,1686844193781853218] 1686936871.55s 100mb |------------L2.?------------| " + - "L2.?[1686844193781853219,1686845579000000000] 1686936871.55s 98mb |-----------L2.?------------| " + - "Committing partition 1:" + - " Soft Deleting 3 files: L2.2, L1.1785, L1.1786" + - " Creating 3 files" + - "**** Simulation run 496, type=split(ReduceOverlap)(split_times=[1686844193781853218]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1791[1686843763044640889,1686844353050911219] 1686936871.55s|----------------------------------------L1.1791-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686843763044640889,1686844193781853218] 1686936871.55s 73mb|-----------------------------L1.?------------------------------| " + - "L1.?[1686844193781853219,1686844353050911219] 1686936871.55s 27mb |---------L1.?---------| " + - "**** Simulation run 497, type=split(ReduceOverlap)(split_times=[1686842786390926609]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1788[1686842571022320445,1686843161028605744] 1686936871.55s|----------------------------------------L1.1788-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686842571022320445,1686842786390926609] 1686936871.55s 37mb|-------------L1.?-------------| " + - "L1.?[1686842786390926610,1686843161028605744] 1686936871.55s 63mb |-------------------------L1.?--------------------------| " + - "Committing partition 1:" + - " Soft Deleting 2 files: L1.1788, L1.1791" + - " Creating 4 files" + - "**** Simulation run 498, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686842394885830950]). 3 Input Files, 139mb total:" + - "L1 " + - "L1.1787[1686842559012559461,1686842571022320444] 1686936871.55s 2mb |L1.1787| " + - "L1.1887[1686842571022320445,1686842786390926609] 1686936871.55s 37mb |--L1.1887--| " + - "L2 " + - "L2.1882[1686841379000000000,1686842786390926609] 1686936871.55s 100mb|----------------------------------------L2.1882-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 139mb total:" + - "L2 " + - "L2.?[1686841379000000000,1686842394885830950] 1686936871.55s 100mb|-----------------------------L2.?-----------------------------| " + - "L2.?[1686842394885830951,1686842786390926609] 1686936871.55s 39mb |---------L2.?----------| " + - "Committing partition 1:" + - " Soft Deleting 3 files: L1.1787, L2.1882, L1.1887" + - " Creating 2 files" + - "**** Simulation run 499, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686843316416264410, 1686843846441602210]). 4 Input Files, 266mb total:" + - "L1 " + - "L1.1888[1686842786390926610,1686843161028605744] 1686936871.55s 63mb|-------L1.1888-------| " + - "L1.1789[1686843161028605745,1686843751034891043] 1686936871.55s 100mb |--------------L1.1789--------------| " + - "L1.1790[1686843751034891044,1686843763044640888] 1686936871.55s 2mb |L1.1790| " + - "L2 " + - "L2.1883[1686842786390926610,1686844193781853218] 1686936871.55s 100mb|----------------------------------------L2.1883-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 266mb total:" + - "L2 " + - "L2.?[1686842786390926610,1686843316416264410] 1686936871.55s 100mb|-------------L2.?--------------| " + - "L2.?[1686843316416264411,1686843846441602210] 1686936871.55s 100mb |-------------L2.?--------------| " + - "L2.?[1686843846441602211,1686844193781853218] 1686936871.55s 66mb |--------L2.?--------| " + - "Committing partition 1:" + - " Soft Deleting 4 files: L1.1789, L1.1790, L2.1883, L1.1888" + - " Creating 3 files" + - "**** Simulation run 500, type=split(ReduceOverlap)(split_times=[1686843846441602210]). 1 Input Files, 73mb total:" + - "L1, all files 73mb " + - "L1.1885[1686843763044640889,1686844193781853218] 1686936871.55s|----------------------------------------L1.1885-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 73mb total:" + - "L1 " + - "L1.?[1686843763044640889,1686843846441602210] 1686936871.55s 14mb|-----L1.?------| " + - "L1.?[1686843846441602211,1686844193781853218] 1686936871.55s 59mb |---------------------------------L1.?---------------------------------| " + - "Committing partition 1:" + - " Soft Deleting 1 files: L1.1885" + - " Creating 2 files" + - "**** Simulation run 501, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686843684225379958, 1686844052034495505]). 4 Input Files, 239mb total:" + - "L1 " + - "L1.1894[1686843763044640889,1686843846441602210] 1686936871.55s 14mb |L1.1894| " + - "L1.1895[1686843846441602211,1686844193781853218] 1686936871.55s 59mb |-------------L1.1895-------------| " + - "L2 " + - "L2.1892[1686843316416264411,1686843846441602210] 1686936871.55s 100mb|----------------------L2.1892-----------------------| " + - "L2.1893[1686843846441602211,1686844193781853218] 1686936871.55s 66mb |-------------L2.1893-------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 239mb total:" + - "L2 " + - "L2.?[1686843316416264411,1686843684225379958] 1686936871.55s 100mb|---------------L2.?----------------| " + - "L2.?[1686843684225379959,1686844052034495505] 1686936871.55s 100mb |---------------L2.?----------------| " + - "L2.?[1686844052034495506,1686844193781853218] 1686936871.55s 39mb |----L2.?----| " + - "Committing partition 1:" + - " Soft Deleting 4 files: L2.1892, L2.1893, L1.1894, L1.1895" + - " Creating 3 files" + - "**** Simulation run 502, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686844848044941008, 1686845502308028797]). 3 Input Files, 212mb total:" + - "L1 " + - "L1.1886[1686844193781853219,1686844353050911219] 1686936871.55s 27mb|L1.1886-| " + - "L1.1792[1686844353050911220,1686844862243243240] 1686936871.55s 86mb |------------L1.1792------------| " + - "L2 " + - "L2.1884[1686844193781853219,1686845579000000000] 1686936871.55s 98mb|----------------------------------------L2.1884-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 212mb total:" + - "L2 " + - "L2.?[1686844193781853219,1686844848044941008] 1686936871.55s 100mb|------------------L2.?------------------| " + - "L2.?[1686844848044941009,1686845502308028797] 1686936871.55s 100mb |------------------L2.?------------------| " + - "L2.?[1686845502308028798,1686845579000000000] 1686936871.55s 12mb |L2.?|" + - "Committing partition 1:" + - " Soft Deleting 3 files: L1.1792, L2.1884, L1.1886" + - " Creating 3 files" + - "**** Simulation run 503, type=split(ReduceOverlap)(split_times=[1686845502308028797]). 1 Input Files, 21mb total:" + - "L1, all files 21mb " + - "L1.1880[1686845452373250764,1686845579000000000] 1686936871.55s|----------------------------------------L1.1880-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 21mb total:" + - "L1 " + - "L1.?[1686845452373250764,1686845502308028797] 1686936871.55s 8mb|--------------L1.?---------------| " + - "L1.?[1686845502308028798,1686845579000000000] 1686936871.55s 13mb |------------------------L1.?------------------------| " + - "Committing partition 1:" + - " Soft Deleting 1 files: L1.1880" + - " Creating 2 files" + - "**** Simulation run 504, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686845161518308591, 1686845474991676173]). 5 Input Files, 233mb total:" + - "L1 " + - "L1.1793[1686844862243243241,1686845452373250763] 1686936871.55s 100mb |-------------------------------L1.1793--------------------------------| " + - "L1.1902[1686845452373250764,1686845502308028797] 1686936871.55s 8mb |L1.1902| " + - "L1.1903[1686845502308028798,1686845579000000000] 1686936871.55s 13mb |L1.1903| " + - "L2 " + - "L2.1900[1686844848044941009,1686845502308028797] 1686936871.55s 100mb|-----------------------------------L2.1900------------------------------------| " + - "L2.1901[1686845502308028798,1686845579000000000] 1686936871.55s 12mb |L2.1901| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 233mb total:" + - "L2 " + - "L2.?[1686844848044941009,1686845161518308591] 1686936871.55s 100mb|----------------L2.?----------------| " + - "L2.?[1686845161518308592,1686845474991676173] 1686936871.55s 100mb |----------------L2.?----------------| " + - "L2.?[1686845474991676174,1686845579000000000] 1686936871.55s 33mb |---L2.?---| " + - "Committing partition 1:" + - " Soft Deleting 5 files: L1.1793, L2.1900, L2.1901, L1.1902, L1.1903" + - " Creating 3 files" + - "**** Simulation run 505, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686847090988653050, 1686848602977306099]). 4 Input Files, 278mb total:" + - "L1 " + - "L1.1881[1686845579000000001,1686846042503258285] 1686936871.55s 79mb|L1.1881| " + - "L1.1795[1686846042503258286,1686846054770701976] 1686936871.55s 2mb |L1.1795| " + - "L1.1796[1686846054770701977,1686846644900712284] 1686936871.55s 100mb |-L1.1796--| " + - "L2 " + - "L2.25[1686845639000000000,1686849779000000000] 1686928811.43s 97mb |----------------------------------------L2.25-----------------------------------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 278mb total:" + - "L2 " + - "L2.?[1686845579000000001,1686847090988653050] 1686936871.55s 100mb|-------------L2.?-------------| " + - "L2.?[1686847090988653051,1686848602977306099] 1686936871.55s 100mb |-------------L2.?-------------| " + - "L2.?[1686848602977306100,1686849779000000000] 1686936871.55s 78mb |---------L2.?----------| " + - "Committing partition 1:" + - " Soft Deleting 4 files: L2.25, L1.1795, L1.1796, L1.1881" + - " Creating 3 files" + - "**** Simulation run 506, type=split(ReduceOverlap)(split_times=[1686848602977306099]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1801[1686848345486486481,1686848934953137039] 1686936871.55s|----------------------------------------L1.1801-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686848345486486481,1686848602977306099] 1686936871.55s 44mb|----------------L1.?-----------------| " + - "L1.?[1686848602977306100,1686848934953137039] 1686936871.55s 56mb |----------------------L1.?----------------------| " + - "**** Simulation run 507, type=split(ReduceOverlap)(split_times=[1686847090988653050]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1797[1686846644900712285,1686847235030722591] 1686936871.55s|----------------------------------------L1.1797-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686846644900712285,1686847090988653050] 1686936871.55s 76mb|-------------------------------L1.?-------------------------------| " + - "L1.?[1686847090988653051,1686847235030722591] 1686936871.55s 24mb |-------L1.?--------| " + - "Committing partition 1:" + - " Soft Deleting 2 files: L1.1797, L1.1801" + - " Creating 4 files" + - "**** Simulation run 508, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686846586992441776, 1686847594984883551]). 4 Input Files, 300mb total:" + - "L1 " + - "L1.1912[1686846644900712285,1686847090988653050] 1686936871.55s 76mb |--L1.1912--| " + - "L1.1913[1686847090988653051,1686847235030722591] 1686936871.55s 24mb |L1.1913| " + - "L2 " + - "L2.1907[1686845579000000001,1686847090988653050] 1686936871.55s 100mb|------------------L2.1907------------------| " + - "L2.1908[1686847090988653051,1686848602977306099] 1686936871.55s 100mb |-----------------L2.1908------------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 300mb total:" + - "L2 " + - "L2.?[1686845579000000001,1686846586992441776] 1686936871.55s 100mb|------------L2.?------------| " + - "L2.?[1686846586992441777,1686847594984883551] 1686936871.55s 100mb |------------L2.?------------| " + - "L2.?[1686847594984883552,1686848602977306099] 1686936871.55s 100mb |-----------L2.?------------| " + - "Committing partition 1:" + - " Soft Deleting 4 files: L2.1907, L2.1908, L1.1912, L1.1913" + - " Creating 3 files" + - "**** Simulation run 509, type=split(ReduceOverlap)(split_times=[1686847594984883551]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1799[1686847247298160712,1686847837428156951] 1686936871.55s|----------------------------------------L1.1799-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686847247298160712,1686847594984883551] 1686936871.55s 59mb|-----------------------L1.?------------------------| " + - "L1.?[1686847594984883552,1686847837428156951] 1686936871.55s 41mb |---------------L1.?---------------| " + - "Committing partition 1:" + - " Soft Deleting 1 files: L1.1799" + - " Creating 2 files" + - "**** Simulation run 510, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686847213091270336]). 3 Input Files, 161mb total:" + - "L1 " + - "L1.1798[1686847235030722592,1686847247298160711] 1686936871.55s 2mb |L1.1798| " + - "L1.1917[1686847247298160712,1686847594984883551] 1686936871.55s 59mb |-----------L1.1917-----------| " + - "L2 " + - "L2.1915[1686846586992441777,1686847594984883551] 1686936871.55s 100mb|----------------------------------------L2.1915-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 161mb total:" + - "L2 " + - "L2.?[1686846586992441777,1686847213091270336] 1686936871.55s 100mb|------------------------L2.?-------------------------| " + - "L2.?[1686847213091270337,1686847594984883551] 1686936871.55s 61mb |--------------L2.?--------------| " + - "Committing partition 1:" + - " Soft Deleting 3 files: L1.1798, L2.1915, L1.1917" + - " Creating 2 files" + - "**** Simulation run 511, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686847967133302591, 1686848339281721630]). 4 Input Files, 271mb total:" + - "L1 " + - "L1.1918[1686847594984883552,1686847837428156951] 1686936871.55s 41mb|------L1.1918------| " + - "L1.1800[1686847837428156952,1686848345486486480] 1686936871.55s 86mb |------------------L1.1800------------------| " + - "L1.1910[1686848345486486481,1686848602977306099] 1686936871.55s 44mb |------L1.1910-------| " + - "L2 " + - "L2.1916[1686847594984883552,1686848602977306099] 1686936871.55s 100mb|----------------------------------------L2.1916-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 271mb total:" + - "L2 " + - "L2.?[1686847594984883552,1686847967133302591] 1686936871.55s 100mb|-------------L2.?--------------| " + - "L2.?[1686847967133302592,1686848339281721630] 1686936871.55s 100mb |-------------L2.?--------------| " + - "L2.?[1686848339281721631,1686848602977306099] 1686936871.55s 71mb |--------L2.?---------| " + - "Committing partition 1:" + - " Soft Deleting 4 files: L1.1800, L1.1910, L2.1916, L1.1918" + - " Creating 3 files" + - "**** Simulation run 512, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686849027096194358, 1686849451215082616]). 4 Input Files, 277mb total:" + - "L1 " + - "L1.1911[1686848602977306100,1686848934953137039] 1686936871.55s 56mb|--------L1.1911--------| " + - "L1.1802[1686848934953137040,1686849524419787597] 1686936871.55s 100mb |------------------L1.1802------------------| " + - "L1.1878[1686849524419787598,1686849779000000000] 1686936871.55s 43mb |-----L1.1878-----| " + - "L2 " + - "L2.1909[1686848602977306100,1686849779000000000] 1686936871.55s 78mb|----------------------------------------L2.1909-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 277mb total:" + - "L2 " + - "L2.?[1686848602977306100,1686849027096194358] 1686936871.55s 100mb|-------------L2.?-------------| " + - "L2.?[1686849027096194359,1686849451215082616] 1686936871.55s 100mb |-------------L2.?-------------| " + - "L2.?[1686849451215082617,1686849779000000000] 1686936871.55s 77mb |---------L2.?----------| " + - "Committing partition 1:" + - " Soft Deleting 4 files: L1.1802, L1.1878, L2.1909, L1.1911" + - " Creating 3 files" + - "**** Simulation run 513, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686851639207134472, 1686853499414268943]). 5 Input Files, 271mb total:" + - "L1 " + - "L1.1879[1686849779000000001,1686850087108108099] 1686936871.55s 52mb|L1.1879| " + - "L1.1876[1686850087108108100,1686850559000000000] 1686936871.55s 59mb |L1.1876| " + - "L1.1877[1686850559000000001,1686850880662583047] 1686936871.55s 41mb |L1.1877| " + - "L2 " + - "L2.27[1686849839000000000,1686850559000000000] 1686928811.43s 20mb |--L2.27---| " + - "L2.30[1686850619000000000,1686854819000000000] 1686928811.43s 98mb |----------------------------------L2.30----------------------------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 271mb total:" + - "L2 " + - "L2.?[1686849779000000001,1686851639207134472] 1686936871.55s 100mb|-------------L2.?--------------| " + - "L2.?[1686851639207134473,1686853499414268943] 1686936871.55s 100mb |-------------L2.?--------------| " + - "L2.?[1686853499414268944,1686854819000000000] 1686936871.55s 71mb |--------L2.?---------| " + - "Committing partition 1:" + - " Soft Deleting 5 files: L2.27, L2.30, L1.1876, L1.1877, L1.1879" + - " Creating 3 files" + - "**** Simulation run 514, type=split(ReduceOverlap)(split_times=[1686853499414268943]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1818[1686853405911193905,1686853891419105108] 1686936871.55s|----------------------------------------L1.1818-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686853405911193905,1686853499414268943] 1686936871.55s 19mb|-----L1.?------| " + - "L1.?[1686853499414268944,1686853891419105108] 1686936871.55s 81mb |---------------------------------L1.?---------------------------------| " + - "**** Simulation run 515, type=split(ReduceOverlap)(split_times=[1686851639207134472]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1809[1686850880662583048,1686851661119027532] 1686936871.55s|----------------------------------------L1.1809-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686850880662583048,1686851639207134472] 1686936871.55s 97mb|----------------------------------------L1.?-----------------------------------------| " + - "L1.?[1686851639207134473,1686851661119027532] 1686936871.55s 3mb |L1.?|" + - "Committing partition 1:" + - " Soft Deleting 2 files: L1.1809, L1.1818" + - " Creating 4 files" + - "**** Simulation run 516, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686851019138093591, 1686852259276187181]). 4 Input Files, 300mb total:" + - "L1 " + - "L1.1932[1686850880662583048,1686851639207134472] 1686936871.55s 97mb |----L1.1932-----| " + - "L1.1933[1686851639207134473,1686851661119027532] 1686936871.55s 3mb |L1.1933| " + - "L2 " + - "L2.1927[1686849779000000001,1686851639207134472] 1686936871.55s 100mb|------------------L2.1927------------------| " + - "L2.1928[1686851639207134473,1686853499414268943] 1686936871.55s 100mb |-----------------L2.1928------------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 300mb total:" + - "L2 " + - "L2.?[1686849779000000001,1686851019138093591] 1686936871.55s 100mb|------------L2.?------------| " + - "L2.?[1686851019138093592,1686852259276187181] 1686936871.55s 100mb |------------L2.?------------| " + - "L2.?[1686852259276187182,1686853499414268943] 1686936871.55s 100mb |-----------L2.?------------| " + - "Committing partition 1:" + - " Soft Deleting 4 files: L2.1927, L2.1928, L1.1932, L1.1933" + - " Creating 3 files" + - "**** Simulation run 517, type=split(ReduceOverlap)(split_times=[1686852259276187181]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1814[1686851661119027533,1686852290761155116] 1686936871.55s|----------------------------------------L1.1814-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686851661119027533,1686852259276187181] 1686936871.55s 95mb|---------------------------------------L1.?----------------------------------------| " + - "L1.?[1686852259276187182,1686852290761155116] 1686936871.55s 5mb |L1.?|" + - "Committing partition 1:" + - " Soft Deleting 1 files: L1.1814" + - " Creating 2 files" + - "**** Simulation run 518, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686851845896821338, 1686852672655549084]). 4 Input Files, 300mb total:" + - "L1 " + - "L1.1937[1686851661119027533,1686852259276187181] 1686936871.55s 95mb |------L1.1937------| " + - "L1.1938[1686852259276187182,1686852290761155116] 1686936871.55s 5mb |L1.1938| " + - "L2 " + - "L2.1935[1686851019138093592,1686852259276187181] 1686936871.55s 100mb|------------------L2.1935------------------| " + - "L2.1936[1686852259276187182,1686853499414268943] 1686936871.55s 100mb |-----------------L2.1936------------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 300mb total:" + - "L2 " + - "L2.?[1686851019138093592,1686851845896821338] 1686936871.55s 100mb|------------L2.?------------| " + - "L2.?[1686851845896821339,1686852672655549084] 1686936871.55s 100mb |------------L2.?------------| " + - "L2.?[1686852672655549085,1686853499414268943] 1686936871.55s 100mb |-----------L2.?------------| " + - "Committing partition 1:" + - " Soft Deleting 4 files: L2.1935, L2.1936, L1.1937, L1.1938" + - " Creating 3 files" + - "**** Simulation run 519, type=split(ReduceOverlap)(split_times=[1686852672655549084]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1815[1686852290761155117,1686852920403282699] 1686936871.55s|----------------------------------------L1.1815-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686852290761155117,1686852672655549084] 1686936871.55s 61mb|------------------------L1.?------------------------| " + - "L1.?[1686852672655549085,1686852920403282699] 1686936871.55s 39mb |--------------L1.?---------------| " + - "Committing partition 1:" + - " Soft Deleting 1 files: L1.1815" + - " Creating 2 files" + - "**** Simulation run 520, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686852397069307378, 1686852948241793417]). 4 Input Files, 300mb total:" + - "L1 " + - "L1.1942[1686852290761155117,1686852672655549084] 1686936871.55s 61mb |-----L1.1942------| " + - "L1.1943[1686852672655549085,1686852920403282699] 1686936871.55s 39mb |--L1.1943--| " + - "L2 " + - "L2.1940[1686851845896821339,1686852672655549084] 1686936871.55s 100mb|------------------L2.1940------------------| " + - "L2.1941[1686852672655549085,1686853499414268943] 1686936871.55s 100mb |-----------------L2.1941------------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 300mb total:" + - "L2 " + - "L2.?[1686851845896821339,1686852397069307378] 1686936871.55s 100mb|------------L2.?------------| " + - "L2.?[1686852397069307379,1686852948241793417] 1686936871.55s 100mb |------------L2.?------------| " + - "L2.?[1686852948241793418,1686853499414268943] 1686936871.55s 100mb |-----------L2.?------------| " + - "Committing partition 1:" + - " Soft Deleting 4 files: L2.1940, L2.1941, L1.1942, L1.1943" + - " Creating 3 files" + - "**** Simulation run 521, type=split(ReduceOverlap)(split_times=[1686852948241793417]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1817[1686852920403282700,1686853405911193904] 1686936871.55s|----------------------------------------L1.1817-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686852920403282700,1686852948241793417] 1686936871.55s 6mb|L1.?| " + - "L1.?[1686852948241793418,1686853405911193904] 1686936871.55s 94mb |---------------------------------------L1.?---------------------------------------| " + - "Committing partition 1:" + - " Soft Deleting 1 files: L1.1817" + - " Creating 2 files" + - "**** Simulation run 522, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686852764517630237, 1686853131965953095]). 4 Input Files, 300mb total:" + - "L1 " + - "L1.1947[1686852920403282700,1686852948241793417] 1686936871.55s 6mb |L1.1947| " + - "L1.1948[1686852948241793418,1686853405911193904] 1686936871.55s 94mb |--------------L1.1948--------------| " + - "L2 " + - "L2.1945[1686852397069307379,1686852948241793417] 1686936871.55s 100mb|------------------L2.1945------------------| " + - "L2.1946[1686852948241793418,1686853499414268943] 1686936871.55s 100mb |-----------------L2.1946------------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 300mb total:" + - "L2 " + - "L2.?[1686852397069307379,1686852764517630237] 1686936871.55s 100mb|------------L2.?------------| " + - "L2.?[1686852764517630238,1686853131965953095] 1686936871.55s 100mb |------------L2.?------------| " + - "L2.?[1686853131965953096,1686853499414268943] 1686936871.55s 100mb |-----------L2.?------------| " + - "Committing partition 1:" + - " Soft Deleting 4 files: L2.1945, L2.1946, L1.1947, L1.1948" + - " Creating 3 files" + - "**** Simulation run 523, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686853754631187460, 1686854377296421824]). 4 Input Files, 271mb total:" + - "L1 " + - "L1.1930[1686853405911193905,1686853499414268943] 1686936871.55s 19mb |L1.1930| " + - "L1.1931[1686853499414268944,1686853891419105108] 1686936871.55s 81mb |-----L1.1931------| " + - "L2 " + - "L2.1951[1686853131965953096,1686853499414268943] 1686936871.55s 100mb|-----L2.1951-----| " + - "L2.1929[1686853499414268944,1686854819000000000] 1686936871.55s 71mb |------------------------------L2.1929-------------------------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 271mb total:" + - "L2 " + - "L2.?[1686853131965953096,1686853754631187460] 1686936871.55s 100mb|-------------L2.?--------------| " + - "L2.?[1686853754631187461,1686854377296421824] 1686936871.55s 100mb |-------------L2.?--------------| " + - "L2.?[1686854377296421825,1686854819000000000] 1686936871.55s 71mb |--------L2.?---------| " + - "Committing partition 1:" + - " Soft Deleting 4 files: L2.1929, L1.1930, L1.1931, L2.1951" + - " Creating 3 files" + - "**** Simulation run 524, type=split(ReduceOverlap)(split_times=[1686854377296421824, 1686854819000000000]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1820[1686854243778378366,1686854840368603300] 1686936871.55s|----------------------------------------L1.1820-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686854243778378366,1686854377296421824] 1686936871.55s 22mb|-------L1.?-------| " + - "L1.?[1686854377296421825,1686854819000000000] 1686936871.55s 74mb |------------------------------L1.?------------------------------| " + - "L1.?[1686854819000000001,1686854840368603300] 1686936871.55s 4mb |L1.?|" + - "Committing partition 1:" + - " Soft Deleting 1 files: L1.1820" + - " Creating 3 files" + - "**** Simulation run 525, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686854074019438293]). 3 Input Files, 195mb total:" + - "L1 " + - "L1.1819[1686853891419105109,1686854243778378365] 1686936871.55s 73mb |--------------------L1.1819---------------------| " + - "L1.1955[1686854243778378366,1686854377296421824] 1686936871.55s 22mb |-----L1.1955-----| " + - "L2 " + - "L2.1953[1686853754631187461,1686854377296421824] 1686936871.55s 100mb|----------------------------------------L2.1953-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 195mb total:" + - "L2 " + - "L2.?[1686853754631187461,1686854074019438293] 1686936871.55s 100mb|--------------------L2.?--------------------| " + - "L2.?[1686854074019438294,1686854377296421824] 1686936871.55s 95mb |------------------L2.?-------------------| " + - "Committing partition 1:" + - " Soft Deleting 3 files: L1.1819, L2.1953, L1.1955" + - " Creating 2 files" + - "**** Simulation run 526, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686854689009102312]). 3 Input Files, 149mb total:" + - "L1 " + - "L1.1956[1686854377296421825,1686854819000000000] 1686936871.55s 74mb|--------------------------------------L1.1956--------------------------------------| " + - "L1.1957[1686854819000000001,1686854840368603300] 1686936871.55s 4mb |L1.1957|" + - "L2 " + - "L2.1954[1686854377296421825,1686854819000000000] 1686936871.55s 71mb|--------------------------------------L2.1954--------------------------------------| " + - "**** 2 Output Files (parquet_file_id not yet assigned), 149mb total:" + - "L2 " + - "L2.?[1686854377296421825,1686854689009102312] 1686936871.55s 100mb|---------------------------L2.?---------------------------| " + - "L2.?[1686854689009102313,1686854840368603300] 1686936871.55s 49mb |-----------L2.?------------| " + - "Committing partition 1:" + - " Soft Deleting 3 files: L2.1954, L1.1956, L1.1957" + - " Creating 2 files" + - "**** Simulation run 527, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686856536982788349, 1686858233596973397]). 3 Input Files, 246mb total:" + - "L1 " + - "L1.1821[1686854840368603301,1686855436958828234] 1686936871.55s 100mb|-L1.1821--| " + - "L1.1822[1686855436958828235,1686855729962162145] 1686936871.55s 49mb |L1.1822| " + - "L2 " + - "L2.46[1686854879000000000,1686859019000000000] 1686928811.43s 97mb|-----------------------------------------L2.46-----------------------------------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 246mb total:" + - "L2 " + - "L2.?[1686854840368603301,1686856536982788349] 1686936871.55s 100mb|---------------L2.?---------------| " + - "L2.?[1686856536982788350,1686858233596973397] 1686936871.55s 100mb |---------------L2.?---------------| " + - "L2.?[1686858233596973398,1686859019000000000] 1686936871.55s 46mb |-----L2.?-----| " + - "Committing partition 1:" + - " Soft Deleting 3 files: L2.46, L1.1821, L1.1822" + - " Creating 3 files" + - "**** Simulation run 528, type=split(ReduceOverlap)(split_times=[1686858233596973397]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1827[1686857661762616885,1686858236193776466] 1686936871.55s|----------------------------------------L1.1827-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686857661762616885,1686858233596973397] 1686936871.55s 100mb|-----------------------------------------L1.?------------------------------------------| " + - "L1.?[1686858233596973398,1686858236193776466] 1686936871.55s 463kb |L1.?|" + - "**** Simulation run 529, type=split(ReduceOverlap)(split_times=[1686856536982788349]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1824[1686856308052485467,1686856886142808786] 1686936871.55s|----------------------------------------L1.1824-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686856308052485467,1686856536982788349] 1686936871.55s 40mb|--------------L1.?---------------| " + - "L1.?[1686856536982788350,1686856886142808786] 1686936871.55s 60mb |------------------------L1.?------------------------| " + - "Committing partition 1:" + - " Soft Deleting 2 files: L1.1824, L1.1827" + - " Creating 4 files" + - "**** Simulation run 530, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686855548468013502, 1686856256567423703]). 3 Input Files, 240mb total:" + - "L1 " + - "L1.1823[1686855729962162146,1686856308052485466] 1686936871.55s 100mb |----------L1.1823-----------| " + - "L1.1967[1686856308052485467,1686856536982788349] 1686936871.55s 40mb |-L1.1967--| " + - "L2 " + - "L2.1962[1686854840368603301,1686856536982788349] 1686936871.55s 100mb|----------------------------------------L2.1962-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 240mb total:" + - "L2 " + - "L2.?[1686854840368603301,1686855548468013502] 1686936871.55s 100mb|---------------L2.?----------------| " + - "L2.?[1686855548468013503,1686856256567423703] 1686936871.55s 100mb |---------------L2.?----------------| " + - "L2.?[1686856256567423704,1686856536982788349] 1686936871.55s 40mb |----L2.?----| " + - "Committing partition 1:" + - " Soft Deleting 3 files: L1.1823, L2.1962, L1.1967" + - " Creating 3 files" + - "**** Simulation run 531, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686857111714340888, 1686857686445893426]). 4 Input Files, 295mb total:" + - "L1 " + - "L1.1968[1686856536982788350,1686856886142808786] 1686936871.55s 60mb|----L1.1968-----| " + - "L1.1825[1686856886142808787,1686857087331457301] 1686936871.55s 35mb |L1.1825-| " + - "L1.1826[1686857087331457302,1686857661762616884] 1686936871.55s 100mb |----------L1.1826-----------| " + - "L2 " + - "L2.1963[1686856536982788350,1686858233596973397] 1686936871.55s 100mb|----------------------------------------L2.1963-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 295mb total:" + - "L2 " + - "L2.?[1686856536982788350,1686857111714340888] 1686936871.55s 100mb|------------L2.?------------| " + - "L2.?[1686857111714340889,1686857686445893426] 1686936871.55s 100mb |------------L2.?------------| " + - "L2.?[1686857686445893427,1686858233596973397] 1686936871.55s 95mb |-----------L2.?------------| " + - "Committing partition 1:" + - " Soft Deleting 4 files: L1.1825, L1.1826, L2.1963, L1.1968" + - " Creating 3 files" + - "**** Simulation run 532, type=split(ReduceOverlap)(split_times=[1686857686445893426]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1965[1686857661762616885,1686858233596973397] 1686936871.55s|----------------------------------------L1.1965-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686857661762616885,1686857686445893426] 1686936871.55s 4mb|L1.?| " + - "L1.?[1686857686445893427,1686858233596973397] 1686936871.55s 95mb |----------------------------------------L1.?----------------------------------------| " + - "Committing partition 1:" + - " Soft Deleting 1 files: L1.1965" + - " Creating 2 files" + - "**** Simulation run 533, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686857492337275263, 1686857872960209637]). 4 Input Files, 295mb total:" + - "L1 " + - "L1.1975[1686857661762616885,1686857686445893426] 1686936871.55s 4mb |L1.1975| " + - "L1.1976[1686857686445893427,1686858233596973397] 1686936871.55s 95mb |-----------------L1.1976-----------------| " + - "L2 " + - "L2.1973[1686857111714340889,1686857686445893426] 1686936871.55s 100mb|------------------L2.1973-------------------| " + - "L2.1974[1686857686445893427,1686858233596973397] 1686936871.55s 95mb |-----------------L2.1974-----------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 295mb total:" + - "L2 " + - "L2.?[1686857111714340889,1686857492337275263] 1686936871.55s 100mb|------------L2.?------------| " + - "L2.?[1686857492337275264,1686857872960209637] 1686936871.55s 100mb |------------L2.?------------| " + - "L2.?[1686857872960209638,1686858233596973397] 1686936871.55s 95mb |-----------L2.?-----------| " + - "Committing partition 1:" + - " Soft Deleting 4 files: L2.1973, L2.1974, L1.1975, L1.1976" + - " Creating 3 files" + - "**** Simulation run 534, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686858684102523465, 1686859134608073532]). 7 Input Files, 281mb total:" + - "L1 " + - "L1.1966[1686858233596973398,1686858236193776466] 1686936871.55s 463kb|L1.1966| " + - "L1.1828[1686858236193776467,1686858566228295774] 1686936871.55s 57mb|-------L1.1828-------| " + - "L1.1874[1686858566228295775,1686859019000000000] 1686936871.55s 79mb |-----------L1.1874------------| " + - "L1.1875[1686859019000000001,1686859138657133582] 1686936871.55s 21mb |L1.1875| " + - "L1.1872[1686859138657133583,1686859499000000000] 1686936871.55s 63mb |--------L1.1872--------| " + - "L2 " + - "L2.1964[1686858233596973398,1686859019000000000] 1686936871.55s 46mb|-----------------------L2.1964-----------------------| " + - "L2.54[1686859079000000000,1686859499000000000] 1686928811.43s 14mb |-----------L2.54-----------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 281mb total:" + - "L2 " + - "L2.?[1686858233596973398,1686858684102523465] 1686936871.55s 100mb|-------------L2.?-------------| " + - "L2.?[1686858684102523466,1686859134608073532] 1686936871.55s 100mb |-------------L2.?-------------| " + - "L2.?[1686859134608073533,1686859499000000000] 1686936871.55s 81mb |---------L2.?----------| " + - "Committing partition 1:" + - " Soft Deleting 7 files: L2.54, L1.1828, L1.1872, L1.1874, L1.1875, L2.1964, L1.1966" + - " Creating 3 files" + - "**** Simulation run 535, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686861405608233334, 1686863312216466667]). 3 Input Files, 220mb total:" + - "L1 " + - "L1.1873[1686859499000000001,1686859711085971389] 1686936871.55s 37mb|L1.1873| " + - "L1.1831[1686859711085971390,1686860203735880900] 1686936871.55s 86mb |L1.1831-| " + - "L2 " + - "L2.56[1686859559000000000,1686863699000000000] 1686928811.43s 97mb |----------------------------------------L2.56-----------------------------------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 220mb total:" + - "L2 " + - "L2.?[1686859499000000001,1686861405608233334] 1686936871.55s 100mb|-----------------L2.?-----------------| " + - "L2.?[1686861405608233335,1686863312216466667] 1686936871.55s 100mb |-----------------L2.?-----------------| " + - "L2.?[1686863312216466668,1686863699000000000] 1686936871.55s 20mb |-L2.?-| " + - "Committing partition 1:" + - " Soft Deleting 3 files: L2.56, L1.1831, L1.1873" + - " Creating 3 files" + - "**** Simulation run 536, type=split(ReduceOverlap)(split_times=[1686863312216466667]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1842[1686863149270270235,1686863696277675850] 1686936871.55s|----------------------------------------L1.1842-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686863149270270235,1686863312216466667] 1686936871.55s 30mb|----------L1.?----------| " + - "L1.?[1686863312216466668,1686863696277675850] 1686936871.55s 70mb |----------------------------L1.?-----------------------------| " + - "**** Simulation run 537, type=split(ReduceOverlap)(split_times=[1686861405608233334]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1838[1686861358211972493,1686861864947613463] 1686936871.55s|----------------------------------------L1.1838-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686861358211972493,1686861405608233334] 1686936871.55s 9mb|-L1.?-| " + - "L1.?[1686861405608233335,1686861864947613463] 1686936871.55s 91mb |-------------------------------------L1.?--------------------------------------| " + - "Committing partition 1:" + - " Soft Deleting 2 files: L1.1838, L1.1842" + - " Creating 4 files" + - "**** Simulation run 538, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686860134536077779, 1686860770072155557]). 3 Input Files, 300mb total:" + - "L1, all files 100mb " + - "L1.1832[1686860203735880901,1686860851476331520] 1686936871.55s |----------L1.1832-----------| " + - "L1.1837[1686860851476331521,1686861358211972492] 1686936871.55s |-------L1.1837-------| " + - "L2, all files 100mb " + - "L2.1983[1686859499000000001,1686861405608233334] 1686936871.55s|----------------------------------------L2.1983-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 300mb total:" + - "L2 " + - "L2.?[1686859499000000001,1686860134536077779] 1686936871.55s 100mb|------------L2.?------------| " + - "L2.?[1686860134536077780,1686860770072155557] 1686936871.55s 100mb |-----------L2.?------------| " + - "L2.?[1686860770072155558,1686861405608233334] 1686936871.55s 100mb |-----------L2.?------------| " + - "Committing partition 1:" + - " Soft Deleting 3 files: L1.1832, L1.1837, L2.1983" + - " Creating 3 files" + - "**** Simulation run 539, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686861617453595289, 1686862464835035020]). 4 Input Files, 300mb total:" + - "L1 " + - "L1.1988[1686861358211972493,1686861405608233334] 1686936871.55s 9mb |L1.1988| " + - "L1.1989[1686861405608233335,1686861864947613463] 1686936871.55s 91mb |---L1.1989----| " + - "L2 " + - "L2.1992[1686860770072155558,1686861405608233334] 1686936871.55s 100mb|------L2.1992-------| " + - "L2.1984[1686861405608233335,1686863312216466667] 1686936871.55s 100mb |-----------------------------L2.1984-----------------------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 300mb total:" + - "L2 " + - "L2.?[1686860770072155558,1686861617453595289] 1686936871.55s 100mb|------------L2.?------------| " + - "L2.?[1686861617453595290,1686862464835035020] 1686936871.55s 100mb |------------L2.?------------| " + - "L2.?[1686862464835035021,1686863312216466667] 1686936871.55s 100mb |-----------L2.?------------| " + - "Committing partition 1:" + - " Soft Deleting 4 files: L2.1984, L1.1988, L1.1989, L2.1992" + - " Creating 3 files" + - "**** Simulation run 540, type=split(ReduceOverlap)(split_times=[1686862464835035020]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1840[1686862278459459426,1686862801147318435] 1686936871.55s|----------------------------------------L1.1840-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686862278459459426,1686862464835035020] 1686936871.55s 36mb|-------------L1.?-------------| " + - "L1.?[1686862464835035021,1686862801147318435] 1686936871.55s 64mb |-------------------------L1.?--------------------------| " + - "Committing partition 1:" + - " Soft Deleting 1 files: L1.1840" + - " Creating 2 files" + - "**** Simulation run 541, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686862007484245554, 1686862397514895818]). 3 Input Files, 217mb total:" + - "L1 " + - "L1.1839[1686861864947613464,1686862278459459425] 1686936871.55s 82mb |-----------------L1.1839-----------------| " + - "L1.1996[1686862278459459426,1686862464835035020] 1686936871.55s 36mb |-----L1.1996-----| " + - "L2 " + - "L2.1994[1686861617453595290,1686862464835035020] 1686936871.55s 100mb|----------------------------------------L2.1994-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 217mb total:" + - "L2 " + - "L2.?[1686861617453595290,1686862007484245554] 1686936871.55s 100mb|-----------------L2.?------------------| " + - "L2.?[1686862007484245555,1686862397514895818] 1686936871.55s 100mb |-----------------L2.?------------------| " + - "L2.?[1686862397514895819,1686862464835035020] 1686936871.55s 17mb |L2.?-| " + - "Committing partition 1:" + - " Soft Deleting 3 files: L1.1839, L2.1994, L1.1996" + - " Creating 3 files" + - "**** Simulation run 542, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686862789833508891, 1686863114831982761]). 4 Input Files, 261mb total:" + - "L1 " + - "L1.1997[1686862464835035021,1686862801147318435] 1686936871.55s 64mb|-------------L1.1997-------------| " + - "L1.1841[1686862801147318436,1686863149270270234] 1686936871.55s 67mb |-------------L1.1841--------------| " + - "L1.1986[1686863149270270235,1686863312216466667] 1686936871.55s 30mb |----L1.1986----| " + - "L2 " + - "L2.1995[1686862464835035021,1686863312216466667] 1686936871.55s 100mb|----------------------------------------L2.1995-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 261mb total:" + - "L2 " + - "L2.?[1686862464835035021,1686862789833508891] 1686936871.55s 100mb|--------------L2.?--------------| " + - "L2.?[1686862789833508892,1686863114831982761] 1686936871.55s 100mb |--------------L2.?--------------| " + - "L2.?[1686863114831982762,1686863312216466667] 1686936871.55s 61mb |-------L2.?-------| " + - "Committing partition 1:" + - " Soft Deleting 4 files: L1.1841, L1.1986, L2.1995, L1.1997" + - " Creating 3 files" + - "**** Simulation run 543, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686864893143269255, 1686866474070071842]). 5 Input Files, 286mb total:" + - "L1 " + - "L1.1987[1686863312216466668,1686863696277675850] 1686936871.55s 70mb|L1.1987| " + - "L1.1870[1686863696277675851,1686863699000000000] 1686936871.55s 510kb |L1.1870| " + - "L1.1871[1686863699000000001,1686864243285081465] 1686936871.55s 100mb |L1.1871-| " + - "L2 " + - "L2.1985[1686863312216466668,1686863699000000000] 1686936871.55s 20mb|L2.1985| " + - "L2.59[1686863759000000000,1686867839000000000] 1686928811.43s 96mb |-------------------------------------L2.59-------------------------------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 286mb total:" + - "L2 " + - "L2.?[1686863312216466668,1686864893143269255] 1686936871.55s 100mb|------------L2.?-------------| " + - "L2.?[1686864893143269256,1686866474070071842] 1686936871.55s 100mb |------------L2.?-------------| " + - "L2.?[1686866474070071843,1686867839000000000] 1686936871.55s 86mb |----------L2.?-----------| " + - "Committing partition 1:" + - " Soft Deleting 5 files: L2.59, L1.1870, L1.1871, L2.1985, L1.1987" + - " Creating 3 files" + - "**** Simulation run 544, type=split(ReduceOverlap)(split_times=[1686866474070071842]). 1 Input Files, 67mb total:" + - "L1, all files 67mb " + - "L1.1847[1686866132997818681,1686866632513513490] 1686936871.55s|----------------------------------------L1.1847-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 67mb total:" + - "L1 " + - "L1.?[1686866132997818681,1686866474070071842] 1686936871.55s 46mb|---------------------------L1.?----------------------------| " + - "L1.?[1686866474070071843,1686866632513513490] 1686936871.55s 21mb |-----------L1.?-----------| " + - "**** Simulation run 545, type=split(ReduceOverlap)(split_times=[1686864893143269255]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1845[1686864651607515460,1686865392302667070] 1686936871.55s|----------------------------------------L1.1845-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686864651607515460,1686864893143269255] 1686936871.55s 33mb|-----------L1.?------------| " + - "L1.?[1686864893143269256,1686865392302667070] 1686936871.55s 67mb |---------------------------L1.?---------------------------| " + - "Committing partition 1:" + - " Soft Deleting 2 files: L1.1845, L1.1847" + - " Creating 4 files" + - "**** Simulation run 546, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686864075006108740, 1686864837795750812]). 3 Input Files, 207mb total:" + - "L1 " + - "L1.1844[1686864243285081466,1686864651607515459] 1686936871.55s 75mb |-------L1.1844-------| " + - "L1.2009[1686864651607515460,1686864893143269255] 1686936871.55s 33mb |--L1.2009--| " + - "L2 " + - "L2.2004[1686863312216466668,1686864893143269255] 1686936871.55s 100mb|----------------------------------------L2.2004-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 207mb total:" + - "L2 " + - "L2.?[1686863312216466668,1686864075006108740] 1686936871.55s 100mb|------------------L2.?-------------------| " + - "L2.?[1686864075006108741,1686864837795750812] 1686936871.55s 100mb |------------------L2.?-------------------| " + - "L2.?[1686864837795750813,1686864893143269255] 1686936871.55s 7mb |L2.?|" + - "Committing partition 1:" + - " Soft Deleting 3 files: L1.1844, L2.2004, L1.2009" + - " Creating 3 files" + - "**** Simulation run 547, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686865484385600871, 1686866075627932486]). 3 Input Files, 267mb total:" + - "L1 " + - "L1.2010[1686864893143269256,1686865392302667070] 1686936871.55s 67mb|---------L1.2010----------| " + - "L1.1846[1686865392302667071,1686866132997818680] 1686936871.55s 100mb |----------------L1.1846-----------------| " + - "L2 " + - "L2.2005[1686864893143269256,1686866474070071842] 1686936871.55s 100mb|----------------------------------------L2.2005-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 267mb total:" + - "L2 " + - "L2.?[1686864893143269256,1686865484385600871] 1686936871.55s 100mb|-------------L2.?--------------| " + - "L2.?[1686865484385600872,1686866075627932486] 1686936871.55s 100mb |-------------L2.?--------------| " + - "L2.?[1686866075627932487,1686866474070071842] 1686936871.55s 67mb |--------L2.?--------| " + - "Committing partition 1:" + - " Soft Deleting 3 files: L1.1846, L2.2005, L1.2010" + - " Creating 3 files" + - "**** Simulation run 548, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686866872932211465, 1686867670236490443]). 4 Input Files, 221mb total:" + - "L1 " + - "L1.2007[1686866132997818681,1686866474070071842] 1686936871.55s 46mb |----L1.2007----| " + - "L1.2008[1686866474070071843,1686866632513513490] 1686936871.55s 21mb |L1.2008| " + - "L2 " + - "L2.2016[1686866075627932487,1686866474070071842] 1686936871.55s 67mb|-----L2.2016------| " + - "L2.2006[1686866474070071843,1686867839000000000] 1686936871.55s 86mb |------------------------------L2.2006------------------------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 221mb total:" + - "L2 " + - "L2.?[1686866075627932487,1686866872932211465] 1686936871.55s 100mb|-----------------L2.?-----------------| " + - "L2.?[1686866872932211466,1686867670236490443] 1686936871.55s 100mb |-----------------L2.?-----------------| " + - "L2.?[1686867670236490444,1686867839000000000] 1686936871.55s 21mb |-L2.?-| " + - "Committing partition 1:" + - " Soft Deleting 4 files: L2.2006, L1.2007, L1.2008, L2.2016" + - " Creating 3 files" + - "**** Simulation run 549, type=split(ReduceOverlap)(split_times=[1686867670236490443]). 1 Input Files, 82mb total:" + - "L1, all files 82mb " + - "L1.1868[1686867294213029770,1686867839000000000] 1686936871.55s|----------------------------------------L1.1868-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 82mb total:" + - "L1 " + - "L1.?[1686867294213029770,1686867670236490443] 1686936871.55s 57mb|----------------------------L1.?----------------------------| " + - "L1.?[1686867670236490444,1686867839000000000] 1686936871.55s 26mb |----------L1.?-----------| " + - "**** Simulation run 550, type=split(ReduceOverlap)(split_times=[1686866872932211465]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1848[1686866632513513491,1686867294213029769] 1686936871.55s|----------------------------------------L1.1848-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686866632513513491,1686866872932211465] 1686936871.55s 36mb|-------------L1.?-------------| " + - "L1.?[1686866872932211466,1686867294213029769] 1686936871.55s 64mb |-------------------------L1.?--------------------------| " + - "Committing partition 1:" + - " Soft Deleting 2 files: L1.1848, L1.1868" + - " Creating 4 files" + - "**** Simulation run 551, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686866607164120163, 1686867138700307839]). 4 Input Files, 300mb total:" + - "L1 " + - "L1.2022[1686866632513513491,1686866872932211465] 1686936871.55s 36mb |--L1.2022--| " + - "L1.2023[1686866872932211466,1686867294213029769] 1686936871.55s 64mb |-------L1.2023-------| " + - "L2 " + - "L2.2017[1686866075627932487,1686866872932211465] 1686936871.55s 100mb|------------------L2.2017------------------| " + - "L2.2018[1686866872932211466,1686867670236490443] 1686936871.55s 100mb |-----------------L2.2018------------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 300mb total:" + - "L2 " + - "L2.?[1686866075627932487,1686866607164120163] 1686936871.55s 100mb|------------L2.?------------| " + - "L2.?[1686866607164120164,1686867138700307839] 1686936871.55s 100mb |------------L2.?------------| " + - "L2.?[1686867138700307840,1686867670236490443] 1686936871.55s 100mb |-----------L2.?------------| " + - "Committing partition 1:" + - " Soft Deleting 4 files: L2.2017, L2.2018, L1.2022, L1.2023" + - " Creating 3 files" + - "**** Simulation run 552, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686867545868269737, 1686867953036231634]). 7 Input Files, 290mb total:" + - "L1 " + - "L1.2020[1686867294213029770,1686867670236490443] 1686936871.55s 57mb |---------L1.2020----------| " + - "L1.2021[1686867670236490444,1686867839000000000] 1686936871.55s 26mb |-L1.2021--| " + - "L1.1869[1686867839000000001,1686867955912546047] 1686936871.55s 18mb |L1.1869| " + - "L1.1850[1686867955912546048,1686868319000000000] 1686936871.55s 55mb |---------L1.1850---------| " + - "L2 " + - "L2.2026[1686867138700307840,1686867670236490443] 1686936871.55s 100mb|---------------L2.2026----------------| " + - "L2.2019[1686867670236490444,1686867839000000000] 1686936871.55s 21mb |-L2.2019--| " + - "L2.74[1686867899000000000,1686868319000000000] 1686928811.43s 14mb |------------L2.74-------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 290mb total:" + - "L2 " + - "L2.?[1686867138700307840,1686867545868269737] 1686936871.55s 100mb|------------L2.?-------------| " + - "L2.?[1686867545868269738,1686867953036231634] 1686936871.55s 100mb |------------L2.?-------------| " + - "L2.?[1686867953036231635,1686868319000000000] 1686936871.55s 90mb |----------L2.?-----------| " + - "Committing partition 1:" + - " Soft Deleting 7 files: L2.74, L1.1850, L1.1869, L2.2019, L1.2020, L1.2021, L2.2026" + - " Creating 3 files" + - "**** Simulation run 553, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686870526488100069, 1686872733976200137]). 3 Input Files, 239mb total:" + - "L1 " + - "L1.1851[1686868319000000001,1686869101428723112] 1686936871.55s 100mb|--L1.1851--| " + - "L1.1856[1686869101428723113,1686869556056907425] 1686936871.55s 100mb |L1.1856| " + - "L2 " + - "L2.78[1686868379000000000,1686873599000000000] 1686928118.43s 39mb |----------------------------------------L2.78-----------------------------------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 239mb total:" + - "L2 " + - "L2.?[1686868319000000001,1686870526488100069] 1686936871.55s 100mb|---------------L2.?----------------| " + - "L2.?[1686870526488100070,1686872733976200137] 1686936871.55s 100mb |---------------L2.?----------------| " + - "L2.?[1686872733976200138,1686873599000000000] 1686936871.55s 39mb |----L2.?----| " + - "Committing partition 1:" + - " Soft Deleting 3 files: L2.78, L1.1851, L1.1856" + - " Creating 3 files" + - "**** Simulation run 554, type=split(ReduceOverlap)(split_times=[1686872733976200137]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1865[1686872264751876845,1686872735710689569] 1686936871.55s|----------------------------------------L1.1865-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686872264751876845,1686872733976200137] 1686936871.55s 100mb|-----------------------------------------L1.?------------------------------------------| " + - "L1.?[1686872733976200138,1686872735710689569] 1686936871.55s 377kb |L1.?|" + - "**** Simulation run 555, type=split(ReduceOverlap)(split_times=[1686870526488100069]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1859[1686870115756756731,1686870726636810267] 1686936871.55s|----------------------------------------L1.1859-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686870115756756731,1686870526488100069] 1686936871.55s 67mb|---------------------------L1.?---------------------------| " + - "L1.?[1686870526488100070,1686870726636810267] 1686936871.55s 33mb |-----------L1.?------------| " + - "Committing partition 1:" + - " Soft Deleting 2 files: L1.1859, L1.1865" + - " Creating 4 files" + - "**** Simulation run 556, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686869079291584458, 1686869839583168915]). 4 Input Files, 290mb total:" + - "L1 " + - "L1.1857[1686869556056907426,1686870010685091737] 1686936871.55s 100mb |----L1.1857-----| " + - "L1.1858[1686870010685091738,1686870115756756730] 1686936871.55s 23mb |L1.1858| " + - "L1.2035[1686870115756756731,1686870526488100069] 1686936871.55s 67mb |---L1.2035----| " + - "L2 " + - "L2.2030[1686868319000000001,1686870526488100069] 1686936871.55s 100mb|----------------------------------------L2.2030-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 290mb total:" + - "L2 " + - "L2.?[1686868319000000001,1686869079291584458] 1686936871.55s 100mb|------------L2.?------------| " + - "L2.?[1686869079291584459,1686869839583168915] 1686936871.55s 100mb |------------L2.?------------| " + - "L2.?[1686869839583168916,1686870526488100069] 1686936871.55s 90mb |-----------L2.?-----------| " + - "Committing partition 1:" + - " Soft Deleting 4 files: L1.1857, L1.1858, L2.2030, L1.2035" + - " Creating 3 files" + - "**** Simulation run 557, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686871474868504238, 1686872423248908406]). 3 Input Files, 233mb total:" + - "L1 " + - "L1.2036[1686870526488100070,1686870726636810267] 1686936871.55s 33mb|L1.2036| " + - "L1.1860[1686870726636810268,1686871337516863803] 1686936871.55s 100mb |-------L1.1860--------| " + - "L2 " + - "L2.2031[1686870526488100070,1686872733976200137] 1686936871.55s 100mb|----------------------------------------L2.2031-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 233mb total:" + - "L2 " + - "L2.?[1686870526488100070,1686871474868504238] 1686936871.55s 100mb|----------------L2.?----------------| " + - "L2.?[1686871474868504239,1686872423248908406] 1686936871.55s 100mb |----------------L2.?----------------| " + - "L2.?[1686872423248908407,1686872733976200137] 1686936871.55s 33mb |---L2.?---| " + - "Committing partition 1:" + - " Soft Deleting 3 files: L1.1860, L2.2031, L1.2036" + - " Creating 3 files" + - "**** Simulation run 558, type=split(ReduceOverlap)(split_times=[1686872423248908406]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.2033[1686872264751876845,1686872733976200137] 1686936871.55s|----------------------------------------L1.2033-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686872264751876845,1686872423248908406] 1686936871.55s 34mb|------------L1.?------------| " + - "L1.?[1686872423248908407,1686872733976200137] 1686936871.55s 66mb |--------------------------L1.?---------------------------| " + - "**** Simulation run 559, type=split(ReduceOverlap)(split_times=[1686871474868504238]). 1 Input Files, 100mb total:" + - "L1, all files 100mb " + - "L1.1862[1686871337516863804,1686871801134370324] 1686936871.55s|----------------------------------------L1.1862-----------------------------------------|" + - "**** 2 Output Files (parquet_file_id not yet assigned), 100mb total:" + - "L1 " + - "L1.?[1686871337516863804,1686871474868504238] 1686936871.55s 30mb|----------L1.?----------| " + - "L1.?[1686871474868504239,1686871801134370324] 1686936871.55s 70mb |----------------------------L1.?-----------------------------| " + - "Committing partition 1:" + - " Soft Deleting 2 files: L1.1862, L1.2033" + - " Creating 4 files" + - "**** Simulation run 560, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686871158741704859, 1686871790995309648]). 4 Input Files, 300mb total:" + - "L1 " + - "L1.2045[1686871337516863804,1686871474868504238] 1686936871.55s 30mb |L1.2045| " + - "L1.2046[1686871474868504239,1686871801134370324] 1686936871.55s 70mb |---L1.2046---| " + - "L2 " + - "L2.2040[1686870526488100070,1686871474868504238] 1686936871.55s 100mb|------------------L2.2040------------------| " + - "L2.2041[1686871474868504239,1686872423248908406] 1686936871.55s 100mb |-----------------L2.2041------------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 300mb total:" + - "L2 " + - "L2.?[1686870526488100070,1686871158741704859] 1686936871.55s 100mb|------------L2.?------------| " + - "L2.?[1686871158741704860,1686871790995309648] 1686936871.55s 100mb |------------L2.?------------| " + - "L2.?[1686871790995309649,1686872423248908406] 1686936871.55s 100mb |-----------L2.?------------| " + - "Committing partition 1:" + - " Soft Deleting 4 files: L2.2040, L2.2041, L1.2045, L1.2046" + - " Creating 3 files" + - "**** Simulation run 561, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686872061589130317, 1686872332182950985]). 3 Input Files, 234mb total:" + - "L1 " + - "L1.1863[1686871801134370325,1686872264751876844] 1686936871.55s 100mb |----------------------------L1.1863----------------------------| " + - "L1.2043[1686872264751876845,1686872423248908406] 1686936871.55s 34mb |------L1.2043-------| " + - "L2 " + - "L2.2049[1686871790995309649,1686872423248908406] 1686936871.55s 100mb|----------------------------------------L2.2049-----------------------------------------|" + - "**** 3 Output Files (parquet_file_id not yet assigned), 234mb total:" + - "L2 " + - "L2.?[1686871790995309649,1686872061589130317] 1686936871.55s 100mb|----------------L2.?----------------| " + - "L2.?[1686872061589130318,1686872332182950985] 1686936871.55s 100mb |----------------L2.?----------------| " + - "L2.?[1686872332182950986,1686872423248908406] 1686936871.55s 34mb |---L2.?---| " + - "Committing partition 1:" + - " Soft Deleting 3 files: L1.1863, L1.2043, L2.2049" + - " Creating 3 files" + - "**** Simulation run 562, type=split(CompactAndSplitOutput(FoundSubsetLessThanMaxCompactSize))(split_times=[1686872916648819217, 1686873410048730027]). 5 Input Files, 238mb total:" + - "L1 " + - "L1.2044[1686872423248908407,1686872733976200137] 1686936871.55s 66mb|-------L1.2044-------| " + - "L1.2034[1686872733976200138,1686872735710689569] 1686936871.55s 377kb |L1.2034| " + - "L1.1866[1686872735710689570,1686873206669502293] 1686936871.55s 100mb |-------------L1.1866--------------| " + - "L2 " + - "L2.2042[1686872423248908407,1686872733976200137] 1686936871.55s 33mb|-------L2.2042-------| " + - "L2.2032[1686872733976200138,1686873599000000000] 1686936871.55s 39mb |----------------------------L2.2032-----------------------------| " + - "**** 3 Output Files (parquet_file_id not yet assigned), 238mb total:" + - "L2 " + - "L2.?[1686872423248908407,1686872916648819217] 1686936871.55s 100mb|---------------L2.?----------------| " + - "L2.?[1686872916648819218,1686873410048730027] 1686936871.55s 100mb |---------------L2.?----------------| " + - "L2.?[1686873410048730028,1686873599000000000] 1686936871.55s 38mb |----L2.?----| " + - "Committing partition 1:" + - " Soft Deleting 5 files: L1.1866, L2.2032, L1.2034, L2.2042, L1.2044" + - " Creating 3 files" + - "**** Final Output Files (49.67gb written)" + - "L1 " + - "L1.1867[1686873206669502294,1686873599000000000] 1686936871.55s 83mb |L1.1867|" + - "L2 " + - "L2.1889[1686841379000000000,1686842394885830950] 1686936871.55s 100mb|L2.1889| " + - "L2.1890[1686842394885830951,1686842786390926609] 1686936871.55s 39mb |L2.1890| " + - "L2.1891[1686842786390926610,1686843316416264410] 1686936871.55s 100mb |L2.1891| " + - "L2.1896[1686843316416264411,1686843684225379958] 1686936871.55s 100mb |L2.1896| " + - "L2.1897[1686843684225379959,1686844052034495505] 1686936871.55s 100mb |L2.1897| " + - "L2.1898[1686844052034495506,1686844193781853218] 1686936871.55s 39mb |L2.1898| " + - "L2.1899[1686844193781853219,1686844848044941008] 1686936871.55s 100mb |L2.1899| " + - "L2.1904[1686844848044941009,1686845161518308591] 1686936871.55s 100mb |L2.1904| " + - "L2.1905[1686845161518308592,1686845474991676173] 1686936871.55s 100mb |L2.1905| " + - "L2.1906[1686845474991676174,1686845579000000000] 1686936871.55s 33mb |L2.1906| " + - "L2.1914[1686845579000000001,1686846586992441776] 1686936871.55s 100mb |L2.1914| " + - "L2.1919[1686846586992441777,1686847213091270336] 1686936871.55s 100mb |L2.1919| " + - "L2.1920[1686847213091270337,1686847594984883551] 1686936871.55s 61mb |L2.1920| " + - "L2.1921[1686847594984883552,1686847967133302591] 1686936871.55s 100mb |L2.1921| " + - "L2.1922[1686847967133302592,1686848339281721630] 1686936871.55s 100mb |L2.1922| " + - "L2.1923[1686848339281721631,1686848602977306099] 1686936871.55s 71mb |L2.1923| " + - "L2.1924[1686848602977306100,1686849027096194358] 1686936871.55s 100mb |L2.1924| " + - "L2.1925[1686849027096194359,1686849451215082616] 1686936871.55s 100mb |L2.1925| " + - "L2.1926[1686849451215082617,1686849779000000000] 1686936871.55s 77mb |L2.1926| " + - "L2.1934[1686849779000000001,1686851019138093591] 1686936871.55s 100mb |L2.1934| " + - "L2.1939[1686851019138093592,1686851845896821338] 1686936871.55s 100mb |L2.1939| " + - "L2.1944[1686851845896821339,1686852397069307378] 1686936871.55s 100mb |L2.1944| " + - "L2.1949[1686852397069307379,1686852764517630237] 1686936871.55s 100mb |L2.1949| " + - "L2.1950[1686852764517630238,1686853131965953095] 1686936871.55s 100mb |L2.1950| " + - "L2.1952[1686853131965953096,1686853754631187460] 1686936871.55s 100mb |L2.1952| " + - "L2.1958[1686853754631187461,1686854074019438293] 1686936871.55s 100mb |L2.1958| " + - "L2.1959[1686854074019438294,1686854377296421824] 1686936871.55s 95mb |L2.1959| " + - "L2.1960[1686854377296421825,1686854689009102312] 1686936871.55s 100mb |L2.1960| " + - "L2.1961[1686854689009102313,1686854840368603300] 1686936871.55s 49mb |L2.1961| " + - "L2.1969[1686854840368603301,1686855548468013502] 1686936871.55s 100mb |L2.1969| " + - "L2.1970[1686855548468013503,1686856256567423703] 1686936871.55s 100mb |L2.1970| " + - "L2.1971[1686856256567423704,1686856536982788349] 1686936871.55s 40mb |L2.1971| " + - "L2.1972[1686856536982788350,1686857111714340888] 1686936871.55s 100mb |L2.1972| " + - "L2.1977[1686857111714340889,1686857492337275263] 1686936871.55s 100mb |L2.1977| " + - "L2.1978[1686857492337275264,1686857872960209637] 1686936871.55s 100mb |L2.1978| " + - "L2.1979[1686857872960209638,1686858233596973397] 1686936871.55s 95mb |L2.1979| " + - "L2.1980[1686858233596973398,1686858684102523465] 1686936871.55s 100mb |L2.1980| " + - "L2.1981[1686858684102523466,1686859134608073532] 1686936871.55s 100mb |L2.1981| " + - "L2.1982[1686859134608073533,1686859499000000000] 1686936871.55s 81mb |L2.1982| " + - "L2.1990[1686859499000000001,1686860134536077779] 1686936871.55s 100mb |L2.1990| " + - "L2.1991[1686860134536077780,1686860770072155557] 1686936871.55s 100mb |L2.1991| " + - "L2.1993[1686860770072155558,1686861617453595289] 1686936871.55s 100mb |L2.1993| " + - "L2.1998[1686861617453595290,1686862007484245554] 1686936871.55s 100mb |L2.1998| " + - "L2.1999[1686862007484245555,1686862397514895818] 1686936871.55s 100mb |L2.1999| " + - "L2.2000[1686862397514895819,1686862464835035020] 1686936871.55s 17mb |L2.2000| " + - "L2.2001[1686862464835035021,1686862789833508891] 1686936871.55s 100mb |L2.2001| " + - "L2.2002[1686862789833508892,1686863114831982761] 1686936871.55s 100mb |L2.2002| " + - "L2.2003[1686863114831982762,1686863312216466667] 1686936871.55s 61mb |L2.2003| " + - "L2.2011[1686863312216466668,1686864075006108740] 1686936871.55s 100mb |L2.2011| " + - "L2.2012[1686864075006108741,1686864837795750812] 1686936871.55s 100mb |L2.2012| " + - "L2.2013[1686864837795750813,1686864893143269255] 1686936871.55s 7mb |L2.2013| " + - "L2.2014[1686864893143269256,1686865484385600871] 1686936871.55s 100mb |L2.2014| " + - "L2.2015[1686865484385600872,1686866075627932486] 1686936871.55s 100mb |L2.2015| " + - "L2.2024[1686866075627932487,1686866607164120163] 1686936871.55s 100mb |L2.2024| " + - "L2.2025[1686866607164120164,1686867138700307839] 1686936871.55s 100mb |L2.2025| " + - "L2.2027[1686867138700307840,1686867545868269737] 1686936871.55s 100mb |L2.2027| " + - "L2.2028[1686867545868269738,1686867953036231634] 1686936871.55s 100mb |L2.2028| " + - "L2.2029[1686867953036231635,1686868319000000000] 1686936871.55s 90mb |L2.2029| " + - "L2.2037[1686868319000000001,1686869079291584458] 1686936871.55s 100mb |L2.2037| " + - "L2.2038[1686869079291584459,1686869839583168915] 1686936871.55s 100mb |L2.2038| " + - "L2.2039[1686869839583168916,1686870526488100069] 1686936871.55s 90mb |L2.2039| " + - "L2.2047[1686870526488100070,1686871158741704859] 1686936871.55s 100mb |L2.2047|" + - "L2.2048[1686871158741704860,1686871790995309648] 1686936871.55s 100mb |L2.2048|" + - "L2.2050[1686871790995309649,1686872061589130317] 1686936871.55s 100mb |L2.2050|" + - "L2.2051[1686872061589130318,1686872332182950985] 1686936871.55s 100mb |L2.2051|" + - "L2.2052[1686872332182950986,1686872423248908406] 1686936871.55s 34mb |L2.2052|" + - "L2.2053[1686872423248908407,1686872916648819217] 1686936871.55s 100mb |L2.2053|" + - "L2.2054[1686872916648819218,1686873410048730027] 1686936871.55s 100mb |L2.2054|" + - "L2.2055[1686873410048730028,1686873599000000000] 1686936871.55s 38mb |L2.2055|" + "### + ); +}