Logo ROOT  
Reference Guide
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Loading...
Searching...
No Matches
RNTupleParallelWriter.cxx
Go to the documentation of this file.
1/// \file RNTupleParallelWriter.cxx
2/// \ingroup NTuple ROOT7
3/// \author Jonas Hahnfeld <jonas.hahnfeld@cern.ch>
4/// \date 2024-02-01
5/// \warning This is part of the ROOT 7 prototype! It will change without notice. It might trigger earthquakes. Feedback
6/// is welcome!
7
8/*************************************************************************
9 * Copyright (C) 1995-2024, Rene Brun and Fons Rademakers. *
10 * All rights reserved. *
11 * *
12 * For the licensing terms see $ROOTSYS/LICENSE. *
13 * For the list of contributors see $ROOTSYS/README/CREDITS. *
14 *************************************************************************/
15
17
18#include <ROOT/RNTupleModel.hxx>
20#include <ROOT/RPageSinkBuf.hxx>
21#include <ROOT/RPageStorage.hxx>
23
24#include <TDirectory.h>
25#include <TError.h>
26#include <TFile.h>
27
28namespace {
29
38
39/// An internal RPageSink that enables multiple RNTupleFillContext to write into a single common RPageSink.
40///
41/// The setup with two contexts looks as follows:
42///
43/// +------ owned by RNTupleFillContext ------+
44/// | |
45/// RPageSinkBuf --- forwards to ---> RPageSynchronizingSink ---+
46/// (and owns) |
47/// (via raw fInnerSink ptr) +-- RPageSink (usually a persistent sink)
48/// |
49/// RPageSinkBuf --- forwards to ---> RPageSynchronizingSink ---+
50/// | (and owns) |
51/// | |
52/// +------ owned by RNTupleFillContext ------+
53///
54/// The mutex used by the synchronizing sinks is owned by the RNTupleParallelWriter that also owns the original model,
55/// the "final" sink (usually a persistent sink) and keeps weak_ptr's of the contexts (to make sure they are destroyed
56/// before the writer is destructed).
57class RPageSynchronizingSink : public RPageSink {
58private:
59 /// The wrapped inner sink, not owned by this class.
60 RPageSink *fInnerSink;
61 std::mutex *fMutex;
62
63public:
64 explicit RPageSynchronizingSink(RPageSink &inner, std::mutex &mutex)
65 : RPageSink(inner.GetNTupleName(), inner.GetWriteOptions()), fInnerSink(&inner), fMutex(&mutex)
66 {
67 // Do not observe the sink's metrics: It will contain some counters for all threads, which is misleading for the
68 // users.
69 // fMetrics.ObserveMetrics(fSink->GetMetrics());
70 }
71 RPageSynchronizingSink(const RPageSynchronizingSink &) = delete;
72 RPageSynchronizingSink &operator=(const RPageSynchronizingSink &) = delete;
73
74 const RNTupleDescriptor &GetDescriptor() const final { return fInnerSink->GetDescriptor(); }
75
76 NTupleSize_t GetNEntries() const final { return fInnerSink->GetNEntries(); }
77
78 ColumnHandle_t AddColumn(DescriptorId_t, RColumn &) final { return {}; }
79 void InitImpl(ROOT::RNTupleModel &) final {}
80 void UpdateSchema(const RNTupleModelChangeset &, NTupleSize_t) final
81 {
82 throw ROOT::RException(R__FAIL("UpdateSchema not supported via RPageSynchronizingSink"));
83 }
84 void UpdateExtraTypeInfo(const RExtraTypeInfoDescriptor &) final
85 {
86 throw ROOT::RException(R__FAIL("UpdateExtraTypeInfo not supported via RPageSynchronizingSink"));
87 }
88
89 void CommitSuppressedColumn(ColumnHandle_t handle) final { fInnerSink->CommitSuppressedColumn(handle); }
90 void CommitPage(ColumnHandle_t, const RPage &) final
91 {
92 throw ROOT::RException(R__FAIL("should never commit single pages via RPageSynchronizingSink"));
93 }
94 void CommitSealedPage(DescriptorId_t, const RSealedPage &) final
95 {
96 throw ROOT::RException(R__FAIL("should never commit sealed pages via RPageSynchronizingSink"));
97 }
98 void CommitSealedPageV(std::span<RPageStorage::RSealedPageGroup> ranges) final
99 {
100 fInnerSink->CommitSealedPageV(ranges);
101 }
102 std::uint64_t CommitCluster(NTupleSize_t nNewEntries) final { return fInnerSink->CommitCluster(nNewEntries); }
103 RStagedCluster StageCluster(NTupleSize_t nNewEntries) final { return fInnerSink->StageCluster(nNewEntries); }
104 void CommitStagedClusters(std::span<RStagedCluster> clusters) final { fInnerSink->CommitStagedClusters(clusters); }
105 void CommitClusterGroup() final
106 {
107 throw ROOT::RException(R__FAIL("should never commit cluster group via RPageSynchronizingSink"));
108 }
109 void CommitDatasetImpl() final
110 {
111 throw ROOT::RException(R__FAIL("should never commit dataset via RPageSynchronizingSink"));
112 }
113
114 RSinkGuard GetSinkGuard() final { return RSinkGuard(fMutex); }
115};
116
117} // namespace
118
120 std::unique_ptr<Internal::RPageSink> sink)
121 : fSink(std::move(sink)), fModel(std::move(model)), fMetrics("RNTupleParallelWriter")
122{
123 if (fModel->GetRegisteredSubfieldNames().size() > 0) {
124 throw RException(R__FAIL("cannot create an RNTupleParallelWriter from a model with registered subfields"));
125 }
126 fModel->Freeze();
127 fSink->Init(*fModel.get());
128 fMetrics.ObserveMetrics(fSink->GetMetrics());
129}
130
132{
133 try {
134 CommitDataset();
135 } catch (const RException &err) {
136 R__LOG_ERROR(ROOT::Internal::NTupleLog()) << "failure committing ntuple: " << err.GetError().GetReport();
137 }
138}
139
141{
142 if (fModel->IsExpired())
143 return;
144
145 for (const auto &context : fFillContexts) {
146 if (!context.expired()) {
147 throw RException(R__FAIL("RNTupleFillContext has not been destructed"));
148 }
149 }
150
151 // Now commit all clusters as a cluster group and then the dataset.
152 fSink->CommitClusterGroup();
153 fSink->CommitDataset();
154 fModel->Expire();
155}
156
157std::unique_ptr<ROOT::Experimental::RNTupleParallelWriter>
158ROOT::Experimental::RNTupleParallelWriter::Recreate(std::unique_ptr<ROOT::RNTupleModel> model,
159 std::string_view ntupleName, std::string_view storage,
160 const ROOT::RNTupleWriteOptions &options)
161{
162 if (!options.GetUseBufferedWrite()) {
163 throw RException(R__FAIL("parallel writing requires buffering"));
164 }
165
167 // Cannot use std::make_unique because the constructor of RNTupleParallelWriter is private.
168 return std::unique_ptr<RNTupleParallelWriter>(new RNTupleParallelWriter(std::move(model), std::move(sink)));
169}
170
171std::unique_ptr<ROOT::Experimental::RNTupleParallelWriter>
172ROOT::Experimental::RNTupleParallelWriter::Append(std::unique_ptr<ROOT::RNTupleModel> model,
173 std::string_view ntupleName, TDirectory &fileOrDirectory,
174 const ROOT::RNTupleWriteOptions &options)
175{
176 auto file = fileOrDirectory.GetFile();
177 if (!file) {
178 throw RException(
179 R__FAIL("RNTupleParallelWriter only supports writing to a ROOT file. Cannot write into a directory "
180 "that is not backed by a file"));
181 }
182 if (!file->IsBinary()) {
183 throw RException(R__FAIL("RNTupleParallelWriter only supports writing to a ROOT file. Cannot write into " +
184 std::string(file->GetName())));
185 }
186 if (!options.GetUseBufferedWrite()) {
187 throw RException(R__FAIL("parallel writing requires buffering"));
188 }
189
190 auto sink = std::make_unique<Internal::RPageSinkFile>(ntupleName, fileOrDirectory, options);
191 // Cannot use std::make_unique because the constructor of RNTupleParallelWriter is private.
192 return std::unique_ptr<RNTupleParallelWriter>(new RNTupleParallelWriter(std::move(model), std::move(sink)));
193}
194
195std::shared_ptr<ROOT::Experimental::RNTupleFillContext> ROOT::Experimental::RNTupleParallelWriter::CreateFillContext()
196{
197 std::lock_guard g(fMutex);
198
199 auto model = fModel->Clone();
200 auto sink = std::make_unique<Internal::RPageSinkBuf>(std::make_unique<RPageSynchronizingSink>(*fSink, fSinkMutex));
201
202 // Cannot use std::make_shared because the constructor of RNTupleFillContext is private. Also it would mean that the
203 // (direct) memory of all contexts stays around until the vector of weak_ptr's is cleared.
204 std::shared_ptr<RNTupleFillContext> context(new RNTupleFillContext(std::move(model), std::move(sink)));
205 fFillContexts.push_back(context);
206 return context;
207}
#define R__FAIL(msg)
Short-hand to return an RResult<T> in an error state; the RError is implicitly converted into RResult...
Definition RError.hxx:299
#define R__LOG_ERROR(...)
Definition RLogger.hxx:357
#define g(i)
Definition RSha256.hxx:105
Binding & operator=(OUT(*fun)(void))
void ObserveMetrics(RNTupleMetrics &observee)
static std::unique_ptr< RPageSink > Create(std::string_view ntupleName, std::string_view location, const ROOT::RNTupleWriteOptions &options=ROOT::RNTupleWriteOptions())
Guess the concrete derived page source from the location.
Abstract interface to write data into an ntuple.
A context for filling entries (data) into clusters of an RNTuple.
A writer to fill an RNTuple from multiple contexts.
static std::unique_ptr< RNTupleParallelWriter > Append(std::unique_ptr< ROOT::RNTupleModel > model, std::string_view ntupleName, TDirectory &fileOrDirectory, const ROOT::RNTupleWriteOptions &options=ROOT::RNTupleWriteOptions())
Append an ntuple to the existing file, which must not be accessed while data is filled into any creat...
std::unique_ptr< Internal::RPageSink > fSink
The final RPageSink that represents the synchronization point.
static std::unique_ptr< RNTupleParallelWriter > Recreate(std::unique_ptr< ROOT::RNTupleModel > model, std::string_view ntupleName, std::string_view storage, const ROOT::RNTupleWriteOptions &options=ROOT::RNTupleWriteOptions())
Recreate a new file and return a writer to write an ntuple.
std::shared_ptr< RNTupleFillContext > CreateFillContext()
Create a new RNTupleFillContext that can be used to fill entries and prepare clusters in parallel.
std::unique_ptr< ROOT::RNTupleModel > fModel
The original RNTupleModel connected to fSink; needs to be destructed before it.
RNTupleParallelWriter(std::unique_ptr< ROOT::RNTupleModel > model, std::unique_ptr< Internal::RPageSink > sink)
void CommitDataset()
Automatically called by the destructor.
A column is a storage-backed array of a simple, fixed-size type, from which pages can be mapped into ...
Definition RColumn.hxx:40
A page is a slice of a column that is mapped into memory.
Definition RPage.hxx:46
Base class for all ROOT issued exceptions.
Definition RError.hxx:79
const RError & GetError() const
Definition RError.hxx:84
Field specific extra type information from the header / extenstion header.
The on-storage metadata of an RNTuple.
The RNTupleModel encapulates the schema of an ntuple.
Common user-tunable settings for storing RNTuples.
Describe directory structure in memory.
Definition TDirectory.h:45
ROOT::RLogChannel & NTupleLog()
Log channel for RNTuple diagnostics.
std::uint64_t DescriptorId_t
Distriniguishes elements of the same type within a descriptor, e.g. different fields.
std::uint64_t NTupleSize_t
Integer type long enough to hold the maximum number of entries in a column.
The incremental changes to a RNTupleModel