cpu-watcher not resilient to corrupted pickles #561

Closed
opened 2008-12-23 05:05:18 +00:00 by zandr · 2 comments
zandr commented 2008-12-23 05:05:18 +00:00
Owner

I've seen a number of EOF errors trying to read the pickle, which seems like it should be pretty easy to trap.

This one, however, stumped me. First, I got:

amduser@prodtahoe1:~/prodnet/cpu-watcher$ tahoe start .
STARTING /home/amduser/prodnet/cpu-watcher

Failed to load application: '9'
unknown (cpu-watcher.tac) node probably not started

Zooko helpfully suggested I try:

amduser@prodtahoe1:~/prodnet/cpu-watcher$ python -u cpu-watcher.tac
Traceback (most recent call last):
  File "cpu-watcher.tac", line 227, in <module>
    CPUWatcher().setServiceParent(application)
  File "cpu-watcher.tac", line 106, in __init__
    self.history = pickle.load(open("history.pickle", "rb"))
  File "/usr/lib/python2.5/pickle.py", line 1370, in load
    return Unpickler(file).load()
  File "/usr/lib/python2.5/pickle.py", line 858, in load
    dispatch[key](self)
KeyError: '9'

Deleting the pickle solved the problem.

I've seen a number of EOF errors trying to read the pickle, which seems like it should be pretty easy to trap. This one, however, stumped me. First, I got: ``` amduser@prodtahoe1:~/prodnet/cpu-watcher$ tahoe start . STARTING /home/amduser/prodnet/cpu-watcher Failed to load application: '9' unknown (cpu-watcher.tac) node probably not started ``` Zooko helpfully suggested I try: ``` amduser@prodtahoe1:~/prodnet/cpu-watcher$ python -u cpu-watcher.tac Traceback (most recent call last): File "cpu-watcher.tac", line 227, in <module> CPUWatcher().setServiceParent(application) File "cpu-watcher.tac", line 106, in __init__ self.history = pickle.load(open("history.pickle", "rb")) File "/usr/lib/python2.5/pickle.py", line 1370, in load return Unpickler(file).load() File "/usr/lib/python2.5/pickle.py", line 858, in load dispatch[key](self) KeyError: '9' ``` Deleting the pickle solved the problem.
tahoe-lafs added the
unknown
major
defect
1.2.0
labels 2008-12-23 05:05:18 +00:00
tahoe-lafs added this to the undecided milestone 2008-12-23 05:05:18 +00:00
warner added
code-nodeadmin
and removed
unknown
labels 2009-03-08 21:59:32 +00:00
davidsarah commented 2011-01-04 02:17:22 +00:00
Author
Owner

See also #1290 (replace all use of pickles with JSON).

See also #1290 (replace all use of pickles with JSON).
Author
Owner

This appears to be already fixed: all calls to pickle in cpu-watcher.tac are wrapped in try-except.

This appears to be already fixed: all calls to pickle in `cpu-watcher.tac` are wrapped in try-except.
tahoe-lafs added the
fixed
label 2016-11-21 20:34:52 +00:00
rvs closed this issue 2016-11-21 20:34:52 +00:00
Sign in to join this conversation.
No Milestone
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Reference: tahoe-lafs/trac-2024-07-25#561
No description provided.