From: Brian Warner <warner@allmydata.com>
Date: Fri, 5 Jan 2007 07:48:42 +0000 (-0700)
Subject: encode.py: add some timing comments
X-Git-Tag: tahoe_v0.1.0-0-UNSTABLE~397
X-Git-Url: https://git.rkrishnan.org/components/com_hotproperty/simplejson/running.html?a=commitdiff_plain;h=3d3a7a5b8dc07377c4e2f030daa63da1edd25771;p=tahoe-lafs%2Ftahoe-lafs.git

encode.py: add some timing comments
---

diff --git a/src/allmydata/encode.py b/src/allmydata/encode.py
index ceba80b2..ae102789 100644
--- a/src/allmydata/encode.py
+++ b/src/allmydata/encode.py
@@ -111,7 +111,10 @@ class PyRSEncoder(object):
     # probably be always).
 
     # on my workstation (fluxx, a 3.5GHz Athlon), this encodes data at a rate
-    # of 6.7kBps. Zooko's mom's 1.8GHz G5 got 2.2kBps .
+    # of 6.7kBps. Zooko's mom's 1.8GHz G5 got 2.2kBps . slave3 took 40s to
+    # construct the LUT and encodes at 1.5kBps, and for some reason took more
+    # than 20 minutes to run the test_encode_share tests, so I disabled most
+    # of them.
 
     def set_params(self, data_size, required_shares, total_shares):
         assert required_shares <= total_shares