Project
Loading...
Searching...
No Matches
WorkflowCustomizationHelpers.cxx
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
13#include <string>
14#include <cstdlib>
15#include <unistd.h>
16#include <fmt/format.h>
17
18namespace
19{
20std::string defaultIPCFolder()
21{
22#ifdef __linux__
23 char const* channelPrefix = getenv("ALIEN_PROC_ID");
24 if (channelPrefix) {
25 return fmt::format("@dpl_{}_", channelPrefix);
26 }
27 return "@";
28#else
30 char const* channelPrefix = getenv("TMPDIR");
31 if (channelPrefix) {
32 return {channelPrefix};
33 }
34 return access("/tmp", W_OK) == 0 ? "/tmp" : ".";
35#endif
36}
37} // namespace
38
39namespace o2::framework
40{
41
43{
44 return {{{"readers", VariantType::Int64, 1ll, {"number of parallel readers to use"}},
45 {"spawners", VariantType::Int64, 1ll, {"number of parallel spawners to use"}},
46 {"pipeline", VariantType::String, "", {"override default pipeline size"}},
47 {"clone", VariantType::String, "", {"clone processors from a template"}},
48 {"labels", VariantType::String, "", {"add labels to dataprocessors"}},
49 {"workflow-suffix", VariantType::String, "", {"suffix to add to all dataprocessors"}},
50
51 // options for TF rate limiting
52 {"timeframes-rate-limit-ipcid", VariantType::String, "-1", {"Suffix for IPC channel for metric-feedback, -1 = disable"}},
53
54 // options for AOD rate limiting
55 {"aod-memory-rate-limit", VariantType::Int64, 0LL, {"Rate limit AOD processing based on memory"}},
56
57 // options for the AOD reader
58 // aod-file needs to be available as workflow option, because we
59 // can configure the workflow based on the contents of the first file.
60 {"aod-file", VariantType::String, "", {"Input AOD file"}},
61 // options for AOD writer
62 {"aod-writer-json", VariantType::String, "", {"Name of the json configuration file"}},
63 {"aod-writer-resdir", VariantType::String, "", {"Name of the output directory"}},
64 {"aod-writer-resfile", VariantType::String, "", {"Default name of the output file"}},
65 {"aod-writer-maxfilesize", VariantType::Float, 0.0f, {"Maximum size of an output file in megabytes"}},
66 {"aod-writer-resmode", VariantType::String, "RECREATE", {"Creation mode of the result files: NEW, CREATE, RECREATE, UPDATE"}},
67 {"aod-writer-ntfmerge", VariantType::Int, -1, {"Number of time frames to merge into one file"}},
68 {"aod-writer-keep", VariantType::String, "", {"Comma separated list of ORIGIN/DESCRIPTION/SUBSPECIFICATION:treename:col1/col2/..:filename"}},
69
70 {"fairmq-rate-logging", VariantType::Int, 0, {"Rate logging for FairMQ channels"}},
71 {"fairmq-recv-buffer-size", VariantType::Int, 4, {"recvBufferSize option for FairMQ channels"}},
72 {"fairmq-send-buffer-size", VariantType::Int, 4, {"sendBufferSize option for FairMQ channels"}},
74 {"fairmq-ipc-prefix", VariantType::String, defaultIPCFolder(), {"Prefix for FairMQ channels location"}},
75
76 {"forwarding-policy", VariantType::String, "dangling", {"Which messages to forward."
77 " *dangling*: dangling outputs,"
78 " all: all messages,"
79 " none: no forwarding - it will complain if you try to create dangling outputs"}},
80 {"forwarding-destination",
82 "drop",
83 {"Destination for forwarded messages."
84 " drop: simply drop them,"
85 " file: write to file,"
86 " fairmq: send to output proxy"}}}};
87}
88} // namespace o2::framework
GLuint GLint GLboolean GLint GLenum access
Definition glcorearb.h:2196
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
static std::vector< ConfigParamSpec > requiredWorkflowOptions()