I am running a local implementation of PilotMapReduce on Alamo. The issue I am facing is with submitting my jobs to the queue. The part of the scrip which uses the saga adaptor is as follows:
"pj_service_url": 'fork://localhost',
"pd_service_url":"ssh://localhost/"+os.getcwd()+"/pilotdata",
Here I would like to use pbs in addition to fork and ssh. The error I am getting after replacing the above pj_service_url with pbs://localhost and pd_service_url with pbs://localhost+os.getcwd()+"/pilotdata",is
File "single_WC.py", line 42, in <module>
mr.MapReduceMain()
File "/N/u/nv121/aj1/lib/python2.7/site-packages/PilotMapReduce-0.1.0-py2.7.egg/pmr/PilotMapReduce.py", line 370, in MapReduceMain
self.start_pilot_datas()
File "/N/u/nv121/aj1/lib/python2.7/site-packages/PilotMapReduce-0.1.0-py2.7.egg/pmr/PilotMapReduce.py", line 69, in start_pilot_datas
self.pilot_data_service.create_pilot( pilot_data_description=pd_desc )
File "/N/u/nv121/aj1/lib/python2.7/site-packages/BigJob-0.52-py2.7.egg/pilot/impl/pilotdata_manager.py", line 367, in create_pilot
pilot_data_description=pilot_data_description)
File "/N/u/nv121/aj1/lib/python2.7/site-packages/BigJob-0.52-py2.7.egg/pilot/impl/pilotdata_manager.py", line 124, in __init__
self.__initialize_pilot_data()
File "/N/u/nv121/aj1/lib/python2.7/site-packages/BigJob-0.52-py2.7.egg/pilot/impl/pilotdata_manager.py", line 274, in __initialize_pilot_data
raise PilotError("No File Plugin found.")
pilot.api.api.PilotError: 'No File Plugin found.'
Can some one please suggest me the appropriate changes to be made.