Monitor

References

dCache Upgrade May 2009

dCache Upgrade Feb 2010

  • Information on migration of dCache admin nodes to new hardware and operating system Jan/Feb 2010.
  • Testing of new storage node build using install_dcache.sh script

dCache Upgrade Jan 2011

  • Creating new dCache headnodes (Dell R610) in January 2011

dCache Headnode Upgrade June 2013

Upgrading dCache from gplazma1 to gplazma2

Local Pages

ROOT access to dcache files

  • C++:

TFile f;
f.Open("dcache:/pnfs/aglt2.org/... ");

OR
TFile::Open("dcache:/pnfs/aglt2.org/..."); //access without file handle

Monitor

References

dCache Upgrade May 2009

dCache Upgrade Feb 2010

  • Information on migration of dCache admin nodes to new hardware and operating system Jan/Feb 2010.
  • Testing of new storage node build using install_dcache.sh script

dCache Upgrade Jan 2011

  • Creating new dCache headnodes (Dell R610) in January 2011

dCache Headnode Upgrade June 2013

Upgrading dCache from gplazma1 to gplazma2

Local Pages

ROOT access to dcache files

  • C++:
TFile f;

f.Open("dcache:/pnfs/aglt2.org/... ");

OR

TFile::Open("dcache:/pnfs/aglt2.org/..."); //access without file handle

Monitor

References

dCache Upgrade May 2009

dCache Upgrade Feb 2010

  • Information on migration of dCache admin nodes to new hardware and operating system Jan/Feb 2010.
  • Testing of new storage node build using install_dcache.sh script

dCache Upgrade Jan 2011

  • Creating new dCache headnodes (Dell R610) in January 2011

dCache Headnode Upgrade June 2013

Upgrading dCache from gplazma1 to gplazma2

Local Pages

ROOT access to dcache files

Note that the TFile constructor cannot manage to open files on dcache (though it can open ROOT files on other filesystems) so you need to use the
TFile.Open method.
  • C++:

TFile::Open("dcache:/pnfs/aglt2.org/..."); //access without file handle

OR
TFile f;
f.Open("dcache:/pnfs/aglt2.org/... ");

OR
TFile *f = TFile::Open("dcache:/pnfs/aglt2.org/...");

  • pyRoot:
f = TFile.Open('dcache:/pnfs/aglt2.org/...')

-- TomRockwell - 18 Aug 2006

This topic: AGLT2 > WebHome > DCacheNotes
Topic revision: 12 Jan 2017, BobBall
This site is powered by FoswikiCopyright © by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding Foswiki? Send feedback