66class TPacketizer::TFileStat :
public TObject {
77 Bool_t IsDone()
const {
return fIsDone;}
78 void SetDone() {fIsDone =
kTRUE;}
79 TFileNode *GetNode()
const {
return fNode;}
81 Long64_t GetNextEntry()
const {
return fNextEntry;}
82 void MoveNextEntry(
Long64_t step) {fNextEntry += step;}
86TPacketizer::TFileStat::TFileStat(TFileNode *node,
TDSetElement *elem)
87 : fIsDone(
kFALSE), fNode(node), fElement(elem), fNextEntry(elem->GetFirst())
94class TPacketizer::TFileNode :
public TObject {
106 TFileNode(
const char *
name);
107 ~TFileNode() {
delete fFiles;
delete fActFiles; }
109 void IncMySlaveCnt() { fMySlaveCnt++; }
110 void IncSlaveCnt(
const char *slave) {
if (fNodeName != slave) fSlaveCnt++; }
111 void DecSlaveCnt(
const char *slave) {
if (fNodeName != slave) fSlaveCnt--;
R__ASSERT(fSlaveCnt >= 0); }
112 Int_t GetSlaveCnt()
const {
return fMySlaveCnt + fSlaveCnt;}
113 Int_t GetNumberOfActiveFiles()
const {
return fActFiles->
GetSize(); }
116 const char *
GetName()
const {
return fNodeName.
Data(); }
120 TFileStat *
f =
new TFileStat(
this,elem);
122 if (fUnAllocFileNext == 0) fUnAllocFileNext = fFiles->
First();
127 TObject *next = fUnAllocFileNext;
131 fActFiles->
Add(next);
132 if (fActFileNext == 0) fActFileNext = fActFiles->
First();
135 fUnAllocFileNext = fFiles->
After(fUnAllocFileNext);
138 return (TFileStat *) next;
145 if (fActFileNext != 0) {
146 fActFileNext = fActFiles->
After(fActFileNext);
147 if (fActFileNext == 0) fActFileNext = fActFiles->
First();
150 return (TFileStat *) next;
155 if (fActFileNext ==
file) fActFileNext = fActFiles->
After(
file);
157 if (fActFileNext == 0) fActFileNext = fActFiles->
First();
164 const TFileNode *obj =
dynamic_cast<const TFileNode*
>(other);
166 Error(
"Compare",
"input is not a TPacketizer::TFileNode object");
170 Int_t myVal = GetSlaveCnt();
171 Int_t otherVal = obj->GetSlaveCnt();
172 if (myVal < otherVal) {
174 }
else if (myVal > otherVal) {
183 std::cout <<
"OBJ: " << IsA()->GetName() <<
"\t" << fNodeName
184 <<
"\tMySlaveCount " << fMySlaveCnt
185 <<
"\tSlaveCount " << fSlaveCnt << std::endl;
190 fUnAllocFileNext = fFiles->
First();
199TPacketizer::TFileNode::TFileNode(
const char *
name)
200 : fNodeName(
name), fFiles(new
TList), fUnAllocFileNext(0),fActFiles(new
TList),
201 fActFileNext(0), fMySlaveCnt(0), fSlaveCnt(0)
217 TFileNode *fFileNode;
222 TSlaveStat(
TSlave *slave);
225 TFileNode *GetFileNode()
const {
return fFileNode; }
227 void SetFileNode(TFileNode *node) { fFileNode = node; }
231TPacketizer::TSlaveStat::TSlaveStat(
TSlave *slave)
232 : fFileNode(0), fCurFile(0), fCurElem(0)
241TPacketizer::TSlaveStat::~TSlaveStat()
255 fStatus->SetLastProcTime(0.);
263 Error(
"AddProcessed",
"status arg undefined");
279 PDB(kPacketizer,1)
Info(
"TPacketizer",
"Enter (first %lld, num %lld)",
first, num);
292 Error(
"TPacketizer",
"No progress status");
298 if (maxSlaveCnt < 0) {
299 Warning(
"TPacketizer",
"PROOF_MaxSlavesPerNode must be positive");
308 Warning(
"TPacketizer",
"PROOF_MaxSlavesPerNode must be positive");
311 maxSlaveCnt = (
Long_t) mxslcnt;
319 if (maxSlaveCnt > 0) {
322 Info(
"TPacketizer",
"setting max number of workers per node to %ld",
fMaxSlaveCnt);
345 if (
e->GetValid())
continue;
347 TUrl url =
e->GetFileName();
362 if (host.
Contains(
"localhost") || host ==
"127.0.0.1") {
370 node =
new TFileNode(host);
382 Info(
"TPacketizer",
"Initial number of workers: %d", nwrks);
387 Int_t validateMode = 0;
393 "processing subset of entries: validating by file? %s", byfile ?
"yes":
"no");
406 PDB(kPacketizer,2)
Info(
"TPacketizer",
"processing range: first %lld, num %lld",
first, num);
414 if (!
e->GetValid())
continue;
420 TUrl url =
e->GetFileName();
424 Info(
"TPacketizer",
" --> '%s'",
e->GetFileName());
426 Info(
"TPacketizer",
" --> first %lld, num %lld (cur %lld)", eFirst, eNum, cur);
428 if (!
e->GetEntryList()){
430 if (cur + eNum <
first) {
433 Info(
"TPacketizer",
" --> skip element cur %lld", cur);
438 if (num != -1 && (
first+num <= cur)) {
441 Info(
"TPacketizer",
" --> drop element cur %lld", cur);
446 if (cur <=
first || (num != -1 && (
first+num <= cur+eNum))) {
451 e->SetFirst( eFirst + (
first - cur) );
452 e->SetNum(
e->GetNum() - (
first - cur) );
454 Info(
"TPacketizer",
" --> adjust start %lld and end %lld",
458 if (num != -1 && (
first+num <= cur+eNum)) {
461 e->SetNum(
first + num -
e->GetFirst() - cur );
463 Info(
"TPacketizer",
" --> adjust end %lld",
first + num - cur);
470 Info(
"TPacketizer",
" --> increment 'cur' by %lld", eNum);
485 eNum = evl ? evl->
GetN() : eNum;
491 Info(
"TPacketizer",
" --> next cur %lld", cur);
506 if (host.
Contains(
"localhost") || host ==
"127.0.0.1") {
514 node =
new TFileNode( host );
521 PDB(kPacketizer,2)
e->Print(
"a");
525 Info(
"TPacketizer",
"processing %lld entries in %d files on %d hosts",
535 Info(
"TPacketizer",
"no valid or non-empty file found: setting invalid");
548 Long_t packetAsAFraction = 20;
550 Info(
"Process",
"using alternate fraction of query time as a packet Size: %ld",
574 PDB(kPacketizer,1)
Info(
"TPacketizer",
"Return");
599 Error(
"AddWorkers",
"Null list of new workers!");
607 while (( sl =
dynamic_cast<TSlave*
>(next()) ))
639 file = node->GetNextUnAlloc();
643 file = node->GetNextUnAlloc();
665 std::cout <<
"TPacketizer::NextUnAllocNode()" << std::endl;
671 PDB(kPacketizer,1)
Info(
"NextUnAllocNode",
"reached workers per node limit (%ld)",
696 file = node->GetNextActive();
710 Printf(
"TPacketizer::NextActiveNode : ----------------------");
717 Info(
"NextActiveNode",
"reached workers per node limit (%ld)",
fMaxSlaveCnt);
729 TFileNode *node =
file->GetNode();
731 node->RemoveActive(
file);
755 while ((fn = (TFileNode*) files.
Next()) != 0) {
761 while ((key = slaves.
Next()) != 0) {
766 slstat->SetFileNode(fn);
769 slstat->fCurFile = 0;
771 Warning(
"Reset",
"TSlaveStat associated to key '%s' is NULL", key->
GetName());
794 Info(
"ValidateFiles",
"socket added to monitor: %p (%s)",
799 Info(
"ValidateFiles",
800 "mon: %p, wrk: %p, sck: %p", &mon, slm, slm->
GetSocket());
811 TString msg(
"Validating files");
828 Error(
"ValidateFiles",
"TSlaveStat associated to slave '%s' is NULL",
s->GetName());
835 if ( (node = slstat->GetFileNode()) != 0 ) {
838 slstat->SetFileNode(0);
851 slstat->fCurFile =
file;
854 if (entries < 0 || strlen(elem->
GetTitle()) <= 0) {
856 file->GetNode()->IncSlaveCnt(slstat->GetName());
863 s->GetSocket()->Send(
m );
866 Info(
"ValidateFiles",
867 "sent to worker-%s (%s) via %p GETENTRIES on %s %s %s %s",
868 s->GetOrdinal(),
s->GetName(),
s->GetSocket(),
879 Error(
"ValidateFiles",
880 "first (%lld) higher then number of entries (%lld) in %s",
883 slstat->fCurFile->SetDone();
887 if (elem->
GetNum() == -1) {
890 Warning(
"ValidateFiles",
"num (%lld) + first (%lld) larger then number of"
896 Info(
"ValidateFiles",
897 "found elem '%s' with %lld entries", elem->
GetFileName(), entries);
912 if (byfile && maxent > 0 && totent > 0) {
914 Long64_t nrestf = (maxent - totent) * nopenf / totent ;
915 if (nrestf <= 0 && maxent > totent) nrestf = 1;
918 Info(
"ValidateFiles",
"{%lld, %lld, %lld): needs to validate %lld more files",
919 maxent, totent, nopenf, nrestf);
921 while ((slm = (
TSlave *) si.
Next()) && nrestf--) {
927 Info(
"ValidateFiles",
"no need to validate more files");
936 Info(
"ValidateFiles",
"waiting for %d workers:", mon.
GetActive());
941 Info(
"ValidateFiles",
"found sck: %p",
s);
952 Error(
"ValidateFiles",
"selection has been interrupted - STOP");
959 PDB(kPacketizer,3)
Info(
"ValidateFiles",
"select returned: %p", sock);
964 Error(
"ValidateFiles",
"worker-%s (%s) got invalid - STOP",
973 if ( sock->
Recv(reply) <= 0 ) {
977 Error(
"ValidateFiles",
"Recv failed! for worker-%s (%s)",
987 Error(
"ValidateFiles",
"kPROOF_FATAL from worker-%s (%s)",
1000 slavestat->fCurFile->GetNode()->DecSlaveCnt(slavestat->GetName());
1003 (*reply) >> entries;
1008 (*reply) >> objname;
1009 e->SetTitle(objname);
1012 e->SetTDSetOffset(entries);
1013 if ( entries > 0 ) {
1019 if (!
e->GetEntryList()){
1020 if (
e->GetFirst() > entries ) {
1021 Error(
"ValidateFiles",
"first (%lld) higher then number of entries (%lld) in %s",
1022 e->GetFirst(), entries,
e->GetFileName());
1025 slavestat->fCurFile->SetDone();
1030 if (
e->GetNum() == -1 ) {
1031 e->SetNum( entries -
e->GetFirst() );
1032 }
else if (
e->GetFirst() +
e->GetNum() > entries ) {
1033 Error(
"ValidateFiles",
1034 "num (%lld) + first (%lld) larger then number of keys/entries (%lld) in %s",
1035 e->GetNum(),
e->GetFirst(), entries,
e->GetFileName());
1036 e->SetNum(entries -
e->GetFirst());
1050 Error(
"ValidateFiles",
"cannot get entries for %s (",
e->GetFileName() );
1057 m <<
TString(
Form(
"Cannot get entries for file: %s - skipping",
e->GetFileName()));
1065 PDB(kPacketizer,3)
Info(
"ValidateFiles",
" %lld events validated", totent);
1068 if (maxent < 0 || ((totent < maxent) && !byfile))
1089 while ( (el =
dynamic_cast<TDSetElement*
> (next())) ) {
1105 if ( slstat == 0 )
return 0;
1107 return slstat->GetEntriesProcessed();
1122 while ((key = nxw()) != 0) {
1124 if (slstat && slstat->GetProgressStatus() && slstat->GetEntriesProcessed() > 0) {
1126 currate += slstat->GetProgressStatus()->GetCurrentRate();
1156 if ( slstat->fCurElem != 0 ) {
1157 Double_t latency = 0., proctime = 0., proccpu = 0.;
1161 Long64_t numev = slstat->fCurElem->GetNum();
1174 numev = status->
GetEntries() - slstat->GetEntriesProcessed();
1175 progress = slstat->AddProcessed(status);
1186 Error(
"GetNextPacket",
"no status came in the kPROOF_GETPACKET message");
1189 (*r) >> latency >> proctime >> proccpu;
1192 if (
r->BufferSize() >
r->Length()) (*r) >> bytesRead;
1193 if (
r->BufferSize() >
r->Length()) (*r) >> totalEntries;
1194 if (
r->BufferSize() >
r->Length()) (*r) >> totev;
1196 numev = totev - slstat->GetEntriesProcessed();
1197 if (numev > 0) slstat->GetProgressStatus()->IncEntries(numev);
1198 if (bytesRead > 0) slstat->GetProgressStatus()->IncBytesRead(bytesRead);
1199 if (numev > 0 || bytesRead > 0) slstat->GetProgressStatus()->SetLastUpdate();
1208 Info(
"GetNextPacket",
"worker-%s (%s): %lld %7.3lf %7.3lf %7.3lf %lld",
1210 numev, latency, proctime, proccpu, bytesRead);
1214 numev, latency, proctime, proccpu, bytesRead);
1216 slstat->fCurElem = 0;
1222 firstPacket =
kTRUE;
1232 TFileStat *
file = slstat->fCurFile;
1234 if (
file != 0 &&
file->IsDone() ) {
1235 file->GetNode()->DecSlaveCnt(slstat->GetName());
1242 slstat->fCurFile =
file;
1247 if (slstat->GetFileNode() != 0) {
1250 slstat->SetFileNode(0);
1264 if (!
file)
return 0;
1266 slstat->fCurFile =
file;
1267 file->GetNode()->IncSlaveCnt(slstat->GetName());
1270 file->GetNode()->GetName(),
1271 file->GetElement()->GetFileName(),
kTRUE);
1278 if (num < 1) num = 1;
1283 if (
first + num >= last ) {
1291 file->MoveNextEntry(num);
1308 return slstat->fCurElem;
1319 while ((key = nxw())) {
1321 if (wrkstat && wrkstat->fCurFile) actw++;
void Error(const char *location, const char *msgfmt,...)
R__EXTERN TProofServ * gProofServ
R__EXTERN TProof * gProof
char * Form(const char *fmt,...)
void Printf(const char *fmt,...)
R__EXTERN TSystem * gSystem
virtual void Print(Option_t *option="") const
Default print for collections, calls Print(option, 1).
virtual void AddAll(const TCollection *col)
Add all objects from collection col to this collection.
virtual Int_t GetEntries() const
virtual void SetOwner(Bool_t enable=kTRUE)
Set whether this collection is the owner (enable==true) of its content.
virtual Int_t GetSize() const
Return the capacity of the collection, i.e.
Manages an element of a TDSet.
Long64_t GetEntries(Bool_t istree=kTRUE, Bool_t openfile=kTRUE)
Returns number of entries in tree or objects in file.
const char * GetObjName() const
TObject * GetEntryList() const
void SetTDSetOffset(Long64_t offset)
void SetNum(Long64_t num)
const char * GetDirectory() const
Return directory where to look for object.
Long64_t GetTDSetOffset() const
const char * GetFileName() const
Long64_t GetFirst() const
This class implements a data set to be used for PROOF processing.
virtual TDSetElement * Next(Long64_t totalEntries=-1)
Returns next TDSetElement.
virtual void Reset()
Reset or initialize access to the elements.
TList * GetListOfElements() const
A List of entry numbers in a TTree or TChain.
virtual Long64_t GetN() const
virtual Int_t GetValue(const char *name, Int_t dflt) const
Returns the integer value for a resource.
A TEventList object is a list of selected events (entries) in a TTree.
virtual Int_t GetN() const
virtual void Add(TObject *obj)
virtual TObject * After(const TObject *obj) const
Returns the object after object obj.
virtual TObject * Remove(TObject *obj)
Remove object from the list.
virtual TObject * FindObject(const char *name) const
Find an object in this list using its name.
virtual TObject * First() const
Return the first object in the list. Returns 0 when list is empty.
virtual void Clear(Option_t *option="")
Remove all objects from the list.
virtual void Sort(Bool_t order=kSortAscending)
Sort linked list.
TMap implements an associative array of (key,value) pairs using a THashTable for efficient retrieval ...
void Add(TObject *obj)
This function may not be used (but we need to provide it since it is a pure virtual in TCollection).
void DeleteValues()
Remove all (key,value) pairs from the map AND delete the values when they are allocated on the heap.
TObject * GetValue(const char *keyname) const
Returns a pointer to the value associated with keyname as name of the key.
TObject * FindObject(const char *keyname) const
Check if a (key,value) pair exists with keyname as name of the key.
TSocket * Select()
Return pointer to socket for which an event is waiting.
virtual void Activate(TSocket *sock)
Activate a de-activated socket.
virtual void Add(TSocket *sock, Int_t interest=kRead)
Add socket to the monitor's active list.
Int_t GetActive(Long_t timeout=-1) const
Return number of sockets in the active list.
virtual void DeActivateAll()
De-activate all activated sockets.
virtual void DeActivate(TSocket *sock)
De-activate a socket.
TList * GetListOfActives() const
Returns a list with all active sockets.
virtual const char * GetTitle() const
Returns title of object.
Mother of all ROOT objects.
virtual const char * GetName() const
Returns name of object.
virtual Bool_t IsSortable() const
virtual void Warning(const char *method, const char *msgfmt,...) const
Issue warning message.
void SetBit(UInt_t f, Bool_t set)
Set or unset the user status bits as specified in f.
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
virtual Int_t Compare(const TObject *obj) const
Compare abstract method.
virtual void Print(Option_t *option="") const
This method must be overridden when a class wants to print itself.
virtual void Info(const char *method, const char *msgfmt,...) const
Issue info message.
This class generates packets to be processed on PROOF worker servers.
TFileStat * GetNextActive()
Get next active file.
TFileNode * NextActiveNode()
Get next active node.
virtual ~TPacketizer()
Destructor.
void RemoveUnAllocNode(TFileNode *)
Remove unallocated node.
Int_t AddWorkers(TList *workers)
Adds new workers. Returns the number of workers added, or -1 on failure.
TFileNode * NextUnAllocNode()
Get next unallocated node.
Int_t GetActiveWorkers()
Return the number of workers still processing.
void Reset()
Reset the internal datastructure for packet distribution.
TFileStat * GetNextUnAlloc(TFileNode *node=0)
Get next unallocated file.
void RemoveActiveNode(TFileNode *)
Remove node from the list of actives.
TDSetElement * GetNextPacket(TSlave *sl, TMessage *r)
Get next packet.
Float_t GetCurrentRate(Bool_t &all)
Get Estimation of the current rate; just summing the current rates of the active workers.
void ValidateFiles(TDSet *dset, TList *slaves, Long64_t maxent=-1, Bool_t byfile=kFALSE)
Check existence of file/dir/tree an get number of entries.
void RemoveActive(TFileStat *file)
Remove file from the list of actives.
Container class for processing statistics.
void SetLastUpdate(Double_t updtTime=0)
Update time stamp either with the passed value (if > 0) or with the current time.
Double_t GetProcTime() const
void IncBytesRead(Long64_t bytesRead)
Long64_t GetEntries() const
void SetLastEntries(Long64_t entries)
Double_t GetCPUTime() const
void IncEntries(Long64_t entries=1)
Long64_t GetBytesRead() const
TSocket * GetSocket() const
This class controls a Parallel ROOT Facility, PROOF, cluster.
TObject * GetParameter(const char *par) const
Get specified parameter.
void SendDataSetStatus(const char *msg, UInt_t n, UInt_t tot, Bool_t st)
Send or notify data set status.
Class describing a PROOF worker server.
TSocket * GetSocket() const
Int_t GetProtocol() const
const char * GetName() const
Returns name of object.
const char * GetOrdinal() const
virtual Int_t Recv(TMessage *&mess)
Receive a TMessage object.
virtual Bool_t IsValid() const
virtual Int_t Send(const TMessage &mess)
Send a TMessage object.
const char * Data() const
Bool_t Contains(const char *pat, ECaseCompare cmp=kExact) const
virtual const char * HostName()
Return the system's host name.
This class represents a WWW compatible URL.
void SetProtocol(const char *proto, Bool_t setDefaultPort=kFALSE)
Set protocol and, optionally, change the port accordingly.
const char * GetHost() const
const char * GetHostFQDN() const
Return fully qualified domain name of url host.
void SetHost(const char *host)
const char * GetProtocol() const
virtual TProofProgressStatus * AddProcessed(TProofProgressStatus *st)=0
The packetizer is a load balancing object created for each query.
TProofProgressStatus * fProgressStatus
virtual Bool_t HandleTimer(TTimer *timer)
Send progress message to client.
Long64_t GetEntriesProcessed() const
TDSetElement * CreateNewPacket(TDSetElement *base, Long64_t first, Long64_t num)
Creates a new TDSetElement from from base packet starting from the first entry with num entries.
void Add(RHist< DIMENSIONS, PRECISION_TO, STAT_TO... > &to, const RHist< DIMENSIONS, PRECISION_FROM, STAT_FROM... > &from)
Add two histograms.
static constexpr double s