57class RPageSynchronizingSink :
public RPageSink {
60 RPageSink *fInnerSink;
64 explicit RPageSynchronizingSink(RPageSink &
inner, std::mutex &mutex)
65 : RPageSink(
inner.GetNTupleName(),
inner.GetWriteOptions()), fInnerSink(&
inner), fMutex(&mutex)
71 RPageSynchronizingSink(
const RPageSynchronizingSink &) =
delete;
72 RPageSynchronizingSink &
operator=(
const RPageSynchronizingSink &) =
delete;
74 const RNTupleDescriptor &GetDescriptor()
const final {
return fInnerSink->GetDescriptor(); }
76 NTupleSize_t GetNEntries()
const final {
return fInnerSink->GetNEntries(); }
78 ColumnHandle_t AddColumn(DescriptorId_t, RColumn &)
final {
return {}; }
80 void UpdateSchema(
const RNTupleModelChangeset &, NTupleSize_t)
final
84 void UpdateExtraTypeInfo(
const RExtraTypeInfoDescriptor &)
final
89 void CommitSuppressedColumn(ColumnHandle_t handle)
final { fInnerSink->CommitSuppressedColumn(handle); }
90 void CommitPage(ColumnHandle_t,
const RPage &)
final
94 void CommitSealedPage(DescriptorId_t,
const RSealedPage &)
final
98 void CommitSealedPageV(std::span<RPageStorage::RSealedPageGroup> ranges)
final
100 fInnerSink->CommitSealedPageV(ranges);
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
115 RSinkGuard GetSinkGuard()
final {
return RSinkGuard(fMutex); }
131 std::unique_ptr<RPageSink>
sink)
132 : fSink(std::
move(
sink)), fModel(std::
move(model)), fMetrics(
"RNTupleParallelWriter")
134 if (
fModel->GetRegisteredSubfieldNames().size() > 0) {
135 throw RException(
R__FAIL(
"cannot create an RNTupleParallelWriter from a model with registered subfields"));
153 if (fModel->IsExpired())
156 for (
const auto &context : fFillContexts) {
157 if (!context.expired()) {
163 fSink->CommitClusterGroup();
164 fSink->CommitDataset();
168std::unique_ptr<ROOT::RNTupleParallelWriter>
181std::unique_ptr<ROOT::RNTupleParallelWriter>
188 R__FAIL(
"RNTupleParallelWriter only supports writing to a ROOT file. Cannot write into a directory "
189 "that is not backed by a file"));
191 if (!file->IsBinary()) {
192 throw RException(
R__FAIL(
"RNTupleParallelWriter only supports writing to a ROOT file. Cannot write into " +
193 std::string(file->GetName())));
195 if (!file->IsWritable()) {
197 "' given to RNTupleParallelWriter is not writable. Open it with 'UPDATE' or 'RECREATE' "
198 "if you want to write into it."));
211 std::lock_guard
g(fMutex);
213 auto model = fModel->Clone();
215 std::make_unique<ROOT::Internal::RPageSinkBuf>(std::make_unique<RPageSynchronizingSink>(*fSink, fSinkMutex));
220 fFillContexts.push_back(context);
225 context->fZipTasks = std::make_unique<ROOT::Experimental::Internal::RNTupleImtTaskScheduler>();
226 context->fSink->SetTaskScheduler(context->fZipTasks.get());
#define R__FAIL(msg)
Short-hand to return an RResult<T> in an error state; the RError is implicitly converted into RResult...
#define R__LOG_ERROR(...)
Binding & operator=(OUT(*fun)(void))
void ObserveMetrics(RNTupleMetrics &observee)
A column is a storage-backed array of a simple, fixed-size type, from which pages can be mapped into ...
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 page is a slice of a column that is mapped into memory.
Base class for all ROOT issued exceptions.
const RError & GetError() const
The on-storage metadata of an RNTuple.
A context for filling entries (data) into clusters of an RNTuple.
The RNTupleModel encapulates the schema of an RNTuple.
A writer to fill an RNTuple from multiple contexts.
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 RNTuple.
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 RNTuple to the existing file.
Experimental::Detail::RNTupleMetrics fMetrics
void CommitDataset()
Automatically called by the destructor.
std::unique_ptr< ROOT::Internal::RPageSink > fSink
The final RPageSink that represents the synchronization point.
RNTupleParallelWriter(std::unique_ptr< ROOT::RNTupleModel > model, std::unique_ptr< ROOT::Internal::RPageSink > sink)
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.
Common user-tunable settings for storing RNTuples.
bool GetUseBufferedWrite() const
Describe directory structure in memory.
ROOT::RLogChannel & NTupleLog()
Log channel for RNTuple diagnostics.
Bool_t IsImplicitMTEnabled()
Returns true if the implicit multi-threading in ROOT is enabled.
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