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
//! Parallel query executor core: thread pool, algebra dispatch, and the
//! BGP / join / union / filter / order-by / group-by execution paths.
//!
//! This module defines [`ParallelQueryExecutor`] and the bulk of its query
//! evaluation methods. Property-path, optional/minus, and projection-style
//! operators live in the sibling [`crate::parallel_executor_ops`] module;
//! the scan iterator and work-stealing queue live in
//! [`crate::parallel_executor_queue`].
use crate::algebra::{
Aggregate, Algebra, Binding, Expression, Literal, PropertyPath, Solution, Term as AlgebraTerm,
TriplePattern, Variable,
};
use crate::executor::stats::ExecutionStats;
use crate::executor::{Dataset, ExecutionContext, ParallelConfig};
use crate::expression::ExpressionEvaluator;
use crate::parallel_types::ParallelStats;
use crate::term::{BindingContext, Term};
use anyhow::{anyhow, Result};
use dashmap::DashMap;
use oxirs_core::model::NamedNode;
use parking_lot::RwLock;
use rayon::prelude::*;
use std::collections::{HashMap, HashSet};
use std::sync::Arc;
use std::time::Instant;
/// Parallel query executor with advanced features
pub struct ParallelQueryExecutor {
pub(crate) config: ParallelConfig,
pub(crate) stats: Arc<RwLock<ParallelStats>>,
pub(crate) thread_pool: rayon::ThreadPool,
}
/// Type alias for backward compatibility
pub type ParallelExecutor = ParallelQueryExecutor;
/// Collapse a length-one `PropertyPath::Iri` predicate encoding to a plain
/// `Term::Iri`, mirroring the store's predicate handling. Other terms pass
/// through unchanged. Used when re-verifying a bound pattern term against a
/// stored value so the parser's property-path predicate encoding matches the
/// store's plain-IRI representation.
fn normalize_bound_term(term: &AlgebraTerm) -> AlgebraTerm {
match term {
AlgebraTerm::PropertyPath(PropertyPath::Iri(n)) => AlgebraTerm::Iri(n.clone()),
other => other.clone(),
}
}
impl ParallelQueryExecutor {
/// Create a new parallel query executor
pub fn new(config: ParallelConfig) -> Result<Self> {
let thread_pool = rayon::ThreadPoolBuilder::new()
.num_threads(config.max_threads)
.thread_name(|idx| format!("oxirs-arq-worker-{idx}"))
.stack_size(
config
.thread_pool_config
.stack_size
.unwrap_or(8 * 1024 * 1024),
)
.build()
.map_err(|e| anyhow!("Failed to create thread pool: {}", e))?;
Ok(Self {
config,
stats: Arc::new(RwLock::new(ParallelStats::default())),
thread_pool,
})
}
/// Execute algebra expression in parallel
pub fn execute(
&self,
algebra: &Algebra,
dataset: &dyn Dataset,
context: &ExecutionContext,
stats: &mut ExecutionStats,
) -> Result<Solution> {
let start = Instant::now();
// Update parallel stats
{
let mut pstats = self.stats.write();
pstats.parallel_operations += 1;
}
let result = self
.thread_pool
.install(|| self.execute_parallel_internal(algebra, dataset, context, stats))?;
// Calculate speedup
let _parallel_time = start.elapsed();
{
let mut pstats = self.stats.write();
pstats.thread_utilization = self.calculate_thread_utilization();
}
Ok(result)
}
/// Internal parallel execution method
pub(crate) fn execute_parallel_internal(
&self,
algebra: &Algebra,
dataset: &dyn Dataset,
context: &ExecutionContext,
stats: &mut ExecutionStats,
) -> Result<Solution> {
match algebra {
Algebra::Bgp(patterns) => self.execute_parallel_bgp(patterns, dataset, stats),
Algebra::Join { left, right } => {
self.execute_parallel_join(left, right, dataset, context, stats)
}
Algebra::Union { left, right } => {
self.execute_parallel_union(left, right, dataset, context, stats)
}
Algebra::Filter { pattern, condition } => {
self.execute_parallel_filter(pattern, condition, dataset, context, stats)
}
Algebra::OrderBy {
pattern,
conditions,
} => {
let conditions_tuple: Vec<(Expression, bool)> = conditions
.iter()
.map(|c| (c.expr.clone(), c.ascending))
.collect();
self.execute_parallel_order_by(pattern, &conditions_tuple, dataset, context, stats)
}
Algebra::Group {
pattern,
variables,
aggregates,
} => {
let group_vars: Vec<Variable> = variables
.iter()
.filter_map(|gc| {
gc.alias.clone().or_else(|| {
if let Expression::Variable(var) = &gc.expr {
Some(var.clone())
} else {
None
}
})
})
.collect();
self.execute_parallel_group(
pattern,
&group_vars,
aggregates,
dataset,
context,
stats,
)
}
Algebra::PropertyPath {
subject,
path,
object,
} => {
self.execute_parallel_property_path(subject, path, object, dataset, context, stats)
}
Algebra::LeftJoin {
left,
right,
filter,
} => self.execute_parallel_left_join(left, right, filter, dataset, context, stats),
Algebra::Extend {
pattern,
variable,
expr,
} => self.execute_parallel_extend(pattern, variable, expr, dataset, context, stats),
Algebra::Minus { left, right } => {
self.execute_parallel_minus(left, right, dataset, context, stats)
}
Algebra::Service {
endpoint,
pattern,
silent,
} => self.execute_parallel_service(endpoint, pattern, *silent, dataset, context, stats),
Algebra::Graph { graph, pattern } => {
self.execute_parallel_graph(graph, pattern, dataset, context, stats)
}
Algebra::Project { pattern, variables } => {
self.execute_parallel_project(pattern, variables, dataset, context, stats)
}
Algebra::Distinct { pattern } => {
self.execute_parallel_distinct(pattern, dataset, context, stats)
}
Algebra::Reduced { pattern } => {
self.execute_parallel_reduced(pattern, dataset, context, stats)
}
Algebra::Slice {
pattern,
offset,
limit,
} => self.execute_parallel_slice(pattern, *offset, *limit, dataset, context, stats),
// Dataset-independent leaves: evaluating them needs no
// parallelism, but erroring out made any query CONTAINING them
// fail under the Parallel strategy where Serial succeeds.
Algebra::Values { bindings, .. } => Ok(bindings.clone()),
Algebra::Table => Ok(vec![Binding::new()]),
Algebra::Zero | Algebra::Empty => Ok(Vec::new()),
_ => {
// Fall back to sequential execution for truly unsupported operations
Err(anyhow!(
"Parallel execution not supported for this algebra type"
))
}
}
}
/// Execute BGP in parallel with partition-based scanning
pub(crate) fn execute_parallel_bgp(
&self,
patterns: &[TriplePattern],
dataset: &dyn Dataset,
stats: &mut ExecutionStats,
) -> Result<Solution> {
if patterns.is_empty() {
return Ok(vec![HashMap::new()]);
}
// BGP patterns are CONJUNCTIVE: they must be joined, not concatenated.
// The previous implementation split the pattern list into per-thread
// chunks and then `merge_bgp_results`-CONCATENATED the per-chunk
// solutions, which returned the union of each pattern's bindings instead
// of their join — a silent wrong answer for every multi-pattern BGP
// (e.g. `?s :p ?o . ?s :q ?o2` yielded the 5 unjoined rows rather than
// the 2 joined ones). Fold the whole pattern list in sequence instead;
// per-pattern parallelism is preserved by `join_with_pattern_parallel`,
// which fans the current binding set across the thread pool.
let solution = self.process_bgp_chunk(patterns, dataset)?;
self.merge_bgp_results(vec![solution], stats)
}
/// Process a chunk of BGP patterns
fn process_bgp_chunk(
&self,
patterns: &[TriplePattern],
dataset: &dyn Dataset,
) -> Result<Solution> {
let mut solution = vec![HashMap::new()];
for pattern in patterns {
solution = self.join_with_pattern_parallel(solution, pattern, dataset)?;
if solution.is_empty() {
break;
}
}
Ok(solution)
}
/// Join solution with pattern in parallel
fn join_with_pattern_parallel(
&self,
solution: Solution,
pattern: &TriplePattern,
dataset: &dyn Dataset,
) -> Result<Solution> {
// Use parallel iterator for large solutions
if solution.len() > self.config.parallel_threshold {
// Propagate scan errors rather than `.unwrap_or_default()` them: a
// dropped `Err` here would silently shrink the BGP result (a wrong
// `200 OK`) exactly on the large-input path where it matters most.
let results: Vec<Binding> = solution
.par_iter()
.map(|binding| self.extend_binding_with_pattern(binding, pattern, dataset))
.collect::<Result<Vec<Vec<Binding>>>>()?
.into_iter()
.flatten()
.collect();
Ok(results)
} else {
// Sequential for small solutions
let mut result = Vec::new();
for binding in solution {
let extensions = self.extend_binding_with_pattern(&binding, pattern, dataset)?;
result.extend(extensions);
}
Ok(result)
}
}
/// Extend binding with pattern matches
fn extend_binding_with_pattern(
&self,
binding: &Binding,
pattern: &TriplePattern,
dataset: &dyn Dataset,
) -> Result<Vec<Binding>> {
let instantiated = self.instantiate_pattern(pattern, binding);
let triples = dataset.find_triples(&instantiated)?;
let mut results = Vec::new();
for (s, p, o) in triples {
if let Some(new_binding) = self.try_extend_binding(binding, pattern, &s, &p, &o) {
results.push(new_binding);
}
}
Ok(results)
}
/// Instantiate pattern with bindings
fn instantiate_pattern(&self, pattern: &TriplePattern, binding: &Binding) -> TriplePattern {
TriplePattern {
subject: self.instantiate_term(&pattern.subject, binding),
predicate: self.instantiate_term(&pattern.predicate, binding),
object: self.instantiate_term(&pattern.object, binding),
}
}
/// Instantiate term with binding
fn instantiate_term(&self, term: &AlgebraTerm, binding: &Binding) -> AlgebraTerm {
match term {
AlgebraTerm::Variable(var) => binding.get(var).cloned().unwrap_or_else(|| term.clone()),
_ => term.clone(),
}
}
/// Try to extend binding with new values
fn try_extend_binding(
&self,
binding: &Binding,
pattern: &TriplePattern,
s: &AlgebraTerm,
p: &AlgebraTerm,
o: &AlgebraTerm,
) -> Option<Binding> {
let mut new_binding = binding.clone();
if !self.try_bind(&mut new_binding, &pattern.subject, s)
|| !self.try_bind(&mut new_binding, &pattern.predicate, p)
|| !self.try_bind(&mut new_binding, &pattern.object, o)
{
return None;
}
Some(new_binding)
}
/// Try to bind variable to value
fn try_bind(
&self,
binding: &mut Binding,
pattern_term: &AlgebraTerm,
value: &AlgebraTerm,
) -> bool {
match pattern_term {
AlgebraTerm::Variable(var) => {
if let Some(existing) = binding.get(var) {
existing == value
} else {
binding.insert(var.clone(), value.clone());
true
}
}
// A bound (non-variable) term must equal the stored value. The parser
// encodes a single-IRI predicate as a length-one property path
// (`PropertyPath::Iri`), whereas the store returns it as a plain
// `Iri`; normalizing that encoding before comparison mirrors the
// Serial path (`execute_pattern_with_dataset` trusts `find_triples`
// and only binds variables). Without this, every bound-predicate BGP
// silently returned zero rows under the Parallel strategy.
_ => normalize_bound_term(pattern_term) == normalize_bound_term(value),
}
}
/// Merge BGP results from parallel execution
pub(crate) fn merge_bgp_results(
&self,
partial_results: Vec<Solution>,
stats: &mut ExecutionStats,
) -> Result<Solution> {
// Use parallel reduction for merging
let merged = partial_results
.into_par_iter()
.reduce(Vec::new, |mut acc, mut partial| {
acc.append(&mut partial);
acc
});
stats.intermediate_results += merged.len();
Ok(merged)
}
/// Execute parallel hash join
fn execute_parallel_join(
&self,
left: &Algebra,
right: &Algebra,
dataset: &dyn Dataset,
context: &ExecutionContext,
stats: &mut ExecutionStats,
) -> Result<Solution> {
// Execute left and right sequentially to avoid borrowing issues with stats
let left_solution = self.execute_parallel_internal(left, dataset, context, stats)?;
let right_solution = self.execute_parallel_internal(right, dataset, context, stats)?;
// Find join variables
let join_vars = self.find_join_variables(&left_solution, &right_solution);
if join_vars.is_empty() {
// Cartesian product
self.parallel_cartesian_product(left_solution, right_solution, stats)
} else {
// Hash join
self.parallel_hash_join(left_solution, right_solution, join_vars, stats)
}
}
/// Find common variables between solutions
fn find_join_variables(&self, left: &Solution, right: &Solution) -> Vec<Variable> {
if left.is_empty() || right.is_empty() {
return vec![];
}
let left_vars: HashSet<_> = left[0].keys().cloned().collect();
let right_vars: HashSet<_> = right[0].keys().cloned().collect();
left_vars.intersection(&right_vars).cloned().collect()
}
/// Parallel hash join implementation
fn parallel_hash_join(
&self,
left: Solution,
right: Solution,
join_vars: Vec<Variable>,
stats: &mut ExecutionStats,
) -> Result<Solution> {
// Build hash table from smaller side in parallel
let (build_side, probe_side) = if left.len() <= right.len() {
(left, right)
} else {
(right, left)
};
// Parallel hash table construction using DashMap
let hash_table: DashMap<Vec<AlgebraTerm>, Vec<Binding>> = DashMap::new();
// Keys are variable-length (filter_map, NO completeness gate),
// mirroring the Serial hash_join contract: a row whose join variable
// is unbound (heterogeneous UNION/OPTIONAL output) lands in the
// shorter-key bucket and still merges with its compatible partners —
// the old `key.len() == join_vars.len()` gate silently dropped it.
build_side.par_iter().for_each(|binding| {
let key: Vec<AlgebraTerm> = join_vars
.iter()
.filter_map(|var| binding.get(var).cloned())
.collect();
hash_table.entry(key).or_default().push(binding.clone());
});
// Parallel probing
let result: Vec<Binding> = probe_side
.par_iter()
.flat_map(|probe_binding| {
let key: Vec<AlgebraTerm> = join_vars
.iter()
.filter_map(|var| probe_binding.get(var).cloned())
.collect();
match hash_table.get(&key) {
Some(matches) => matches
.iter()
.filter_map(|build_binding| {
self.merge_bindings(build_binding, probe_binding)
})
.collect::<Vec<_>>(),
_ => {
vec![]
}
}
})
.collect();
stats.intermediate_results += result.len();
Ok(result)
}
/// Merge two bindings
pub(crate) fn merge_bindings(&self, left: &Binding, right: &Binding) -> Option<Binding> {
let mut merged = left.clone();
for (var, value) in right {
if let Some(existing) = merged.get(var) {
if existing != value {
return None;
}
} else {
merged.insert(var.clone(), value.clone());
}
}
Some(merged)
}
/// Parallel cartesian product
fn parallel_cartesian_product(
&self,
left: Solution,
right: Solution,
stats: &mut ExecutionStats,
) -> Result<Solution> {
let result: Vec<Binding> = left
.par_iter()
.flat_map(|l| {
right
.iter()
.filter_map(|r| self.merge_bindings(l, r))
.collect::<Vec<_>>()
})
.collect();
stats.intermediate_results += result.len();
Ok(result)
}
/// Execute parallel union
fn execute_parallel_union(
&self,
left: &Algebra,
right: &Algebra,
dataset: &dyn Dataset,
context: &ExecutionContext,
stats: &mut ExecutionStats,
) -> Result<Solution> {
// Execute both branches sequentially to avoid borrowing issues with stats
let left_result = self.execute_parallel_internal(left, dataset, context, stats)?;
let right_result = self.execute_parallel_internal(right, dataset, context, stats)?;
// SPARQL UNION has bag semantics: duplicate rows (within or across
// branches) must survive unless the query says DISTINCT. The previous
// parallel_distinct call here silently collapsed them, diverging from
// the Serial path's plain concatenation.
let mut result = left_result;
result.extend(right_result);
stats.intermediate_results += result.len();
Ok(result)
}
/// Parallel distinct operation
pub(crate) fn parallel_distinct(&self, solution: Solution) -> Solution {
// Structured, variable-sorted key — a Display-based joined string
// ("var=term||…") can alias two different bindings when a term itself
// contains the separator.
let seen: DashMap<Vec<(crate::algebra::Variable, String)>, ()> = DashMap::new();
solution
.into_par_iter()
.filter(|binding| {
let mut key: Vec<_> = binding
.iter()
.map(|(var, term)| (var.clone(), format!("{term:?}")))
.collect();
key.sort();
seen.insert(key, ()).is_none()
})
.collect()
}
/// Execute parallel filter
fn execute_parallel_filter(
&self,
pattern: &Algebra,
condition: &Expression,
dataset: &dyn Dataset,
context: &ExecutionContext,
stats: &mut ExecutionStats,
) -> Result<Solution> {
let solution = self.execute_parallel_internal(pattern, dataset, context, stats)?;
// Create expression evaluator for filtering
let extension_registry = context.extension_registry.clone();
// Parallel filtering. A whole-query fault (a typed `UnknownFunctionError`
// or a runtime `BudgetExceeded`) MUST propagate rather than be swallowed
// to `false` — silently dropping the offending rows would return a
// wrongly-shrunk `200 OK`, mirroring the Serial `apply_filter` contract.
// Every other error class (unbound variable, type error, …) is a per-row
// §17.3 evaluation error that excludes just that row. The closure returns
// `Result<Option<Binding>>` so the `Err` case can escape the parallel
// iterator via `collect::<Result<_>>()`.
//
// NOTE (remaining divergence): this evaluator is
// `crate::expression::ExpressionEvaluator`, a *distinct* implementation
// from Serial's dataset-aware `QueryExecutor::evaluate_expression`. It
// cannot evaluate `EXISTS` / `NOT EXISTS` (no dataset access on the rayon
// worker) and raises an *untyped* "Unknown function" error, so those two
// cases still diverge from Serial. Fully unifying the parallel filter
// onto the Serial evaluator is tracked separately.
let filtered: Vec<Binding> = solution
.into_par_iter()
.map(|binding| -> Result<Option<Binding>> {
let mut ctx = BindingContext::new();
for (var, term) in &binding {
ctx.bind(var.as_str(), Term::from_algebra_term(term));
}
let evaluator_with_ctx =
ExpressionEvaluator::with_context(extension_registry.clone(), ctx);
match evaluator_with_ctx.evaluate(condition) {
Ok(term) => {
if term.effective_boolean_value().unwrap_or(false) {
Ok(Some(binding))
} else {
Ok(None)
}
}
Err(e) => {
if e.downcast_ref::<crate::executor::UnknownFunctionError>()
.is_some()
|| e.downcast_ref::<crate::query_governor::BudgetExceeded>()
.is_some()
{
Err(e)
} else {
Ok(None)
}
}
}
})
.collect::<Result<Vec<Option<Binding>>>>()?
.into_iter()
.flatten()
.collect();
stats.intermediate_results += filtered.len();
Ok(filtered)
}
/// Execute parallel order by
fn execute_parallel_order_by(
&self,
pattern: &Algebra,
conditions: &[(Expression, bool)], // (expr, ascending)
dataset: &dyn Dataset,
context: &ExecutionContext,
stats: &mut ExecutionStats,
) -> Result<Solution> {
let mut solution = self.execute_parallel_internal(pattern, dataset, context, stats)?;
// Clone extension registry for use in closure
let extension_registry = context.extension_registry.clone();
// Parallel sort with custom comparator
solution.par_sort_by(|a, b| {
for (expr, ascending) in conditions {
// Create binding contexts
let mut ctx_a = BindingContext::new();
let mut ctx_b = BindingContext::new();
for (var, term) in a {
ctx_a.bind(var.as_str(), Term::from_algebra_term(term));
}
for (var, term) in b {
ctx_b.bind(var.as_str(), Term::from_algebra_term(term));
}
let evaluator_a =
ExpressionEvaluator::with_context(extension_registry.clone(), ctx_a);
let evaluator_b =
ExpressionEvaluator::with_context(extension_registry.clone(), ctx_b);
let val_a = evaluator_a.evaluate(expr).ok();
let val_b = evaluator_b.evaluate(expr).ok();
match (val_a, val_b) {
(Some(a_term), Some(b_term)) => {
let alg_a = a_term.to_algebra_term();
let alg_b = b_term.to_algebra_term();
// Literal pairs use the Serial comparator (numeric
// partition ordered by value); the previous
// Term::cmp path ordered by datatype IRI first, so
// "10"^^xsd:decimal sorted before "5"^^xsd:integer.
let cmp = match (&alg_a, &alg_b) {
(AlgebraTerm::Literal(la), AlgebraTerm::Literal(lb)) => {
crate::executor::queryexecutor_apply_order_by_group::compare_literals(la, lb)
}
(AlgebraTerm::Iri(ia), AlgebraTerm::Iri(ib)) => {
ia.as_str().cmp(ib.as_str())
}
_ => self.compare_algebra_terms(&alg_a, &alg_b),
};
if cmp != std::cmp::Ordering::Equal {
return if *ascending { cmp } else { cmp.reverse() };
}
}
// SPARQL §15.1: unbound/error keys rank lowest, i.e.
// first ascending and last descending.
(Some(_), None) => {
return if *ascending {
std::cmp::Ordering::Greater
} else {
std::cmp::Ordering::Less
}
}
(None, Some(_)) => {
return if *ascending {
std::cmp::Ordering::Less
} else {
std::cmp::Ordering::Greater
}
}
(None, None) => continue,
}
}
std::cmp::Ordering::Equal
});
Ok(solution)
}
/// Compare algebra terms for ordering
pub(crate) fn compare_algebra_terms(
&self,
a: &AlgebraTerm,
b: &AlgebraTerm,
) -> std::cmp::Ordering {
// Convert to internal terms for proper comparison
let term_a = Term::from_algebra_term(a);
let term_b = Term::from_algebra_term(b);
term_a
.partial_cmp(&term_b)
.unwrap_or(std::cmp::Ordering::Equal)
}
/// Execute parallel group by with aggregation
fn execute_parallel_group(
&self,
pattern: &Algebra,
variables: &[Variable],
aggregates: &[(Variable, Aggregate)],
dataset: &dyn Dataset,
context: &ExecutionContext,
stats: &mut ExecutionStats,
) -> Result<Solution> {
let solution = self.execute_parallel_internal(pattern, dataset, context, stats)?;
// Parallel grouping using DashMap
let groups: DashMap<Vec<AlgebraTerm>, Vec<Binding>> = DashMap::new();
solution.par_iter().for_each(|binding| {
let key: Vec<AlgebraTerm> = variables
.iter()
.map(|var| {
binding
.get(var)
.cloned()
.unwrap_or(AlgebraTerm::Variable(var.clone()))
})
.collect();
groups.entry(key).or_default().push(binding.clone());
});
// Parallel aggregation - convert DashMap to Vec for parallel iteration
let groups_vec: Vec<(Vec<AlgebraTerm>, Vec<Binding>)> = groups.into_iter().collect();
let result: Vec<Binding> = groups_vec
.into_par_iter()
.map(|(key, group)| {
let mut result_binding = HashMap::new();
// Add grouping variables
for (i, var) in variables.iter().enumerate() {
if let Some(term) = key.get(i) {
if !matches!(term, AlgebraTerm::Variable(_)) {
result_binding.insert(var.clone(), term.clone());
}
}
}
// Compute aggregates
for (var, agg) in aggregates {
if let Ok(value) = self.compute_aggregate(agg, &group, context) {
result_binding.insert(var.clone(), value);
}
}
result_binding
})
.collect();
stats.intermediate_results += result.len();
Ok(result)
}
/// Compute aggregate value
fn compute_aggregate(
&self,
aggregate: &Aggregate,
group: &[Binding],
context: &ExecutionContext,
) -> Result<AlgebraTerm> {
match aggregate {
Aggregate::Count { expr, distinct } => {
let values =
self.collect_aggregate_values(expr.as_ref(), group, *distinct, context)?;
Ok(AlgebraTerm::Literal(Literal::typed(
values.len().to_string(),
NamedNode::new_unchecked("http://www.w3.org/2001/XMLSchema#integer"),
)))
}
Aggregate::Sum { expr, distinct } => {
let values =
self.collect_aggregate_values(Some(expr), group, *distinct, context)?;
let sum = self.sum_numeric_values(values)?;
Ok(sum)
}
Aggregate::Min { expr, distinct } => {
let values =
self.collect_aggregate_values(Some(expr), group, *distinct, context)?;
values
.into_iter()
.min_by(|a, b| self.compare_algebra_terms(a, b))
.ok_or_else(|| anyhow!("No values for MIN"))
}
Aggregate::Max { expr, distinct } => {
let values =
self.collect_aggregate_values(Some(expr), group, *distinct, context)?;
values
.into_iter()
.max_by(|a, b| self.compare_algebra_terms(a, b))
.ok_or_else(|| anyhow!("No values for MAX"))
}
Aggregate::Avg { expr, distinct } => {
let values =
self.collect_aggregate_values(Some(expr), group, *distinct, context)?;
let sum = self.sum_numeric_values(values.clone())?;
let count = values.len() as f64;
match sum {
AlgebraTerm::Literal(lit) => {
let val = lit.value.parse::<f64>().unwrap_or(0.0);
Ok(AlgebraTerm::Literal(Literal::typed(
(val / count).to_string(),
NamedNode::new_unchecked("http://www.w3.org/2001/XMLSchema#decimal"),
)))
}
_ => Err(anyhow!("Invalid sum for AVG")),
}
}
Aggregate::GroupConcat {
expr,
separator,
distinct,
} => {
let values =
self.collect_aggregate_values(Some(expr), group, *distinct, context)?;
let sep = separator.as_deref().unwrap_or(" ");
let concat = values
.iter()
.map(|v| self.term_to_string(v))
.collect::<Vec<_>>()
.join(sep);
Ok(AlgebraTerm::Literal(Literal::string(concat)))
}
_ => Err(anyhow!("Unsupported aggregate")),
}
}
/// Collect values for aggregation
fn collect_aggregate_values(
&self,
expr: Option<&Expression>,
group: &[Binding],
distinct: bool,
context: &ExecutionContext,
) -> Result<Vec<AlgebraTerm>> {
let extension_registry = context.extension_registry.clone();
let mut values: Vec<AlgebraTerm> = group
.par_iter()
.filter_map(|binding| {
if let Some(expr) = expr {
let mut ctx = BindingContext::new();
for (var, term) in binding {
ctx.bind(var.as_str(), Term::from_algebra_term(term));
}
let evaluator =
ExpressionEvaluator::with_context(extension_registry.clone(), ctx);
evaluator.evaluate(expr).ok().map(|t| t.to_algebra_term())
} else {
// COUNT(*) case
Some(AlgebraTerm::Literal(Literal::string("1")))
}
})
.collect();
if distinct {
values.sort();
values.dedup();
}
Ok(values)
}
/// Sum numeric values
fn sum_numeric_values(&self, values: Vec<AlgebraTerm>) -> Result<AlgebraTerm> {
let sum = values
.into_par_iter()
.filter_map(|term| {
if let AlgebraTerm::Literal(lit) = term {
lit.value.parse::<f64>().ok()
} else {
None
}
})
.sum::<f64>();
Ok(AlgebraTerm::Literal(Literal::typed(
sum.to_string(),
NamedNode::new_unchecked("http://www.w3.org/2001/XMLSchema#decimal"),
)))
}
/// Convert term to string
fn term_to_string(&self, term: &AlgebraTerm) -> String {
match term {
AlgebraTerm::Iri(iri) => iri.as_str().to_string(),
AlgebraTerm::Literal(lit) => lit.value.to_string(),
AlgebraTerm::Variable(var) => format!("?{var}"),
AlgebraTerm::BlankNode(id) => format!("_:{id}"),
AlgebraTerm::QuotedTriple(_) => "<<quoted triple>>".to_string(),
AlgebraTerm::PropertyPath(_) => "<<property path>>".to_string(),
}
}
/// Calculate thread utilization
fn calculate_thread_utilization(&self) -> f64 {
// Simplified calculation - in practice would track actual thread usage
self.thread_pool.current_num_threads() as f64 / self.config.max_threads as f64
}
/// Get parallel execution statistics
pub fn get_stats(&self) -> ParallelStats {
let stats = self.stats.read();
ParallelStats {
parallel_operations: stats.parallel_operations,
work_items_processed: stats.work_items_processed,
thread_utilization: stats.thread_utilization,
parallel_speedup: stats.parallel_speedup,
cache_hits: stats.cache_hits,
cache_misses: stats.cache_misses,
}
}
}