Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update PostProcessing.md with regards to SOR and EOR triggers #2415

Merged
merged 1 commit into from
Sep 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions doc/PostProcessing.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,10 +152,10 @@ A postprocessing task can access custom parameters declared in the configuration

Each of the three methods can be invoked by one or more triggers. Below are listed the possible options (case insensitive).

* `"sor"` or `"startofrun"` - Start Of Run
* `"eor"` or `"endofrun"` - End Of Run
* `"sof"` or `"startoffill"` - Start Of Fill
* `"eof"` or `"endoffill"` - End Of Fill
* `"sor"` or `"startofrun"` - start of a **different** run (useful for long-running post-processing which observes many data taking runs). Please ensure that the configuration file includes a kafka broker.
* `"eor"` or `"endofrun"` - end of a **different** run (useful for long-running post-processing which observes many data taking runs). Please ensure that the configuration file includes a kafka broker.
* `"sof"` or `"startoffill"` - Start Of Fill (not implemented yet)
* `"eof"` or `"endoffill"` - End Of Fill (not implemented yet)
* `"<x><sec/min/hour>"` - Periodic - triggers when a specified period of time passes. For example: "5min", "0.001 seconds", "10sec", "2hours".
* `"newobject:[qcdb/ccdb]:<path>"` - New Object - triggers when an object in QCDB or CCDB is updated (applicable for synchronous processing). For example: `"newobject:qcdb:qc/TST/MO/QcTask/Example"`
* `"foreachobject:[qcdb/ccdb]:<path>"` - For Each Object - triggers for each object in QCDB or CCDB which matches the activity indicated in the QC config file (applicable for asynchronous processing).
Expand Down
Loading