Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
ADCoS shift summary | ||||||||
Line: 78 to 78 | ||||||||
General Comments: The people in the Skype control room seem friendly enough, and will happily answer any questions you have - however, the process is still inherently a remote one. I don't know how they'll be able to tell when you are no longer a trainee and can be considered an expert. I felt a bit lost, and just wandered around the various websites looking for things that looked red (or not green) - with time it'll be easier to tell what's worth looking at and what's not, but it's made a bit harder by the fact you only see the end result of the expert's efforts - you don't get to see the processes and tricks he/she uses to quickly find and diagnose a problem. Once the eLog came out, I could follow the information contained in that and generally find the fault myself. I found a couple of things myself, but when I mentioned them in the control room the expert seemed to be about 5 pages ahead of me, though he didn't seem to mind telling me why he was leaving it, or not. It's also a bit easy to lose track of what's been dealt with and what hasn't. Partly because it's the expert, not me who was dealing with the problems, but also because it's also all very interconnected, and a fault at one place could be caused by a fault at another. But I'm pretty sure it'll get easier with a few shifts - and once I manage to digest the entire TWiki properly! \ No newline at end of file | ||||||||
Added: | ||||||||
> > |
=====================================================================================================
Specific issues: Chris CT 24/11/09: I was asked to submit some test jobs to cloud 'CA' site 'TRIUMF'. I followed the procedures but got a nasty python error! On lxplus, I did: source /afs/cern.ch/project/gd/LCG-share/current/etc/profile.d/grid_env.sh source /afs/cern.ch/atlas/offline/external/GRID/ddm/DQ2Clients/setup.zsh voms-proxy-init --voms atlas mkdir panda cd panda =svn co http://www.usatlas.bnl.gov/svn/panda/panda-server/current/pandaserver/test= ![]() =svn co http://www.usatlas.bnl.gov/svn/panda/panda-server/current/pandaserver/taskbuffer= ![]() =svn co http://www.usatlas.bnl.gov/svn/panda/panda-server/current/pandaserver/userinterface= ![]() cd test export PYTHONPATH ..:$PYTHONPATH= edited the file test/testG4sim15.py to make sure site='TRIUMF' and cloud='CA'
then ran:python testG4sim15.py got error: File "/afs/cern.ch/user/c/ccollins/panda/taskbuffer/FileSpec.py", line 94, in __getstate__ if isinstance(val,cx_Oracle.Timestamp): NameError: global name 'cx_Oracle' is not defined I was using python 2.5 (you can check this by typing python then CTRL-D to exit)
so the fix!...edit the file../taskbuffer/FileSpec.py and comment out these 3 lines below the comment line which is already there: # convert cx_Oracle.Timestamp to datetime. this is not needed since python 2.4 #if isinstance(val,cx_Oracle.Timestamp): # val = datetime.datetime(val.year,val.month,val.day, # val.hour,val.minute,val.second) Job was submitted. My output looked like: --------------------- 0 PandaID=1031455144 and the test jobs appeared here: http://panda.cern.ch:25980/server/pandamon/query?job=*&type=test&hours=3 ![]() |