Skip to content

executor: skip probe for empty hash joins - #11001

Open
ChangRui-Ryan wants to merge 4 commits into
pingcap:masterfrom
ChangRui-Ryan:changrui_build_empty
Open

executor: skip probe for empty hash joins#11001
ChangRui-Ryan wants to merge 4 commits into
pingcap:masterfrom
ChangRui-Ryan:changrui_build_empty

Conversation

@ChangRui-Ryan

@ChangRui-Ryan ChangRui-Ryan commented Jul 27, 2026

Copy link
Copy Markdown
Contributor

What problem does this PR solve?

Issue Number: close #11000

Problem Summary

When the build side of a hash join is empty after filtering, the join result may already be known without reading the probe side. However, the current execution pipeline can still scan the entire probe side and perform unnecessary hash lookups against an empty hash table.

For example:

SELECT *
FROM orders
INNER JOIN lineitem
    ON l_comment = o_comment
WHERE o_clerk = 'Clerk#000000000';

The filter produces an empty build side, but the profile shows:

Build actRows:              0
Probe actRows:              59,986,052
lineitem data_scanned_rows: 59,987,779
Query time:                 about 715 ms

This causes unnecessary probe-side I/O, block processing, pipeline scheduling, and hash-table lookup overhead. The same problem also applies to eligible Semi Join cases.

What is changed and how it works

This change allows supported hash joins to terminate the probe side early when the finalized build hash table is empty.

The implementation has two parts:

  1. Track whether the finalized build side is empty.

    • V1 publishes the build-empty state after build finalization.
    • V1 only enables this state when no actual spill has happened.
    • V2 publishes the state after all build workers finish.
    • The check is based on effective hash-table entries, so a build input containing only NULL join keys is also treated as empty.
  2. Skip probe processing at both the join and pipeline levels.

    • At the join level, incoming probe blocks are marked as processed without probing the hash table.
    • At the pipeline level, the probe transform can indicate that its source is no longer needed.
    • PipelineExec then avoids reading the probe source and finishes the transform normally, without relying on source EOF or repeatedly producing empty blocks.
    • This prevents unnecessary local probe scans and avoids repeated lookups against an empty hash table.

The optimization is enabled for:

V1: Inner Join, Semi Join, RightSemi Join
V2: Inner Join, Semi Join

RightSemi Join is not currently supported by Hash Join V2 and therefore falls back to the V1 implementation.

Join types whose output still depends on every probe row, such as AntiSemi Join and LeftOuterSemi Join, are not included in this optimization. V1 also keeps the existing behavior when an actual external join spill has occurred.

Check List

Tests

  • Unit test
  • Integration test
  • Manual test (add detailed scripts or steps below)
  • No code

Side effects

  • Performance regression: Consumes more CPU
  • Performance regression: Consumes more Memory
  • Breaking backward compatibility

Documentation

  • Affects user behaviors
  • Contains syntax changes
  • Contains variable changes
  • Contains experimental features
  • Changes MySQL compatibility

Release note

None

Summary by CodeRabbit

Performance Improvements

  • Improved hash join execution when the build side is empty by avoiding unnecessary probing and source reads.
  • Reduced pipeline work when joins can complete without reading probe data.
  • Preserved probe processing for join types that require it.

Bug Fixes

  • Improved completion and output handling when probe processing is skipped.
  • Corrected behavior for spilled joins with empty hash tables.

Tests

  • Added coverage for empty and null-only build inputs across multiple join types.
  • Added tests confirming skipped sources are not executed.

@ti-chi-bot ti-chi-bot Bot added the release-note-none Denotes a PR that doesn't merit a release note. label Jul 27, 2026
@ti-chi-bot

ti-chi-bot Bot commented Jul 27, 2026

Copy link
Copy Markdown
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by:
Once this PR has been reviewed and has the lgtm label, please assign jinhelin for approval. For more information see the Code Review Process.
Please ensure that each of them provides their approval before proceeding.

The full list of commands accepted by this bot can be found here.

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@ti-chi-bot ti-chi-bot Bot added the size/XL Denotes a PR that changes 500-999 lines, ignoring generated files. label Jul 27, 2026
@coderabbitai

coderabbitai Bot commented Jul 27, 2026

Copy link
Copy Markdown

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Repository UI

Review profile: CHILL

Plan: Pro Plus

Run ID: 9fa92e77-e472-493c-b3f5-91d2c0575a80

📥 Commits

Reviewing files that changed from the base of the PR and between d1f4dd7 and a5142dd.

📒 Files selected for processing (4)
  • dbms/src/DataStreams/HashJoinProbeExec.cpp
  • dbms/src/Interpreters/Join.cpp
  • dbms/src/Interpreters/JoinV2/HashJoin.cpp
  • dbms/src/Operators/HashJoinV2ProbeTransformOp.cpp
💤 Files with no reviewable changes (2)
  • dbms/src/Interpreters/Join.cpp
  • dbms/src/Interpreters/JoinV2/HashJoin.cpp

Included review availability: Your plan provides up to 4 included reviews per hour; 3 remain after this review.


📝 Walkthrough

Walkthrough

Empty-build hash joins now publish probe-skip state, bypass probe processing for eligible join kinds, and prevent pipeline sources from running when transforms can finish without input. Tests cover empty, null-key, filtered, and spilled builds, plus anti-semi behavior.

Changes

Empty-build probe skipping

Layer / File(s) Summary
Build emptiness and skip predicates
dbms/src/Interpreters/Join.*, dbms/src/Interpreters/JoinV2/HashJoin.*
Join implementations record build-side emptiness and expose skip decisions for eligible join kinds.
Probe execution fast paths
dbms/src/DataStreams/HashJoinProbeExec.cpp, dbms/src/Interpreters/Join.cpp, dbms/src/Interpreters/JoinV2/HashJoin.cpp, dbms/src/Operators/*ProbeTransform*
Probe executors finalize or bypass probe processing when the join indicates that probing can be skipped.
Pipeline source lifecycle skipping
dbms/src/Flash/Pipeline/Exec/*, dbms/src/Operators/Operator.h, dbms/src/Operators/*ProbeTransformOp.h, dbms/src/Flash/Pipeline/Exec/tests/gtest_simple_operator.cpp
Transforms report source-skipping capability, and PipelineExec conditionally omits source lifecycle execution.
Join and pipeline validation
dbms/src/Flash/tests/gtest_join_executor.cpp, dbms/src/Flash/tests/gtest_spill_join.cpp
Tests validate empty-build, null-key, filtered, and spilled joins. Anti-semi tests verify that the probe side still runs.

Estimated code review effort: 3 (Moderate) | ~25 minutes

Merge Risk: ⚪ Minimal · up to a5142

This change avoids unnecessary probe-side processing when supported hash joins have an empty build side; no actionable merge-blocking risk remains after normal checks and review.

Sequence Diagram(s)

sequenceDiagram
  participant BuildSide
  participant Join
  participant ProbeTransform
  participant PipelineExec
  participant ProbeSource
  BuildSide->>Join: publish empty build state
  ProbeTransform->>Join: request shouldSkipProbe()
  Join-->>ProbeTransform: return skip decision
  PipelineExec->>ProbeTransform: request shouldSkipSource()
  ProbeTransform-->>PipelineExec: return true
  PipelineExec-->>ProbeSource: skip source lifecycle
  ProbeTransform->>Join: finalize skipped probe
Loading

Poem

A rabbit found the build side bare,
So no probe rows crossed the air.
The source stayed still,
The join closed its bill,
While tests checked each path with care.

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly and concisely describes the primary change: skipping probe processing for empty hash joins.
Description check ✅ Passed The description covers the problem, implementation, supported join types, tests, side effects, documentation, and release note.
Linked Issues check ✅ Passed The changes address issue #11000 by tracking empty builds and skipping unnecessary probe reads for eligible hash joins.
Out of Scope Changes check ✅ Passed The implementation and regression tests are directly related to empty-build hash join probe skipping.
Docstring Coverage ✅ Passed Docstring check was indeterminate for this PR — some files could not be analyzed in time. Not blocking.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick comments (2)
dbms/src/Interpreters/Join.h (1)

250-258: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Use camelCase for newly introduced member names.

The new state variables use snake_case, contrary to the C++ naming guideline. Rename them consistently and update all references:

  • dbms/src/Interpreters/Join.h#L250-L258,449-449: rename build_side_empty to buildSideEmpty.
  • dbms/src/Interpreters/JoinV2/HashJoin.h#L77-L83,156-156: rename build_side_empty to buildSideEmpty.
  • dbms/src/Interpreters/JoinV2/HashJoin.cpp#L468-L468: update the state publication reference.
  • dbms/src/Flash/Pipeline/Exec/PipelineExec.h#L83-L83: rename source_prefix_executed to sourcePrefixExecuted.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@dbms/src/Interpreters/Join.h` around lines 250 - 258, Rename the newly
introduced state members to camelCase and update every reference: in
dbms/src/Interpreters/Join.h lines 250-258 and 449-449, rename build_side_empty
to buildSideEmpty; in dbms/src/Interpreters/JoinV2/HashJoin.h lines 77-83 and
156-156, rename build_side_empty to buildSideEmpty; in
dbms/src/Interpreters/JoinV2/HashJoin.cpp line 468, update the state publication
reference; and in dbms/src/Flash/Pipeline/Exec/PipelineExec.h line 83, rename
source_prefix_executed to sourcePrefixExecuted.

Source: Coding guidelines

dbms/src/Flash/tests/gtest_join_executor.cpp (1)

443-469: 🎯 Functional Correctness | 🔵 Trivial | ⚡ Quick win

Consider adding empty-build coverage for Cross-join and NullAware semi/anti kinds.

Current new tests cover Inner/Semi/RightSemi (skip) and Anti (no-skip) for the standard equi hash join, but there's no test for Cross_LeftOuterAnti/Cross_LeftOuter or NullAware_* kinds with an empty build side. Given the skip logic in Join::joinBlock (Join.cpp Lines 1990-1994) runs before the kind-specific dispatch, a test confirming these families are not incorrectly skipped would close the verification gap raised on the Join.cpp change.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@dbms/src/Flash/tests/gtest_join_executor.cpp` around lines 443 - 469, Add
empty-build coverage alongside EmptyBuildAntiSemiJoinStillReadsProbe for
Cross_LeftOuterAnti, Cross_LeftOuter, and NullAware semi/anti join kinds. Build
requests with an empty build side and non-empty probe side, then verify
execution is not skipped and produces the expected probe-side results, covering
the pre-dispatch skip logic in Join::joinBlock.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Nitpick comments:
In `@dbms/src/Flash/tests/gtest_join_executor.cpp`:
- Around line 443-469: Add empty-build coverage alongside
EmptyBuildAntiSemiJoinStillReadsProbe for Cross_LeftOuterAnti, Cross_LeftOuter,
and NullAware semi/anti join kinds. Build requests with an empty build side and
non-empty probe side, then verify execution is not skipped and produces the
expected probe-side results, covering the pre-dispatch skip logic in
Join::joinBlock.

In `@dbms/src/Interpreters/Join.h`:
- Around line 250-258: Rename the newly introduced state members to camelCase
and update every reference: in dbms/src/Interpreters/Join.h lines 250-258 and
449-449, rename build_side_empty to buildSideEmpty; in
dbms/src/Interpreters/JoinV2/HashJoin.h lines 77-83 and 156-156, rename
build_side_empty to buildSideEmpty; in dbms/src/Interpreters/JoinV2/HashJoin.cpp
line 468, update the state publication reference; and in
dbms/src/Flash/Pipeline/Exec/PipelineExec.h line 83, rename
source_prefix_executed to sourcePrefixExecuted.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Repository UI

Review profile: CHILL

Plan: Pro Plus

Run ID: 33aad696-443c-48c3-b6c6-f48d79afe38e

📥 Commits

Reviewing files that changed from the base of the PR and between 555bb7c and eb60661.

📒 Files selected for processing (15)
  • dbms/src/DataStreams/HashJoinProbeExec.cpp
  • dbms/src/Flash/Pipeline/Exec/PipelineExec.cpp
  • dbms/src/Flash/Pipeline/Exec/PipelineExec.h
  • dbms/src/Flash/Pipeline/Exec/tests/gtest_simple_operator.cpp
  • dbms/src/Flash/tests/gtest_join_executor.cpp
  • dbms/src/Interpreters/Join.cpp
  • dbms/src/Interpreters/Join.h
  • dbms/src/Interpreters/JoinV2/HashJoin.cpp
  • dbms/src/Interpreters/JoinV2/HashJoin.h
  • dbms/src/Operators/HashJoinProbeTransformOp.cpp
  • dbms/src/Operators/HashJoinProbeTransformOp.h
  • dbms/src/Operators/HashJoinV2ProbeTransformOp.cpp
  • dbms/src/Operators/HashJoinV2ProbeTransformOp.h
  • dbms/src/Operators/HashProbeTransformExec.h
  • dbms/src/Operators/Operator.h

@ChangRui-Ryan

Copy link
Copy Markdown
Contributor Author

/retest

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@dbms/src/Flash/tests/gtest_spill_join.cpp`:
- Around line 269-271: Update the test around executeStreams in the spill join
case to verify V1 spill fallback behavior, not just the empty result. Add
assertions that external spilling occurred and that the probe scan or probe
executor was invoked, using the existing test instrumentation and counters,
while preserving the current result assertion.
🪄 Autofix

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Repository UI

Review profile: CHILL

Plan: Pro Plus

Run ID: 871d801b-9eaa-458d-ac64-d4c337559ae7

📥 Commits

Reviewing files that changed from the base of the PR and between eb60661 and 072ff9c.

📒 Files selected for processing (2)
  • dbms/src/Flash/tests/gtest_join_executor.cpp
  • dbms/src/Flash/tests/gtest_spill_join.cpp

Comment thread dbms/src/Flash/tests/gtest_spill_join.cpp
@ChangRui-Ryan

Copy link
Copy Markdown
Contributor Author

/retest

2 similar comments
@ChangRui-Ryan

Copy link
Copy Markdown
Contributor Author

/retest

@ChangRui-Ryan

Copy link
Copy Markdown
Contributor Author

/retest

@ChangRui-Ryan

Copy link
Copy Markdown
Contributor Author

/retest

7 similar comments
@ChangRui-Ryan

Copy link
Copy Markdown
Contributor Author

/retest

@ChangRui-Ryan

Copy link
Copy Markdown
Contributor Author

/retest

@ChangRui-Ryan

Copy link
Copy Markdown
Contributor Author

/retest

@ChangRui-Ryan

Copy link
Copy Markdown
Contributor Author

/retest

@ChangRui-Ryan

Copy link
Copy Markdown
Contributor Author

/retest

@ChangRui-Ryan

Copy link
Copy Markdown
Contributor Author

/retest

@ChangRui-Ryan

Copy link
Copy Markdown
Contributor Author

/retest

@ChangRui-Ryan

Copy link
Copy Markdown
Contributor Author

/retest pull-sanitizer-tsan

@ti-chi-bot

ti-chi-bot Bot commented Aug 19, 2026

Copy link
Copy Markdown
Contributor

@ChangRui-Ryan: The /retest command does not accept any targets.
The following commands are available to trigger required jobs:

/test pull-integration-next-gen
/test pull-integration-next-gen-columnar
/test pull-integration-test
/test pull-unit-next-gen
/test pull-unit-test

The following commands are available to trigger optional jobs:

/test pull-error-log-review
/test pull-sanitizer-asan
/test pull-sanitizer-tsan

Use /test all to run the following jobs that were automatically triggered:

pingcap/tiflash/pull_integration_next_gen
pingcap/tiflash/pull_integration_next_gen_columnar
pingcap/tiflash/pull_integration_test
pingcap/tiflash/pull_unit_next_gen
pingcap/tiflash/pull_unit_test
pull-sanitizer-asan
pull-sanitizer-tsan
Details

In response to this:

/retest pull-sanitizer-tsan

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@wuhuizuo

Copy link
Copy Markdown
Contributor

/retest


Block HashJoinProbeExec::probe()
{
if (probe_process_info.all_rows_joined_finish && join->shouldSkipProbe())

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why need to check probe_process_info.all_rows_joined_finish here?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

After tracing the execution order, this check is redundant in the current flow. HashJoinProbeExec enters the probe stage only after waitUntilAllBuildFinished(). If shouldSkipProbe() is true, the build side was already finalized as empty before the first probe call, so no probe block can have been loaded into probe_process_info; all_rows_joined_finish is therefore necessarily true. If the build side is non-empty, shouldSkipProbe() remains false for the whole probe stage.
I originally kept the condition to make the state-machine precondition explicit and defensive, but it is not needed for the current correctness. I will simplify it as suggested.

block = {};
return OperatorStatus::HAS_OUTPUT;
}
if unlikely (probe_context.isAllFinished() && join_ptr->shouldSkipProbe())

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it looks to me that there is no need to check probe_context.isAllFinished()?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ditto. Similar to the legacy HashJoinProbeExec path, this check is redundant under the current HashJoin V2 execution ordering. The probe pipeline is scheduled only after the build pointer-table event has completed and published build_side_empty. If shouldSkipProbe() is true when this probe transform starts, no probe block can have been accepted into probe_context, so probe_context.isAllFinished() is necessarily true. If the build side is non-empty, shouldSkipProbe() remains false throughout the probe stage.

I originally kept the condition to make the state-machine precondition explicit and defensive, but it is not needed for the current correctness. I will simplify it as suggested.

if (auto ret = probe_transform->tryFillProcessInfoInProbeStage(probe_process_info);
ret != OperatorStatus::HAS_OUTPUT)
return ret;
if (!probe_transform->shouldSkipProbe())

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

how about check probe_transform->shouldSkipProbe() at the begining of this method, and just set block to {} and return OperatorStatus::HAS_OUTPUT if shouldSkipProbe is true.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is different from the redundant state checks above. Returning {} directly here would bypass the completion state machine of the legacy Join implementation used by HashJoinProbeTransformOp.

In particular, it would skip finishOneProbe() for every probe worker and finalizeProbe() for the last one, so active_probe_threads would not reach zero and wait_probe_finished_future would never be finished. It would also bypass the existing post-probe transitions, such as scan-after-probe and restore handling.

For example, with an empty-build inner join and two probe workers, both probe transforms could emit EOF immediately while neither decrements the shared probe-worker count. The join would never observe probe completion.

The current code avoids reading any new probe input, but still enters onOutput() to reuse the normal completion and finalization path.

{
join_ptr->finishOneProbe(op_index);
probe_context.input_is_finished = true;
block = join_ptr->probeLastResultBlock(op_index);

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why not just set block to {}

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

probeLastResultBlock() is needed by the normal source-EOF path to drain a result block buffered by earlier probe processing. In this empty-build fast path, however, the probe pipeline is scheduled only after the build pointer-table event, and the source is skipped before any probe block can be accepted into this transform. For the skip-eligible V2 join kinds (Inner and Semi), there can be no independently buffered final result in this case.

Therefore, probeLastResultBlock() is guaranteed to be empty here, and setting block to {} directly makes the logical EOF explicit. I will simplify it as suggested.

Stopwatch all_watch;
SCOPE_EXIT({ probe_workers_data[stream_index].probe_time += all_watch.elapsedFromLastTime(); });

if unlikely (shouldSkipProbe())

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why probeBlock is called if shouldSkipProbe is true?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Under the current HashJoin V2 execution ordering, this branch is unreachable when shouldSkipProbe() is true. The probe pipeline is scheduled only after the build pointer-table event, and HashJoinV2ProbeTransformOp::tryOutputImpl() completes the probe worker before any probe block can be accepted into probe_context or passed to HashJoin::probeBlock().

This branch was added as a defensive fast path for a hypothetical caller that bypasses the probe transform and invokes probeBlock() directly. Such a caller would still produce the correct result by probing the empty hash table; it would only lose this extra optimization.

To keep the implementation focused on the actual pipeline path, I will remove this redundant branch as suggested.

Comment thread dbms/src/Interpreters/Join.cpp Outdated
return {};
}

if unlikely (shouldSkipProbe())

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ditto

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ditto for the legacy Join::joinBlock() path. HashJoinProbeExec::probe() and HashJoinProbeTransformOp::tryOutputImpl() both handle shouldSkipProbe() before a probe block is passed to Join::joinBlock(), so this branch is unreachable under the current execution flow.

It was only a defensive fast path for a hypothetical direct caller of joinBlock(). Removing it does not affect correctness; such a caller would still produce an empty result by probing the empty hash table, at the cost of unnecessary work.

I will remove it as well to keep the optimization focused on the actual probe transform and pipeline paths.

@ChangRui-Ryan

Copy link
Copy Markdown
Contributor Author

/retest

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

release-note-none Denotes a PR that doesn't merit a release note. size/XL Denotes a PR that changes 500-999 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Avoid unnecessary probe-side MPP work for empty-build hash joins

3 participants