Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RPageStorageDaos.hxx
Go to the documentation of this file.
1/// \file ROOT/RPageStorageDaos.hxx
2/// \ingroup NTuple ROOT7
3/// \author Javier Lopez-Gomez <j.lopez@cern.ch>
4/// \date 2020-11-03
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-2021, 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
16#ifndef ROOT7_RPageStorageDaos
17#define ROOT7_RPageStorageDaos
18
19#include <ROOT/RError.hxx>
20#include <ROOT/RPageStorage.hxx>
22#include <ROOT/RNTupleZip.hxx>
23#include <ROOT/RStringView.hxx>
24
25#include <array>
26#include <atomic>
27#include <cstdio>
28#include <memory>
29#include <string>
30
31namespace ROOT {
32
33namespace Experimental {
34namespace Detail {
35
36class RCluster;
37class RClusterPool;
38class RPageAllocatorHeap;
39class RPagePool;
40class RDaosPool;
41class RDaosContainer;
42
43
44// clang-format off
45/**
46\class ROOT::Experimental::Detail::RDaosNTupleAnchor
47\ingroup NTuple
48\brief Entry point for an RNTuple in a DAOS container. It encodes essential
49information to read the ntuple; currently, it contains (un)compressed size of
50the header/footer blobs and the object class for user data OIDs.
51The length of a serialized anchor cannot be greater than the value returned by the `GetSize` function.
52*/
53// clang-format on
55 /// Allows for evolving the struct in future versions
56 std::uint32_t fVersion = 0;
57 /// The size of the compressed ntuple header
58 std::uint32_t fNBytesHeader = 0;
59 /// The size of the uncompressed ntuple header
60 std::uint32_t fLenHeader = 0;
61 /// The size of the compressed ntuple footer
62 std::uint32_t fNBytesFooter = 0;
63 /// The size of the uncompressed ntuple footer
64 std::uint32_t fLenFooter = 0;
65 /// The object class for user data OIDs, e.g. `SX`
66 std::string fObjClass{};
67
68 bool operator ==(const RDaosNTupleAnchor &other) const {
69 return fVersion == other.fVersion &&
71 fLenHeader == other.fLenHeader &&
73 fLenFooter == other.fLenFooter &&
74 fObjClass == other.fObjClass;
75 }
76
77 std::uint32_t Serialize(void *buffer) const;
78 RResult<std::uint32_t> Deserialize(const void *buffer, std::uint32_t bufSize);
79
80 static std::uint32_t GetSize();
81};
82
83// clang-format off
84/**
85\class ROOT::Experimental::Detail::RPageSinkDaos
86\ingroup NTuple
87\brief Storage provider that writes ntuple pages to into a DAOS container
88
89Currently, an object is allocated for each page + 3 additional objects (anchor/header/footer).
90*/
91// clang-format on
92class RPageSinkDaos : public RPageSink {
93private:
94 std::unique_ptr<RPageAllocatorHeap> fPageAllocator;
95
96 /// \brief Underlying DAOS container. An internal `std::shared_ptr` keep the pool connection alive.
97 /// ISO C++ ensures the correct destruction order, i.e., `~RDaosContainer` is invoked first
98 /// (which calls `daos_cont_close()`; the destructor for the `std::shared_ptr<RDaosPool>` is invoked
99 /// after (which calls `daos_pool_disconect()`).
100 std::unique_ptr<RDaosContainer> fDaosContainer;
101 /// OID for the next committed page; it is automatically incremented in `CommitSealedPageImpl()`
102 std::atomic<std::uint64_t> fOid{0};
103 /// \brief A URI to a DAOS pool of the form 'daos://pool-uuid:svc_replicas/container-uuid'
104 std::string fURI;
105 /// Tracks the number of bytes committed to the current cluster
106 std::uint64_t fNBytesCurrentCluster{0};
107 /// Used to keep the column and field IDs issued during header serialization for the footer serialization
109
111
112protected:
113 void CreateImpl(const RNTupleModel &model) final;
114 RNTupleLocator CommitPageImpl(ColumnHandle_t columnHandle, const RPage &page) final;
116 std::uint64_t CommitClusterImpl(NTupleSize_t nEntries) final;
117 void CommitDatasetImpl() final;
118 void WriteNTupleHeader(const void *data, size_t nbytes, size_t lenHeader);
119 void WriteNTupleFooter(const void *data, size_t nbytes, size_t lenFooter);
120 void WriteNTupleAnchor();
121
122public:
123 RPageSinkDaos(std::string_view ntupleName, std::string_view uri, const RNTupleWriteOptions &options);
124 virtual ~RPageSinkDaos();
125
126 RPage ReservePage(ColumnHandle_t columnHandle, std::size_t nElements) final;
127 void ReleasePage(RPage &page) final;
128};
129
130
131// clang-format off
132/**
133\class ROOT::Experimental::Detail::RPageAllocatorDaos
134\ingroup NTuple
135\brief Manages pages read from a DAOS container
136*/
137// clang-format on
139public:
140 static RPage NewPage(ColumnId_t columnId, void *mem, std::size_t elementSize, std::size_t nElements);
141 static void DeletePage(const RPage& page);
142};
143
144
145// clang-format off
146/**
147\class ROOT::Experimental::Detail::RPageSourceDaos
148\ingroup NTuple
149\brief Storage provider that reads ntuple pages from a DAOS container
150*/
151// clang-format on
153private:
154 /// Populated pages might be shared; the memory buffer is managed by the RPageAllocatorDaos
155 std::unique_ptr<RPageAllocatorDaos> fPageAllocator;
156 // TODO: the page pool should probably be handled by the base class.
157 /// The page pool might, at some point, be used by multiple page sources
158 std::shared_ptr<RPagePool> fPagePool;
159 /// The last cluster from which a page got populated. Points into fClusterPool->fPool
160 RCluster *fCurrentCluster = nullptr;
161 /// A container that stores object data (header/footer, pages, etc.)
162 std::unique_ptr<RDaosContainer> fDaosContainer;
163 /// A URI to a DAOS pool of the form 'daos://pool-uuid:svc_replicas/container-uuid'
164 std::string fURI;
165 /// The cluster pool asynchronously preloads the next few clusters
166 std::unique_ptr<RClusterPool> fClusterPool;
167
168 RPage PopulatePageFromCluster(ColumnHandle_t columnHandle, const RClusterDescriptor &clusterDescriptor,
169 ClusterSize_t::ValueType idxInCluster);
170
171protected:
172 RNTupleDescriptor AttachImpl() final;
173 void UnzipClusterImpl(RCluster *cluster) final;
174
175public:
176 RPageSourceDaos(std::string_view ntupleName, std::string_view uri, const RNTupleReadOptions &options);
177 /// The cloned page source creates a new connection to the pool/container.
178 /// The meta-data (header and footer) is reread and parsed by the clone.
179 std::unique_ptr<RPageSource> Clone() const final;
180 virtual ~RPageSourceDaos();
181
182 RPage PopulatePage(ColumnHandle_t columnHandle, NTupleSize_t globalIndex) final;
183 RPage PopulatePage(ColumnHandle_t columnHandle, const RClusterIndex &clusterIndex) final;
184 void ReleasePage(RPage &page) final;
185
186 void LoadSealedPage(DescriptorId_t columnId, const RClusterIndex &clusterIndex,
187 RSealedPage &sealedPage) final;
188
189 std::vector<std::unique_ptr<RCluster>> LoadClusters(std::span<RCluster::RKey> clusterKeys) final;
190
191 /// Return the object class used for user data OIDs in this ntuple.
192 std::string GetObjectClass() const;
193};
194
195
196} // namespace Detail
197
198} // namespace Experimental
199} // namespace ROOT
200
201#endif
An in-memory subset of the packed and compressed pages of a cluster.
Definition RCluster.hxx:154
Manages pages read from a DAOS container.
Storage provider that writes ntuple pages to into a DAOS container.
void ReleasePage(RPage &page) final
Every page store needs to be able to free pages it handed out.
RNTupleLocator CommitSealedPageImpl(DescriptorId_t columnId, const RPageStorage::RSealedPage &sealedPage) final
std::uint64_t fNBytesCurrentCluster
Tracks the number of bytes committed to the current cluster.
void WriteNTupleFooter(const void *data, size_t nbytes, size_t lenFooter)
void WriteNTupleHeader(const void *data, size_t nbytes, size_t lenHeader)
Internal::RNTupleSerializer::RContext fSerializationContext
Used to keep the column and field IDs issued during header serialization for the footer serialization...
std::string fURI
A URI to a DAOS pool of the form 'daos://pool-uuid:svc_replicas/container-uuid'.
std::uint64_t CommitClusterImpl(NTupleSize_t nEntries) final
Returns the number of bytes written to storage (excluding metadata)
RNTupleLocator CommitPageImpl(ColumnHandle_t columnHandle, const RPage &page) final
std::atomic< std::uint64_t > fOid
OID for the next committed page; it is automatically incremented in CommitSealedPageImpl()
void CreateImpl(const RNTupleModel &model) final
RPage ReservePage(ColumnHandle_t columnHandle, std::size_t nElements) final
Get a new, empty page for the given column that can be filled with up to nElements.
std::unique_ptr< RDaosContainer > fDaosContainer
Underlying DAOS container.
std::unique_ptr< RPageAllocatorHeap > fPageAllocator
Abstract interface to write data into an ntuple.
Storage provider that reads ntuple pages from a DAOS container.
std::unique_ptr< RDaosContainer > fDaosContainer
A container that stores object data (header/footer, pages, etc.)
std::string fURI
A URI to a DAOS pool of the form 'daos://pool-uuid:svc_replicas/container-uuid'.
std::shared_ptr< RPagePool > fPagePool
The page pool might, at some point, be used by multiple page sources.
std::unique_ptr< RPageAllocatorDaos > fPageAllocator
Populated pages might be shared; the memory buffer is managed by the RPageAllocatorDaos.
std::unique_ptr< RClusterPool > fClusterPool
The cluster pool asynchronously preloads the next few clusters.
Abstract interface to read data from an ntuple.
A page is a slice of a column that is mapped into memory.
Definition RPage.hxx:41
The serialization context is used for the piecewise serialization of a descriptor.
Meta-data for a set of ntuple clusters.
Addresses a column element or field item relative to a particular cluster, instead of a global NTuple...
The on-storage meta-data of an ntuple.
The RNTupleModel encapulates the schema of an ntuple.
Common user-tunable settings for reading ntuples.
Common user-tunable settings for storing ntuples.
The class is used as a return type for operations that can fail; wraps a value of type T or an RError...
Definition RError.hxx:195
std::uint64_t NTupleSize_t
Integer type long enough to hold the maximum number of entries in a column.
std::uint64_t DescriptorId_t
Distriniguishes elements of the same type within a descriptor, e.g. different fields.
std::int64_t ColumnId_t
Uniquely identifies a physical column within the scope of the current process, used to tag pages.
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...
Entry point for an RNTuple in a DAOS container.
std::uint32_t fNBytesFooter
The size of the compressed ntuple footer.
std::uint32_t fNBytesHeader
The size of the compressed ntuple header.
std::string fObjClass
The object class for user data OIDs, e.g. SX
std::uint32_t fVersion
Allows for evolving the struct in future versions.
RResult< std::uint32_t > Deserialize(const void *buffer, std::uint32_t bufSize)
std::uint32_t fLenHeader
The size of the uncompressed ntuple header.
std::uint32_t Serialize(void *buffer) const
bool operator==(const RDaosNTupleAnchor &other) const
std::uint32_t fLenFooter
The size of the uncompressed ntuple footer.
A sealed page contains the bytes of a page as written to storage (packed & compressed).
Generic information about the physical location of data.