Custom Query (101 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (58 - 60 of 101)

Ticket Resolution Summary Owner Reporter
#171 fixed jobarchived crashed after 20 interation XML parsing due to exception ramonb oufei.zhao@…
Description

In line 914 of jobarchived.py, Null checking on timeout_jobs should be added before accessing it. It will throw exception when timeout_jobs is 'None'. Once add a line to check null, it works fine.

if timedout_jobs != None: <== added

for j in timedout_jobs:

del self.jobAttrs[ j ] del self.jobAttrsSaved[ j ]

See below for log and stack trace: Mon 24 Jun 2013 18:00:59 - job_xml_thread(): Retrieving XML data.. Mon 24 Jun 2013 18:00:59 - job_xml_thread(): Done retrieving: data size 2656 Mon 24 Jun 2013 18:00:59 - job_xml_thread(): Parsing XML.. Mon 24 Jun 2013 18:00:59 - XML: Start document: iteration 20 Mon 24 Jun 2013 18:00:59 - XML: Processed 2 elements - found 0 jobs Mon 24 Jun 2013 18:00:59 - self.heartbeat = 0 Mon 24 Jun 2013 18:00:59 - job_xml_thread(): Done parsing. Mon 24 Jun 2013 18:00:59 - job_xml_thread(): Sleeping.. (15s) Mon 24 Jun 2013 18:01:04 - job_xml_thread(): Retrieving XML data.. Mon 24 Jun 2013 18:01:04 - job_xml_thread(): Done retrieving: data size 2656 Mon 24 Jun 2013 18:01:04 - job_xml_thread(): Parsing XML.. Mon 24 Jun 2013 18:01:04 - Housekeeping: checking database for timed out jobs.. Mon 24 Jun 2013 18:01:04 - doDatabase(): get: SELECT * from jobs WHERE job_status != 'F' Mon 24 Jun 2013 18:01:04 - doDatabase(): result: [] Exception in thread job_proc_thread: Traceback (most recent call last):

File "/usr/local/lib/python2.4/threading.py", line 442, in bootstrap

self.run()

File "/usr/local/lib/python2.4/threading.py", line 422, in run

self.target(*self.args, self.kwargs)

File "/usr/sbin/jobarchived", line 870, in run

xml.sax.parseString( my_data, self.myXMLHandler, self.myXMLError )

File "/usr/local/lib/python2.4/xml/sax/init.py", line 49, in parseString

parser.parse(inpsrc)

File "/usr/local/lib/python2.4/xml/sax/expatreader.py", line 107, in parse

xmlreader.IncrementalParser?.parse(self, source)

File "/usr/local/lib/python2.4/xml/sax/xmlreader.py", line 123, in parse

self.feed(buffer)

File "/usr/local/lib/python2.4/xml/sax/expatreader.py", line 200, in feed

self._cont_handler.startDocument()

File "/usr/sbin/jobarchived", line 914, in startDocument

for j in timedout_jobs:

TypeError?: iteration over non-sequence

#172 fixed BATCH_HOST_TRANSLATE should not be mandatory ramonb ramonb
Description

if BATCH_HOST_TRANSLATE is not set, an exception is raised

Traceback (most recent call last):
  File "/usr/sbin/jobmond", line 2180, in <module>
    main()
  File "/usr/sbin/jobmond", line 2095, in main
    if not processArgs( sys.argv[1:] ):
  File "/usr/sbin/jobmond", line 95, in processArgs
    return loadConfig( JOBMOND_CONF )
  File "/usr/sbin/jobmond", line 609, in loadConfig
    BATCH_HOST_TRANSLATE = getlist( cfg.get( 'DEFAULT', 'BATCH_HOST_TRANSLATE' ) )
  File "/usr/lib/python2.7/ConfigParser.py", line 618, in get
    raise NoOptionError(option, section)
ConfigParser.NoOptionError: No option 'batch_host_translate' in section: 'DEFAULT'

however that setting should be optional

#175 fixed conf.php file missing or misplaced somebody keberflores@…
Description

I've read in the point 2. of web subsection of configuration section in the readme file, that changes to /var/www/ganglia/addons/job_monarch/conf.php should be made to reflect own settings, but this file doesn't exists.

In 1.0 the file exists in web/addons/job_monarch/conf.php, In 1.1 and 1.1.1 the file doesn't exists in that location, but in web/conf.php.in

maybe the file should be relocated/renamed, or the install instructions be updated.

Note: See TracQuery for help on using queries.