Project
Loading...
Searching...
No Matches
ComputingQuotaEvaluator.h
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
12#ifndef O2_COMPUTINGQUOTAEVALUATOR_H_
13#define O2_COMPUTINGQUOTAEVALUATOR_H_
14
17
18#include <cstdint>
19#include <functional>
20#include <array>
21#include <vector>
22#include <cstddef>
23
24using uv_loop_t = struct uv_loop_s;
25using uv_timer_t = struct uv_timer_s;
26
27namespace o2::framework
28{
29struct ServiceRegistry;
30
32{
33 public:
34 // Maximum number of offers this evaluator can hold
35 static constexpr int MAX_INFLIGHT_OFFERS = 16;
40 bool selectOffer(int task, ComputingQuotaRequest const& request, uint64_t now);
43 void consume(int taskId,
44 ComputingQuotaConsumer& consumed,
45 std::function<void(ComputingQuotaOffer const& accumulatedConsumed, ComputingQuotaStats&)>& reportConsumedOffer);
47 void dispose(int taskId);
51 void handleExpired(std::function<void(ComputingQuotaOffer const&, ComputingQuotaStats const&)> reportExpired);
53 void updateOffers(std::vector<ComputingQuotaOffer>& offers, uint64_t now);
54
56 std::array<ComputingQuotaOffer, MAX_INFLIGHT_OFFERS> mOffers;
58 std::vector<ComputingQuotaOfferRef> mExpiredOffers;
60 std::array<ComputingQuotaInfo, MAX_INFLIGHT_OFFERS> mInfos;
64};
65
66} // namespace o2::framework
67
68#endif // O2_COMPUTINGQUOTAEVALUATOR_H_
struct uv_timer_s uv_timer_t
struct uv_loop_s uv_loop_t
void consume(int taskId, ComputingQuotaConsumer &consumed, std::function< void(ComputingQuotaOffer const &accumulatedConsumed, ComputingQuotaStats &)> &reportConsumedOffer)
void updateOffers(std::vector< ComputingQuotaOffer > &offers, uint64_t now)
now the time (e.g. uv_now) when invoked.
std::array< ComputingQuotaInfo, MAX_INFLIGHT_OFFERS > mInfos
Information about a given computing offer (e.g. when it was started to be used)
bool selectOffer(int task, ComputingQuotaRequest const &request, uint64_t now)
void handleExpired(std::function< void(ComputingQuotaOffer const &, ComputingQuotaStats const &)> reportExpired)
void dispose(int taskId)
Dispose offers for a given taskId.
std::array< ComputingQuotaOffer, MAX_INFLIGHT_OFFERS > mOffers
All the available offerts.
std::vector< ComputingQuotaOfferRef > mExpiredOffers
The offers which expired and need to be given back.
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
std::function< OfferScore(ComputingQuotaOffer const &offer, ComputingQuotaOffer const &accumulated)> ComputingQuotaRequest
std::function< void(int id, std::array< ComputingQuotaOffer, 16 > &, ComputingQuotaStats &, std::function< void(ComputingQuotaOffer const &, ComputingQuotaStats &stats)>)> ComputingQuotaConsumer
Statistics on the offers consumed, expired.