- Jun 20, 2017
-
-
Steven Murray authored
-
Michael Davis authored
-
- Jun 19, 2017
-
-
Eric Cano authored
Factored a first function out of OStoreDB into Herlpers.
-
Steven Murray authored
-
Eric Cano authored
-
Eric Cano authored
Failing to report a migration is non-fatal, as succesfully written files can still be reported afterwards. synchronousReportEndWithErrors had to be rewritten as instanciating and calling a report would have created a race condition.
-
Eric Cano authored
-
Eric Cano authored
The demangling has been ported in other places where RTTI was also used.
-
Eric Cano authored
-
Eric Cano authored
Fixed closing file descriptor -1 for lock some (legitimate) error cases of BackendVFS::ScopedLock().
-
Eric Cano authored
Adapted unit tests to validate this fetching.
-
Eric Cano authored
-
Steven Murray authored
-
Steven Murray authored
-
- Jun 16, 2017
-
-
Steven Murray authored
-
Steven Murray authored
-
Steven Murray authored
-
- Jun 15, 2017
-
-
Steven Murray authored
-
- Jun 14, 2017
-
-
Eric Cano authored
-
Steven Murray authored
This reverts commit 676e1eee. This is a revert of a revert that at the end of the day causes a stuck data transfer process to core dump when the mother process times it out. In detail the mother process now sends a SEGV signal to a stuck data transfer process.
-
Eric Cano authored
This will give us a core dump with valuable context. Without this change, the process already core dump, but we don't get exception info.
-
- Jun 13, 2017
-
-
Julien Leduc authored
cta-taped config is now in /etc/cta/cta-taped.conf and the logs are collected in /var/log/cta/cta-taped.log so that we can download them as artifacts. Fixed a minor bug in run_systemtest.sh where the namespace was deleted upon test failure when -k option was set.
-
- Jun 12, 2017
-
-
Steven Murray authored
concerning this issue.
-
Steven Murray authored
All CTA catalogue configuration entities (archive route, tape, tape pool, etc.) except for archive file and tape file are now ordered alphabetically. Archive files and tape files are ordered by archive ID and copy number. This ordering is required so that we can implement our own application level cursor over potentionally all archived files. This could be well over 4 billion files. We do not rely on database cursors as they would most fail before we have had enough time to list all archived files. If in the future we require a file listing command that orders achive files alphabeltically, then I would suggest the cta::Catalogue class implements two separate methods. The first implementation would list all files in archive ID order and would not rely on the underlying database to implement the cursor. iBasically whta we have today. The second implementation would list all files in alphabetcial order and would rely on the underlying database to achieve this.
-
- Jun 11, 2017
-
-
Eric Cano authored
Simplified handling of already (or soon to be) mounted tapes. Added support for next mounts. Added logging of decision steps.
-
Eric Cano authored
Added during investigation of scheduling issues. Not used currently but will be usefull when implementing session preemption.
-
Eric Cano authored
We now use protobuf's introspection to dump objects into JSON instead of ad-hoc code using json-c.
-
Eric Cano authored
The different processes of taped can now be identified as in this exemple: [eric@localhost ~]$ ps -ax -o "pid comm cmd" | grep /usr/bin/cta-taped [...] 32593 cta-taped-main /usr/bin/cta-taped -fl /cta-taped.log 32800 cta-tpd-VDSTK11 /usr/bin/cta-taped -fl /cta-taped.log 32801 cta-taped-gc /usr/bin/cta-taped -fl /cta-taped.log
-
- Jun 09, 2017
-
-
Eric Cano authored
Rao branch See merge request !2
-
Cristina Moraru authored
-
Cristina Moraru authored
Signed-off-by:
Cristina Moraru <cristina-gabriela.moraru@cern.ch>
-
Cristina Moraru authored
Signed-off-by:
Cristina Moraru <cristina-gabriela.moraru@cern.ch>
-
- Jun 07, 2017
-
-
Steven Murray authored
With respect to the RadosStriperPool class, replaced std::mutex and std::lock_guard by threading::Mutex and threading::MutexLocker.
-
Steven Murray authored
With respect to the GetOptThreadSafe class, replaced std::mutex and std::lock_guard by threading::Mutex and threading::MutexLocker.
-
Steven Murray authored
-
Steven Murray authored
-
Steven Murray authored
Removed last use of std::mutex from the rdbms library
-
Steven Murray authored
Added cta::threading::CondVar. The new CondVar class is a C++ wrapper around a pthread condition variable.
-
- Jun 06, 2017
-
-
Steven Murray authored
-