1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
#[cfg(any(feature = "parquet", feature = "csv-file"))]
use polars_core::datatypes::PlHashMap;
use polars_core::frame::hash_join::JoinType;
use polars_core::prelude::*;
#[cfg(feature = "dtype-categorical")]
use polars_core::toggle_string_cache;
use std::sync::Arc;
use crate::logical_plan::optimizer::aggregate_pushdown::AggregatePushdown;
#[cfg(any(feature = "parquet", feature = "csv-file"))]
use crate::logical_plan::optimizer::aggregate_scan_projections::AggScanProjection;
use crate::logical_plan::optimizer::simplify_expr::SimplifyExprRule;
use crate::logical_plan::optimizer::stack_opt::{OptimizationRule, StackOptimizer};
use crate::logical_plan::optimizer::{
predicate_pushdown::PredicatePushDown, projection_pushdown::ProjectionPushDown,
};
use crate::physical_plan::state::ExecutionState;
#[cfg(any(feature = "parquet", feature = "csv-file"))]
use crate::prelude::aggregate_scan_projections::agg_projection;
use crate::prelude::drop_nulls::ReplaceDropNulls;
use crate::prelude::fast_projection::FastProjection;
use crate::prelude::simplify_expr::SimplifyBooleanRule;
use crate::utils::{combine_predicates_expr, expr_to_root_column_names};
use crate::{logical_plan::FETCH_ROWS, prelude::*};
use polars_io::csv::NullValues;
#[derive(Clone)]
#[cfg(feature = "csv-file")]
pub struct LazyCsvReader<'a> {
path: String,
delimiter: u8,
has_header: bool,
ignore_errors: bool,
skip_rows: usize,
stop_after_n_rows: Option<usize>,
cache: bool,
schema: Option<SchemaRef>,
schema_overwrite: Option<&'a Schema>,
low_memory: bool,
comment_char: Option<u8>,
quote_char: Option<u8>,
null_values: Option<NullValues>,
}
#[cfg(feature = "csv-file")]
impl<'a> LazyCsvReader<'a> {
pub fn new(path: String) -> Self {
LazyCsvReader {
path,
delimiter: b',',
has_header: true,
ignore_errors: false,
skip_rows: 0,
stop_after_n_rows: None,
cache: true,
schema: None,
schema_overwrite: None,
low_memory: false,
comment_char: None,
quote_char: Some(b'"'),
null_values: None,
}
}
pub fn with_stop_after_n_rows(mut self, num_rows: Option<usize>) -> Self {
self.stop_after_n_rows = num_rows;
self
}
pub fn with_ignore_parser_errors(mut self, ignore: bool) -> Self {
self.ignore_errors = ignore;
self
}
pub fn with_schema(mut self, schema: SchemaRef) -> Self {
self.schema = Some(schema);
self
}
pub fn with_skip_rows(mut self, skip_rows: usize) -> Self {
self.skip_rows = skip_rows;
self
}
pub fn with_dtype_overwrite(mut self, schema: Option<&'a Schema>) -> Self {
self.schema_overwrite = schema;
self
}
pub fn has_header(mut self, has_header: bool) -> Self {
self.has_header = has_header;
self
}
pub fn with_delimiter(mut self, delimiter: u8) -> Self {
self.delimiter = delimiter;
self
}
pub fn with_comment_char(mut self, comment_char: Option<u8>) -> Self {
self.comment_char = comment_char;
self
}
pub fn with_quote_char(mut self, quote: Option<u8>) -> Self {
self.quote_char = quote;
self
}
pub fn with_null_values(mut self, null_values: Option<NullValues>) -> Self {
self.null_values = null_values;
self
}
pub fn with_cache(mut self, cache: bool) -> Self {
self.cache = cache;
self
}
pub fn low_memory(mut self, toggle: bool) -> Self {
self.low_memory = toggle;
self
}
pub fn finish(self) -> LazyFrame {
let mut lf: LazyFrame = LogicalPlanBuilder::scan_csv(
self.path,
self.delimiter,
self.has_header,
self.ignore_errors,
self.skip_rows,
self.stop_after_n_rows,
self.cache,
self.schema,
self.schema_overwrite,
self.low_memory,
self.comment_char,
self.quote_char,
self.null_values,
)
.build()
.into();
lf.opt_state.agg_scan_projection = true;
lf
}
}
#[derive(Clone, Debug)]
pub struct JoinOptions {
pub allow_parallel: bool,
pub force_parallel: bool,
pub how: JoinType,
pub suffix: Option<String>,
pub asof_by_left: Vec<String>,
pub asof_by_right: Vec<String>,
}
impl Default for JoinOptions {
fn default() -> Self {
JoinOptions {
allow_parallel: true,
force_parallel: false,
how: JoinType::Left,
suffix: None,
asof_by_left: vec![],
asof_by_right: vec![],
}
}
}
pub trait IntoLazy {
fn lazy(self) -> LazyFrame;
}
impl IntoLazy for DataFrame {
fn lazy(self) -> LazyFrame {
LogicalPlanBuilder::from_existing_df(self).build().into()
}
}
#[derive(Clone, Default)]
pub struct LazyFrame {
pub(crate) logical_plan: LogicalPlan,
pub(crate) opt_state: OptState,
}
impl From<LogicalPlan> for LazyFrame {
fn from(plan: LogicalPlan) -> Self {
Self {
logical_plan: plan,
opt_state: Default::default(),
}
}
}
#[derive(Copy, Clone)]
pub struct OptState {
pub projection_pushdown: bool,
pub predicate_pushdown: bool,
pub type_coercion: bool,
pub simplify_expr: bool,
pub agg_scan_projection: bool,
pub aggregate_pushdown: bool,
pub global_string_cache: bool,
pub join_pruning: bool,
}
impl Default for OptState {
fn default() -> Self {
OptState {
projection_pushdown: true,
predicate_pushdown: true,
type_coercion: true,
simplify_expr: true,
global_string_cache: true,
join_pruning: true,
agg_scan_projection: false,
aggregate_pushdown: false,
}
}
}
pub type AllowedOptimizations = OptState;
impl LazyFrame {
pub fn schema(&self) -> SchemaRef {
let logical_plan = self.clone().get_plan_builder().build();
logical_plan.schema().clone()
}
#[cfg(feature = "parquet")]
pub fn new_from_parquet(path: String, stop_after_n_rows: Option<usize>, cache: bool) -> Self {
let mut lf: LazyFrame = LogicalPlanBuilder::scan_parquet(path, stop_after_n_rows, cache)
.build()
.into();
lf.opt_state.agg_scan_projection = true;
lf
}
pub fn to_dot(&self, optimized: bool) -> Result<String> {
let mut s = String::with_capacity(512);
let mut logical_plan = self.clone().get_plan_builder().build();
if optimized {
let mut expr_arena = Arena::with_capacity(64);
let mut lp_arena = Arena::with_capacity(32);
let lp_top = self.clone().optimize(&mut lp_arena, &mut expr_arena)?;
logical_plan = node_to_lp(lp_top, &mut expr_arena, &mut lp_arena);
}
logical_plan.dot(&mut s, (0, 0), "").expect("io error");
s.push_str("\n}");
Ok(s)
}
fn get_plan_builder(self) -> LogicalPlanBuilder {
LogicalPlanBuilder::from(self.logical_plan)
}
fn get_opt_state(&self) -> OptState {
self.opt_state
}
fn from_logical_plan(logical_plan: LogicalPlan, opt_state: OptState) -> Self {
LazyFrame {
logical_plan,
opt_state,
}
}
#[cfg(test)]
pub(crate) fn into_alp(self) -> (Node, Arena<AExpr>, Arena<ALogicalPlan>) {
let mut expr_arena = Arena::with_capacity(64);
let mut lp_arena = Arena::with_capacity(32);
let root = to_alp(self.logical_plan, &mut expr_arena, &mut lp_arena);
(root, expr_arena, lp_arena)
}
pub fn with_projection_pushdown(mut self, toggle: bool) -> Self {
self.opt_state.projection_pushdown = toggle;
self
}
pub fn with_predicate_pushdown(mut self, toggle: bool) -> Self {
self.opt_state.predicate_pushdown = toggle;
self
}
pub fn with_type_coercion(mut self, toggle: bool) -> Self {
self.opt_state.type_coercion = toggle;
self
}
pub fn with_simplify_expr(mut self, toggle: bool) -> Self {
self.opt_state.simplify_expr = toggle;
self
}
pub fn with_aggregate_pushdown(mut self, toggle: bool) -> Self {
self.opt_state.aggregate_pushdown = toggle;
self
}
pub fn with_string_cache(mut self, toggle: bool) -> Self {
self.opt_state.global_string_cache = toggle;
self
}
pub fn with_join_pruning(mut self, toggle: bool) -> Self {
self.opt_state.join_pruning = toggle;
self
}
pub fn describe_plan(&self) -> String {
self.logical_plan.describe()
}
pub fn describe_optimized_plan(&self) -> Result<String> {
let mut expr_arena = Arena::with_capacity(512);
let mut lp_arena = Arena::with_capacity(512);
let lp_top = self.clone().optimize(&mut lp_arena, &mut expr_arena)?;
let logical_plan = node_to_lp(lp_top, &mut expr_arena, &mut lp_arena);
Ok(logical_plan.describe())
}
pub fn sort(self, by_column: &str, reverse: bool) -> Self {
let opt_state = self.get_opt_state();
let lp = self
.get_plan_builder()
.sort(vec![col(by_column)], vec![reverse])
.build();
Self::from_logical_plan(lp, opt_state)
}
pub fn sort_by_exprs(self, by_exprs: Vec<Expr>, reverse: Vec<bool>) -> Self {
if by_exprs.is_empty() {
self
} else {
let opt_state = self.get_opt_state();
let lp = self.get_plan_builder().sort(by_exprs, reverse).build();
Self::from_logical_plan(lp, opt_state)
}
}
pub fn reverse(self) -> Self {
self.select_local(vec![col("*").reverse()])
}
pub fn with_column_renamed(self, existing_name: &str, new_name: &str) -> Self {
let schema = self.logical_plan.schema();
let schema = schema
.rename(&[existing_name], &[new_name])
.expect("cannot rename non existing column");
let init = self.with_column(col(existing_name));
let existing_name = existing_name.to_string();
let new_name = new_name.to_string();
let f = move |mut df: DataFrame| {
df.rename(&existing_name, &new_name)?;
Ok(df)
};
init.map(f, Some(AllowedOptimizations::default()), Some(schema))
}
pub fn rename<I, J, T, S>(self, existing: I, new: J) -> Self
where
I: IntoIterator<Item = T> + Clone,
J: IntoIterator<Item = S>,
T: AsRef<str>,
S: AsRef<str>,
{
let existing: Vec<String> = existing
.into_iter()
.map(|name| name.as_ref().to_string())
.collect();
self.with_columns(
existing
.iter()
.zip(new)
.map(|(old, new)| col(old).alias(new.as_ref()))
.collect(),
)
.drop_columns_impl(&existing)
}
pub fn drop_columns<I, T>(self, columns: I) -> Self
where
I: IntoIterator<Item = T>,
T: AsRef<str>,
{
let columns: Vec<String> = columns
.into_iter()
.map(|name| name.as_ref().to_string())
.collect();
self.drop_columns_impl(&columns)
}
#[allow(clippy::ptr_arg)]
fn drop_columns_impl(self, columns: &Vec<String>) -> Self {
self.select_local(vec![col("*").exclude(columns)])
}
pub fn shift(self, periods: i64) -> Self {
self.select_local(vec![col("*").shift(periods)])
}
pub fn shift_and_fill(self, periods: i64, fill_value: Expr) -> Self {
self.select_local(vec![col("*").shift_and_fill(periods, fill_value)])
}
pub fn fill_null(self, fill_value: Expr) -> LazyFrame {
let opt_state = self.get_opt_state();
let lp = self.get_plan_builder().fill_null(fill_value).build();
Self::from_logical_plan(lp, opt_state)
}
pub fn fill_nan(self, fill_value: Expr) -> LazyFrame {
let opt_state = self.get_opt_state();
let lp = self.get_plan_builder().fill_nan(fill_value).build();
Self::from_logical_plan(lp, opt_state)
}
pub fn cache(self) -> Self {
let opt_state = self.get_opt_state();
let lp = self.get_plan_builder().cache().build();
Self::from_logical_plan(lp, opt_state)
}
pub fn fetch(self, n_rows: usize) -> Result<DataFrame> {
FETCH_ROWS.with(|fetch_rows| fetch_rows.set(Some(n_rows)));
let res = self.collect();
FETCH_ROWS.with(|fetch_rows| fetch_rows.set(None));
res
}
pub fn optimize(
self,
lp_arena: &mut Arena<ALogicalPlan>,
expr_arena: &mut Arena<AExpr>,
) -> Result<Node> {
let predicate_pushdown = self.opt_state.predicate_pushdown;
let projection_pushdown = self.opt_state.projection_pushdown;
let type_coercion = self.opt_state.type_coercion;
let simplify_expr = self.opt_state.simplify_expr;
#[cfg(any(feature = "parquet", feature = "csv-file"))]
let agg_scan_projection = self.opt_state.agg_scan_projection;
let aggregate_pushdown = self.opt_state.aggregate_pushdown;
let logical_plan = self.get_plan_builder().build();
let mut rules: Vec<Box<dyn OptimizationRule>> = Vec::with_capacity(8);
let predicate_pushdown_opt = PredicatePushDown::default();
let projection_pushdown_opt = ProjectionPushDown {};
#[cfg(debug_assertions)]
let prev_schema = logical_plan.schema().clone();
let mut lp_top = to_alp(logical_plan, expr_arena, lp_arena);
if projection_pushdown {
let alp = lp_arena.take(lp_top);
let alp = projection_pushdown_opt
.optimize(alp, lp_arena, expr_arena)
.expect("projection pushdown failed");
lp_arena.replace(lp_top, alp);
}
if predicate_pushdown {
let alp = lp_arena.take(lp_top);
let alp = predicate_pushdown_opt
.optimize(alp, lp_arena, expr_arena)
.expect("predicate pushdown failed");
lp_arena.replace(lp_top, alp);
}
if type_coercion {
rules.push(Box::new(TypeCoercionRule {}))
}
if simplify_expr {
rules.push(Box::new(SimplifyExprRule {}));
rules.push(Box::new(SimplifyBooleanRule {}));
}
if aggregate_pushdown {
rules.push(Box::new(AggregatePushdown::new()))
}
#[cfg(any(feature = "parquet", feature = "csv-file"))]
if agg_scan_projection {
let mut columns = PlHashMap::with_capacity(32);
agg_projection(lp_top, &mut columns, lp_arena);
let opt = AggScanProjection { columns };
rules.push(Box::new(opt));
}
rules.push(Box::new(FastProjection {}));
rules.push(Box::new(ReplaceDropNulls {}));
let opt = StackOptimizer {};
lp_top = opt.optimize_loop(&mut rules, expr_arena, lp_arena, lp_top);
#[cfg(debug_assertions)]
{
assert_eq!(
prev_schema
.fields()
.iter()
.map(|f| f.name())
.collect::<Vec<_>>(),
lp_arena
.get(lp_top)
.schema(lp_arena)
.fields()
.iter()
.map(|f| f.name())
.collect::<Vec<_>>()
);
};
Ok(lp_top)
}
pub fn collect(self) -> Result<DataFrame> {
#[cfg(feature = "dtype-categorical")]
let use_string_cache = self.opt_state.global_string_cache;
let mut expr_arena = Arena::with_capacity(256);
let mut lp_arena = Arena::with_capacity(128);
let lp_top = self.optimize(&mut lp_arena, &mut expr_arena)?;
#[cfg(feature = "dtype-categorical")]
if use_string_cache {
toggle_string_cache(use_string_cache);
}
let planner = DefaultPlanner::default();
let mut physical_plan =
planner.create_physical_plan(lp_top, &mut lp_arena, &mut expr_arena)?;
let state = ExecutionState::new();
let out = physical_plan.execute(&state);
#[cfg(feature = "dtype-categorical")]
if use_string_cache {
toggle_string_cache(!use_string_cache);
}
out
}
pub fn filter(self, predicate: Expr) -> Self {
let opt_state = self.get_opt_state();
let lp = self.get_plan_builder().filter(predicate).build();
Self::from_logical_plan(lp, opt_state)
}
pub fn select<E: AsRef<[Expr]>>(self, exprs: E) -> Self {
let opt_state = self.get_opt_state();
let lp = self
.get_plan_builder()
.project(exprs.as_ref().to_vec())
.build();
Self::from_logical_plan(lp, opt_state)
}
fn select_local(self, exprs: Vec<Expr>) -> Self {
let opt_state = self.get_opt_state();
let lp = self.get_plan_builder().project_local(exprs).build();
Self::from_logical_plan(lp, opt_state)
}
pub fn groupby<E: AsRef<[Expr]>>(self, by: E) -> LazyGroupBy {
let opt_state = self.get_opt_state();
LazyGroupBy {
logical_plan: self.logical_plan,
opt_state,
keys: by.as_ref().to_vec(),
maintain_order: false,
}
}
pub fn stable_groupby<E: AsRef<[Expr]>>(self, by: E) -> LazyGroupBy {
let opt_state = self.get_opt_state();
LazyGroupBy {
logical_plan: self.logical_plan,
opt_state,
keys: by.as_ref().to_vec(),
maintain_order: true,
}
}
pub fn left_join(self, other: LazyFrame, left_on: Expr, right_on: Expr) -> LazyFrame {
self.join(other, vec![left_on], vec![right_on], JoinType::Left)
}
pub fn outer_join(self, other: LazyFrame, left_on: Expr, right_on: Expr) -> LazyFrame {
self.join(other, vec![left_on], vec![right_on], JoinType::Outer)
}
pub fn inner_join(self, other: LazyFrame, left_on: Expr, right_on: Expr) -> LazyFrame {
self.join(other, vec![left_on], vec![right_on], JoinType::Inner)
}
#[cfg(feature = "cross_join")]
pub fn cross_join(self, other: LazyFrame) -> LazyFrame {
self.join(other, vec![], vec![], JoinType::Cross)
}
pub fn join(
self,
other: LazyFrame,
left_on: Vec<Expr>,
right_on: Vec<Expr>,
how: JoinType,
) -> LazyFrame {
self.join_builder()
.with(other)
.left_on(left_on)
.right_on(right_on)
.how(how)
.finish()
}
pub fn join_builder(self) -> JoinBuilder {
JoinBuilder::new(self)
}
pub fn with_column(self, expr: Expr) -> LazyFrame {
let opt_state = self.get_opt_state();
let lp = self.get_plan_builder().with_columns(vec![expr]).build();
Self::from_logical_plan(lp, opt_state)
}
pub fn with_columns(self, exprs: Vec<Expr>) -> LazyFrame {
let opt_state = self.get_opt_state();
let lp = self.get_plan_builder().with_columns(exprs).build();
Self::from_logical_plan(lp, opt_state)
}
pub fn max(self) -> LazyFrame {
self.select_local(vec![col("*").max()])
}
pub fn min(self) -> LazyFrame {
self.select_local(vec![col("*").min()])
}
pub fn sum(self) -> LazyFrame {
self.select_local(vec![col("*").sum()])
}
pub fn mean(self) -> LazyFrame {
self.select_local(vec![col("*").mean()])
}
pub fn median(self) -> LazyFrame {
self.select_local(vec![col("*").median()])
}
pub fn quantile(self, quantile: f64) -> LazyFrame {
self.select_local(vec![col("*").quantile(quantile)])
}
pub fn std(self) -> LazyFrame {
self.select_local(vec![col("*").std()])
}
pub fn var(self) -> LazyFrame {
self.select_local(vec![col("*").var()])
}
pub fn explode(self, columns: Vec<Expr>) -> LazyFrame {
let opt_state = self.get_opt_state();
let lp = self.get_plan_builder().explode(columns).build();
Self::from_logical_plan(lp, opt_state)
}
pub fn drop_duplicates(self, maintain_order: bool, subset: Option<Vec<String>>) -> LazyFrame {
let opt_state = self.get_opt_state();
let lp = self
.get_plan_builder()
.drop_duplicates(maintain_order, subset)
.build();
Self::from_logical_plan(lp, opt_state)
}
pub fn drop_nulls(self, subset: Option<Vec<Expr>>) -> LazyFrame {
match subset {
None => self.filter(col("*").is_not_null()),
Some(subset) => {
let it = subset.into_iter().map(|e| e.is_not_null());
let predicate = combine_predicates_expr(it);
self.filter(predicate)
}
}
}
pub fn slice(self, offset: i64, len: usize) -> LazyFrame {
let opt_state = self.get_opt_state();
let lp = self.get_plan_builder().slice(offset, len).build();
Self::from_logical_plan(lp, opt_state)
}
pub fn first(self) -> LazyFrame {
self.slice(0, 1)
}
pub fn last(self) -> LazyFrame {
self.slice(-1, 1)
}
pub fn tail(self, n: usize) -> LazyFrame {
let neg_tail = -(n as i64);
self.slice(neg_tail, n)
}
pub fn melt(self, id_vars: Vec<String>, value_vars: Vec<String>) -> LazyFrame {
let opt_state = self.get_opt_state();
let lp = self
.get_plan_builder()
.melt(Arc::new(id_vars), Arc::new(value_vars))
.build();
Self::from_logical_plan(lp, opt_state)
}
pub fn limit(self, n: usize) -> LazyFrame {
self.slice(0, n)
}
pub fn map<F>(
self,
function: F,
optimizations: Option<AllowedOptimizations>,
schema: Option<Schema>,
) -> LazyFrame
where
F: DataFrameUdf + 'static,
{
let opt_state = self.get_opt_state();
let lp = self
.get_plan_builder()
.map(
function,
optimizations.unwrap_or_default(),
schema.map(Arc::new),
)
.build();
Self::from_logical_plan(lp, opt_state)
}
pub fn with_row_count(self, name: &str) -> LazyFrame {
let schema = self.schema();
let mut fields = schema.fields().clone();
fields.insert(0, Field::new(name, DataType::UInt32));
let new_schema = Schema::new(fields);
let name = name.to_owned();
self.map(
move |df: DataFrame| df.with_row_count(&name),
Some(AllowedOptimizations::default()),
Some(new_schema),
)
}
}
pub struct LazyGroupBy {
pub(crate) logical_plan: LogicalPlan,
opt_state: OptState,
keys: Vec<Expr>,
maintain_order: bool,
}
impl LazyGroupBy {
pub fn agg<E: AsRef<[Expr]>>(self, aggs: E) -> LazyFrame {
let lp = LogicalPlanBuilder::from(self.logical_plan)
.groupby(Arc::new(self.keys), aggs, None, self.maintain_order)
.build();
LazyFrame::from_logical_plan(lp, self.opt_state)
}
pub fn head(self, n: Option<usize>) -> LazyFrame {
let keys = self
.keys
.iter()
.map(|k| expr_to_root_column_names(k).into_iter())
.flatten()
.collect::<Vec<_>>();
self.agg([col("*").exclude(&keys).head(n).list().keep_name()])
.explode(vec![col("*").exclude(&keys)])
}
pub fn tail(self, n: Option<usize>) -> LazyFrame {
let keys = self
.keys
.iter()
.map(|k| expr_to_root_column_names(k).into_iter())
.flatten()
.collect::<Vec<_>>();
self.agg([col("*").exclude(&keys).tail(n).list().keep_name()])
.explode(vec![col("*").exclude(&keys)])
}
pub fn apply<F>(self, f: F) -> LazyFrame
where
F: 'static + Fn(DataFrame) -> Result<DataFrame> + Send + Sync,
{
let lp = LogicalPlanBuilder::from(self.logical_plan)
.groupby(
Arc::new(self.keys),
vec![],
Some(Arc::new(f)),
self.maintain_order,
)
.build();
LazyFrame::from_logical_plan(lp, self.opt_state)
}
}
pub struct JoinBuilder {
lf: LazyFrame,
how: JoinType,
other: Option<LazyFrame>,
left_on: Vec<Expr>,
right_on: Vec<Expr>,
allow_parallel: bool,
force_parallel: bool,
suffix: Option<String>,
asof_by_left: Vec<String>,
asof_by_right: Vec<String>,
}
impl JoinBuilder {
fn new(lf: LazyFrame) -> Self {
Self {
lf,
other: None,
how: JoinType::Inner,
left_on: vec![],
right_on: vec![],
allow_parallel: true,
force_parallel: false,
suffix: None,
asof_by_left: vec![],
asof_by_right: vec![],
}
}
pub fn with(mut self, other: LazyFrame) -> Self {
self.other = Some(other);
self
}
pub fn how(mut self, how: JoinType) -> Self {
self.how = how;
self
}
pub fn left_on(mut self, on: Vec<Expr>) -> Self {
self.left_on = on;
self
}
pub fn right_on(mut self, on: Vec<Expr>) -> Self {
self.right_on = on;
self
}
pub fn allow_parallel(mut self, allow: bool) -> Self {
self.allow_parallel = allow;
self
}
pub fn force_parallel(mut self, allow: bool) -> Self {
self.allow_parallel = allow;
self
}
pub fn suffix(mut self, suffix: String) -> Self {
self.suffix = Some(suffix);
self
}
pub fn asof_by(mut self, left_by: Vec<String>, right_by: Vec<String>) -> Self {
self.asof_by_left = left_by;
self.asof_by_right = right_by;
self
}
pub fn finish(self) -> LazyFrame {
let opt_state = self.lf.opt_state;
let lp = self
.lf
.get_plan_builder()
.join(
self.other.expect("with not set").logical_plan,
self.left_on,
self.right_on,
JoinOptions {
allow_parallel: self.allow_parallel,
force_parallel: self.force_parallel,
how: self.how,
suffix: self.suffix,
asof_by_left: self.asof_by_left,
asof_by_right: self.asof_by_right,
},
)
.build();
LazyFrame::from_logical_plan(lp, opt_state)
}
}