refactor storage_client.py, use IServer objects instead of rrefs #1363

Closed
opened 2011-02-20 21:01:01 +00:00 by warner · 38 comments

There's an internal cleanup I've been meaning to do for a while. I started it in source:src/allmydata/storage_client.py a few years ago (some of the TODO notes at the top indicate my plans), but didn't follow through. The goal is for the client to manage a collection of "IServer" objects, each of which represents a storage server. These objects each hold a RemoteReference and track metadata about the server (like nickname, versions, etc).

As we start to handle other kinds of servers, these objects will be a place to abstract out the common behavior. The change will be to support #466, as signed announcements result in a different notion of "server id" than unsigned ones. The IServer object will get some methods that tell the caller what write-enabler seed or lease-renewal seed or peer-selection seed to use.

The next change will be to move the details of interacting with the share into IServer, such as the actual callRemote method names. Then, when we add an HTTP-based server (which would use GET with a Range: header), the uploader/downloader doesn't need to know quite so much about the server type.

This ticket is to track the refactoring progress and host the patches for review.

There's an internal cleanup I've been meaning to do for a while. I started it in source:src/allmydata/storage_client.py a few years ago (some of the TODO notes at the top indicate my plans), but didn't follow through. The goal is for the client to manage a collection of "`IServer`" objects, each of which represents a storage server. These objects each hold a `RemoteReference` and track metadata about the server (like nickname, versions, etc). As we start to handle other kinds of servers, these objects will be a place to abstract out the common behavior. The change will be to support #466, as signed announcements result in a different notion of "server id" than unsigned ones. The `IServer` object will get some methods that tell the caller what write-enabler seed or lease-renewal seed or peer-selection seed to use. The next change will be to move the details of interacting with the share into `IServer`, such as the actual `callRemote` method names. Then, when we add an HTTP-based server (which would use `GET` with a `Range:` header), the uploader/downloader doesn't need to know quite so much about the server type. This ticket is to track the refactoring progress and host the patches for review.
warner added the
c/code
p/major
t/task
v/1.8.2
labels 2011-02-20 21:01:01 +00:00
warner added this to the undecided milestone 2011-02-20 21:01:01 +00:00
warner self-assigned this 2011-02-20 21:01:01 +00:00
Author

Attachment 1363-patch1.diff (40400 bytes) added

first refactoring step

**Attachment** 1363-patch1.diff (40400 bytes) added first refactoring step
warner was unassigned by zooko 2011-02-20 21:40:00 +00:00
zooko self-assigned this 2011-02-20 21:40:00 +00:00

Let's avoid the word "peer". It usually means both more and less than we really mean in this code, and we've already changed most or all of our documentation to use "server" or some other more specific word instead of what we used to call "peer".

So peer_selection_index should probably be renamed server_selection_index. This doesn't have to be a blocker for this patch or for this branch, but please let's get consensus on terminology whenever possible for future convergence.

Let's avoid the word "peer". It usually means both more and less than we really mean in this code, and we've already changed most or all of our documentation to use "server" or some other more specific word instead of what we used to call "peer". So `peer_selection_index` should probably be renamed `server_selection_index`. This doesn't have to be a blocker for this patch or for this branch, but please let's get consensus on terminology whenever possible for future convergence.

Why are we using sha1 for testing permutation instead of sha256? This patch didn't introduce this behavior so it isn't a blocker for this patch, but it is weird.

Why are we using sha1 for testing permutation instead of sha256? This patch didn't introduce this behavior so it isn't a blocker for this patch, but it is weird.
Author

cool, I'll add "server_selection_index" to my TODO list for this ticket. My only problem with it is the acronym collision: we use "storage index" and "SI" in lots of places, and it'd be nice to have something for this that didn't have quite so many Ss and Is in it. But yeah, let's talk it over on the list.

SHA1: hmm, good question. We started out using stdlib sha.new (which is SHA1), and never changed it (because to change it would mess up server-selection ordering for existing filecaps). It doesn't need to be secure, as it's just a load-balancing tool, but it would be nice to use the same hash function everywhere. Maybe when #466 gets us to the point of defining a new server-selection-seed (which could be a new name for peer-selection-index), we could say that old SSSs use SHA1 and new SSSs use SHA256.

cool, I'll add "server_selection_index" to my TODO list for this ticket. My only problem with it is the acronym collision: we use "storage index" and "SI" in lots of places, and it'd be nice to have something for this that didn't have quite so many Ss and Is in it. But yeah, let's talk it over on the list. SHA1: hmm, good question. We started out using stdlib `sha.new` (which is SHA1), and never changed it (because to change it would mess up server-selection ordering for existing filecaps). It doesn't need to be secure, as it's just a load-balancing tool, but it would be nice to use the same hash function everywhere. Maybe when #466 gets us to the point of defining a new server-selection-seed (which could be a new name for peer-selection-index), we could say that old SSSs use SHA1 and new SSSs use SHA256.

Okay I've now read through all the changes to test files and didn't see anything wrong.

Okay I've now read through all the changes to test files and didn't see anything wrong.

get_known_servers() returns a new copy of a list, sorted (using the sorted function), but the only callers of get_known_servers() are:

  • get_connected_servers(), which makes a new frozenset containing a copy of the list, and
  • the welcome page in [web/root.py]source:trunk/src/allmydata/web/root.py?annotate=blame&rev=4529#L248.

So, I suggest that get_known_servers() should return a list (or a frozenset for added safety -- David-Sarah and I once spent a long, miserable night tracking down an elusive bug just before a major release which turned out to be due to a function having side-effects on a mutable list of servers that had been passed into it), and that web/root.py should sort it itself.

(Also that in the future web/root.py offer the user controls to sort the list of servers by different columns. :-))

This doesn't need to be a blocker for this patch, but it does look like the kind of thing that Brian might want to tweak.

`get_known_servers()` returns a new copy of a list, sorted (using the `sorted` function), but the only callers of `get_known_servers()` are: * `get_connected_servers()`, which makes a new frozenset containing a copy of the list, and * the welcome page in [web/root.py]source:trunk/src/allmydata/web/root.py?annotate=blame&rev=4529#L248. So, I suggest that `get_known_servers()` should return a list (or a frozenset for added safety -- David-Sarah and I once spent a long, miserable night tracking down an elusive bug just before a major release which turned out to be due to a function having side-effects on a mutable list of servers that had been passed into it), and that web/root.py should sort it itself. (Also that in the future web/root.py offer the user controls to sort the list of servers by different columns. :-)) This doesn't need to be a blocker for this patch, but it does look like the kind of thing that Brian might want to tweak.

Okay, I've reviewed attachment:1363-patch1.diff ! Modulo the comments above, +1.

(If you don't mind, remove the reviewed keyword after you land it. I seem to recall that you had some different protocol for signalling whether a patch was ready to land or not or landed or not -- I forget.)

Okay, I've reviewed [attachment:1363-patch1.diff](/tahoe-lafs/trac/attachments/000078ac-c185-57de-d94f-7ae03ca81266) ! Modulo the comments above, +1. (If you don't mind, remove the `reviewed` keyword after you land it. I seem to recall that you had some different protocol for signalling whether a patch was ready to land or not or landed or not -- I forget.)
zooko removed their assignment 2011-02-20 23:38:10 +00:00
warner was assigned by zooko 2011-02-20 23:38:10 +00:00
Author

Ok, attachment:1363-patch1.diff landed in changeset:ffd296fc5ab8007f. Thanks for the quick review!

I'll attach a -patch2 once I'm ready for the next stage of refactoring.

Ok, [attachment:1363-patch1.diff](/tahoe-lafs/trac/attachments/000078ac-c185-57de-d94f-7ae03ca81266) landed in changeset:ffd296fc5ab8007f. Thanks for the quick review! I'll attach a -patch2 once I'm ready for the next stage of refactoring.
Author

Attachment 1363-patch2.dpatch (167890 bytes) added

bundle of refactoring patches

**Attachment** 1363-patch2.dpatch (167890 bytes) added bundle of refactoring patches
Author

ok, -patch2 is ready for review. This one is a darcs patch bundle with 20 individual patches, intended to isolate each change for easier review. Many of them are improving internal names, like referring to "servers" instead of "peers", or fixing the uploader to clearly distinguish between a Server object and a ServerTracker (which were sufficiently confusing before that we had a bunch of assert isinstance(server, [ServerTracker](wiki/ServerTracker)) checks). There's also some dead-code removal, which made subsequent refactoring easier.

The bulk of the changes are intended to reduce the use of get_serverid(). Previously, a lot of the code has been passing around (tubid, rref) tuples: the goal is to pass around IServer objects instead. The first step is to replace those tuples with (s.get_serverid(), s.get_rref()), but the second step (which this patch starts to implement) is to push that change further down into the code, delaying the conversion from IServer to serverid until the last possible moment, and in many cases not doing it at all. This means that many data structures which were previously indexed by serverid are now indexed by IServer instance.

This patch doesn't complete the job, but it gets a significant amount of the way there. It doesn't touch the mutable code at all: I'm hoping to review and land #393 before attempting any refactoring of mutable/*.py, to make life easier.

The tree should pass all tests and be pyflakes clean after applying each patch in this series.

note to self: I still need to implement zooko's recommendations from comment:383818 in a later patch.

ok, -patch2 is ready for review. This one is a darcs patch bundle with 20 individual patches, intended to isolate each change for easier review. Many of them are improving internal names, like referring to "servers" instead of "peers", or fixing the uploader to clearly distinguish between a Server object and a ServerTracker (which were sufficiently confusing before that we had a bunch of `assert isinstance(server, [ServerTracker](wiki/ServerTracker))` checks). There's also some dead-code removal, which made subsequent refactoring easier. The bulk of the changes are intended to reduce the use of `get_serverid()`. Previously, a lot of the code has been passing around `(tubid, rref)` tuples: the goal is to pass around `IServer` objects instead. The first step is to replace those tuples with `(s.get_serverid(), s.get_rref())`, but the second step (which this patch starts to implement) is to push that change further down into the code, delaying the conversion from `IServer` to `serverid` until the last possible moment, and in many cases not doing it at all. This means that many data structures which were previously indexed by serverid are now indexed by `IServer` instance. This patch doesn't complete the job, but it gets a significant amount of the way there. It doesn't touch the mutable code at all: I'm hoping to review and land #393 before attempting any refactoring of `mutable/*.py`, to make life easier. The tree should pass all tests and be pyflakes clean after applying each patch in this series. note to self: I still need to implement zooko's recommendations from [comment:383818](/tahoe-lafs/trac/issues/1363#issuecomment-383818) in a later patch.
warner removed their assignment 2011-02-27 01:26:27 +00:00
zooko was assigned by warner 2011-02-27 01:26:27 +00:00

Reviewing:

  • +1 on "test_client.py, upload.py:: remove KiB/MiB/etc constants, and other dead code". I like negative-code patches :-)
  • +1 on "storage_client.py: clean up test_add_server/test_add_descriptor, remove .test_servers"
  • +1 on "upload.py: more tracker-vs-server cleanup", with a nitpick that "to a set of serverids which claim to already have the share" should be "to a set of serverids for servers that claim to already have the share".

"already_servers" should be "already_serverids".

"contacted_servers" and "contacted_servers2" aren't very good variable names. I suggest s/contacted_servers/worth_asking_servers/ and s/contacted_servers2/have_asked_servers/, and similarly for trackers.

Will look at the rest of the patch tomorrow.

Reviewing: * +1 on "test_client.py, upload.py:: remove KiB/MiB/etc constants, and other dead code". I like negative-code patches :-) * +1 on "storage_client.py: clean up test_add_server/test_add_descriptor, remove .test_servers" * +1 on "upload.py: more tracker-vs-server cleanup", with a nitpick that "to a set of serverids which claim to already have the share" should be "to a set of serverids for servers that claim to already have the share". "already_servers" should be "already_serverids". "contacted_servers" and "contacted_servers2" aren't very good variable names. I suggest s/contacted_servers/worth_asking_servers/ and s/contacted_servers2/have_asked_servers/, and similarly for trackers. Will look at the rest of the patch tomorrow.
zooko was unassigned by daira 2011-02-27 03:57:13 +00:00
daira self-assigned this 2011-02-27 03:57:13 +00:00
  • +1 on "happinessutil.py: server-vs-tracker cleanup", "test_upload.py: server-vs-tracker cleanup", "test_upload.py: factor out FakeServerTracker"

There are still lots of instances of "peer" in the source after applying these patches. Many of these are in the mutable code which I know you haven't got to yet, but some others in the following files look like they might be sensibly be changed first:

  • interfaces.py
  • immutable/{encode.py, layout.py, offloaded.py}
  • happinessutil.py
  • hashutil.py
  • storage_client.py
* +1 on "happinessutil.py: server-vs-tracker cleanup", "test_upload.py: server-vs-tracker cleanup", "test_upload.py: factor out FakeServerTracker" There are still lots of instances of "peer" in the source after applying these patches. Many of these are in the mutable code which I know you haven't got to yet, but some others in the following files look like they might be sensibly be changed first: * interfaces.py * immutable/{encode.py, layout.py, offloaded.py} * happinessutil.py * hashutil.py * storage_client.py
  • +1 on "happinessutil.py: finally rename merge_peers to merge_servers"
  • +1 on "upload.py: rearrange _make_trackers a bit, no behavior changes"
  • "add remaining get_* methods to storage_client.Server, NoNetworkServer, and ...":
    • I'd use get_name() and get_longname() instead of name() and longname().
    • Are there references to the .serverid attribute of NativeStorageServer from elsewhere, or can it be deleted?
* +1 on "happinessutil.py: finally rename merge_peers to merge_servers" * +1 on "upload.py: rearrange _make_trackers a bit, no behavior changes" * "add remaining get_* methods to storage_client.Server, NoNetworkServer, and ...": * I'd use `get_name()` and `get_longname()` instead of `name()` and `longname()`. * Are there references to the `.serverid` attribute of NativeStorageServer from elsewhere, or can it be deleted?
Author

heh, one step at a time. I'll add those other peer->server items to the TODO list, though.

Yeah, I don't particularly like name/longname either. I'm using name() as a short placeholder until I figure out what the method really wants to be called: my goal was to turn base32.b2a(serverid) and idlib.shortnodeid_b2a(serverid) into something like s.name(), and I was previously using s.get_short_description() which didn't exactly roll off the tongue. s.get_name() sounds better, but I'm wondering if something even more descriptive might show up once it's only ever being used in log.msg and webapi-display contexts.

But I'll add a patch to use get_name()/get_longname() for now, I only see about 30 uses of it.

And on .serverid, I don't think so, but I'm putting off removing that until I remove get_serverid too, since the goal is to redefine the concept of "serverid" altogether:

  • step one: change as much as possible to use more accurate properties like "server permutation seed", "lease secret seed", and human-display-friendly names.
  • step two: remove .serverid/.get_serverid() and fix what breaks.
  • step three: enjoy brief moment of peace while "serverid" is safely banished
  • step four: re-introduce the term to mean "public key which signed the server's Introducer announcement", since I think that's the best claimant to the term "serverid", and I don't want to switch the semantics until I'm sure there are no remaining users of the old form.
heh, one step at a time. I'll add those other peer->server items to the TODO list, though. Yeah, I don't particularly like name/longname either. I'm using `name()` as a short placeholder until I figure out what the method really wants to be called: my goal was to turn `base32.b2a(serverid)` and `idlib.shortnodeid_b2a(serverid)` into something like `s.name()`, and I was previously using `s.get_short_description()` which didn't exactly roll off the tongue. `s.get_name()` sounds better, but I'm wondering if something even more descriptive might show up once it's only ever being used in log.msg and webapi-display contexts. But I'll add a patch to use `get_name()/get_longname()` for now, I only see about 30 uses of it. And on `.serverid`, I don't think so, but I'm putting off removing that until I remove `get_serverid` too, since the goal is to redefine the concept of "serverid" altogether: * step one: change as much as possible to use more accurate properties like "server permutation seed", "lease secret seed", and human-display-friendly names. * step two: remove `.serverid/.get_serverid()` and fix what breaks. * step three: enjoy brief moment of peace while "serverid" is safely banished * step four: re-introduce the term to mean "public key which signed the server's Introducer announcement", since I think that's the best claimant to the term "serverid", and I don't want to switch the semantics until I'm sure there are no remaining users of the old form.
Author

Incidentally, if you use https://github.com/warner/tahoe-lafs to grab a copy of my "pass-server" branch, and compare its tip against the "1363-p2" tag, you'll see the changes I've made since the -p2 attachment which implement your recommendations. I'll hold off on adding another patch bundle to this ticket until you've reviewed the existing one and I've landed it.

I'm trying to not go too crazy with the refactoring/renaming, because that'll induce a lot of merge work with the many other project branches I (and others) have hanging around, but the stuff in this ticket ties directly into the #466 work, so I wanted to do them in the right order. So I'm going to be conservative about what I change until some of that other stuff gets landed (especially including #393).

Incidentally, if you use <https://github.com/warner/tahoe-lafs> to grab a copy of my "pass-server" branch, and compare its tip against the "1363-p2" tag, you'll see the changes I've made since the -p2 attachment which implement your recommendations. I'll hold off on adding another patch bundle to this ticket until you've reviewed the existing one and I've landed it. I'm trying to not go too crazy with the refactoring/renaming, because that'll induce a lot of merge work with the many other project branches I (and others) have hanging around, but the stuff in this ticket ties directly into the #466 work, so I wanted to do them in the right order. So I'm going to be conservative about what I change until some of that other stuff gets landed (especially including #393).

(cfdbf66ffd) :

  • "We assign each servers/trackers into one three lists." -> "We assign the tracker for each server into one of three lists."
  • The doc comment for set_shareholders no longer corresponds to the formal parameters. It should say something like "@param holders: a pair (upload_trackers, already_serverids), where".
(https://github.com/warner/tahoe-lafs/commit/cfdbf66ffd28bdd679e6f1fc5caf3385ac5d2385) : * "We assign each servers/trackers into one three lists." -> "We assign the tracker for each server into one of three lists." * The doc comment for `set_shareholders` no longer corresponds to the formal parameters. It should say something like "@param holders: a pair (upload_trackers, already_serverids), where".
Author

what about -p2? can I land it?

what about -p2? can I land it?

Yes, fine to land -p2. Some nitpicks:

  • Add a blank line between make_server and make_servers in test_download.py
  • What are the two XXX's added in allmydata/immutable/downloader/fetcher.py (patch lines 3340 and 3367)?
Yes, fine to land -p2. Some nitpicks: * Add a blank line between make_server and make_servers in test_download.py * What are the two XXX's added in allmydata/immutable/downloader/fetcher.py (patch lines 3340 and 3367)?
Author

Great, thanks, -p2 has been landed. I'll let you know when I've got a -p3 to review (probably after landing #393 MDMF), and I'll incorporate your suggestions.

Great, thanks, -p2 has been landed. I'll let you know when I've got a -p3 to review (probably after landing #393 MDMF), and I'll incorporate your suggestions.
daira was unassigned by warner 2011-03-25 21:11:57 +00:00
warner self-assigned this 2011-03-25 21:11:57 +00:00
Author

Attachment 1363-p3.dpatch (90258 bytes) added

next batch of refactoring patches

**Attachment** 1363-p3.dpatch (90258 bytes) added next batch of refactoring patches
Author

ok, here's the next bundle. I'm getting close to the limit of what I can clean up without overlapping with MDMF, but there are a few more I might try to work on. Please review so I can land this puppy.

ok, here's the next bundle. I'm getting close to the limit of what I can clean up without overlapping with MDMF, but there are a few more I might try to work on. Please review so I can land this puppy.
warner was unassigned by zooko 2011-06-23 20:47:28 +00:00
zooko self-assigned this 2011-06-23 20:47:28 +00:00
daira modified the milestone from undecided to 1.9.0 2011-07-16 20:32:54 +00:00

Still working on this! Will prioritize it.

Still working on this! Will prioritize it.

Worked on this in the car on the way here last week. Planning to work on this and #1385 on the car ride home tomorrow (about ten hours, with one co-driver and two children in the car). In order to make the deadline for new-feature patches for v1.9, which is tomorrow.

Worked on this in the car on the way here last week. Planning to work on this and #1385 on the car ride home tomorrow (about ten hours, with one co-driver and two children in the car). In order to make the deadline for new-feature patches for v1.9, which is tomorrow.

attachment:1363-p3.dpatch reviewed. This is all really good stuff—I'm glad to see this sort of clean-up branch. I'm sorry it took me so long to review it. I intend to really elevate the priority of reviewing patches in my day to day life so that whenever Brian posts a new patch review-needed, I drop everything and review it right away.

Patches that get +1 from me and I intend to commit them to trunk soon:

Patches with issues:

[attachment:1363-p3.dpatch](/tahoe-lafs/trac/attachments/000078ac-c185-57de-d94f-c55b745d407b) reviewed. This is all really good stuff—I'm glad to see this sort of clean-up branch. I'm sorry it took me so long to review it. I intend to really elevate the priority of reviewing patches in my day to day life so that whenever Brian posts a new patch `review-needed`, I drop everything and review it right away. Patches that get +1 from me and I intend to commit them to trunk soon: * [test_immutable.Test: rewrite to use [NoNetworkGrid](wiki/NoNetworkGrid), now takes 2.7s not 97s](http://tahoe-lafs.org/trac/tahoe-lafs/attachment/ticket/1363/1363-p3.dpatch#L548) By the way, on my Macbook Pro, `allmydata.test.test_immutable.Test` takes 8s, not 97s! After the patch "test_immutable.Test: rewrite to use NoNetworkGrid" then it takes about 2s on my system. This isn't an issue with the patch, but it may indicate there is an issue with your system. Improving the speed of the tests from 8s to 2s is valuable even if your system could be changed to run the old tests in a mere 8s. You could look at the timings of the buildslaves for comparison, e.g.: [FranXois lenny-armv5tel](http://tahoe-lafs.org/buildbot/builders/FranXois%20lenny-armv5tel/builds/486/steps/test/logs/timings), [Brian ubuntu-linode](http://tahoe-lafs.org/buildbot/builders/Brian%20ubuntu-i386%20linode/builds/252/steps/test/logs/timings), [Arthur lenny-c7-32bit](http://tahoe-lafs.org/buildbot/builders/Arthur%20lenny%20c7%2032bit/builds/739/steps/test/logs/timings), [FreeStorm WinXP-x86](http://tahoe-lafs.org/buildbot/builders/FreeStorm%20WinXP-x86%20py2.6/builds/543/steps/test/logs/timings). * [remove now-unused [ShareManglingMixin](wiki/ShareManglingMixin)](http://tahoe-lafs.org/trac/tahoe-lafs/attachment/ticket/1363/1363-p3.dpatch#L842); Would have been better included in the previous patch. I'll rerecord them together. * [apply zooko's advice: storage_client get_known_servers() returns a frozenset, caller sorts](http://tahoe-lafs.org/trac/tahoe-lafs/attachment/ticket/1363/1363-p3.dpatch#L40) * [DownloadStatus.add_known_share wants to be used by Finder, web.status](http://tahoe-lafs.org/trac/tahoe-lafs/attachment/ticket/1363/1363-p3.dpatch#L1320); Wouldn't it be better to open a ticket than to put an `XXX` comment in the source code? Otherwise +1 on this patch. * [replace IServer.name() with get_name(), and get_longname()](http://tahoe-lafs.org/trac/tahoe-lafs/attachment/ticket/1363/1363-p3.dpatch#L253) and [upload.py: apply David-Sarah's advice rename (un)contacted(2) trackers to first_pass/second_pass/next_pass](http://tahoe-lafs.org/trac/tahoe-lafs/attachment/ticket/1363/1363-p3.dpatch#L76); +1, but I rerecorded them to use `darcs replace` instead of hunk editing, because that avoided a lot of unnecessary merge conflicts with Kevan's #1382 branch. I'll attach my rerecorded patch to this ticket. I also took notes during the process of merging these with #1382, which notes I'll post to tahoe-dev later, explaining why `darcs replace` was so valuable in this case. Also [in set_shareholders()](http://tahoe-lafs.org/trac/tahoe-lafs/attachment/ticket/1363/1363-p3.dpatch#L209) the docstring is now wrong in describing the "upload_trackers" and "already_serverids". I'll change my rerecord of the patch to fix that. Patches with issues: * [remove get_serverid from [DownloadStatus](wiki/DownloadStatus).add_request_sent and customers](http://tahoe-lafs.org/trac/tahoe-lafs/attachment/ticket/1363/1363-p3.dpatch#L1145) and [remove get_serverid from [DownloadStatus](wiki/DownloadStatus).add_dyhb_sent and customers](http://tahoe-lafs.org/trac/tahoe-lafs/attachment/ticket/1363/1363-p3.dpatch#L1013); These two had lots of merge conflicts with trunk. I rebased these patches onto the current head of trunk and will attach them to this ticket for Brian (if available) to review. * [web/status.py: remove spurious whitespace, no code changes](http://tahoe-lafs.org/trac/tahoe-lafs/attachment/ticket/1363/1363-p3.dpatch#L1272); merge conflicts; an unimportant patch; I ran `M-x whitespace-cleanup` on this file and emacs made only one change (removing a trailing blank line at end of file). * [remove nodeid from [WriteBucketProxy](wiki/WriteBucketProxy) classes and customers](http://tahoe-lafs.org/trac/tahoe-lafs/attachment/ticket/1363/1363-p3.dpatch#L1334); Shouldn't the `rref` parameter to `make_write_bucket_proxy()` be removed in favor of using the `.get_rref()` method of the `server` argument? Otherwise +1 * [remove get_serverid() from [ReadBucketProxy](wiki/ReadBucketProxy) and customers, including Checker](http://tahoe-lafs.org/trac/tahoe-lafs/attachment/ticket/1363/1363-p3.dpatch#L1515) likewise, shouldn't the `ReadBucketProxy` stop accepting an `rref` argument now that it has a `server` argument to its constructor? Otherwise +1. If Brian (or someone) tells me that these two patches should go in as-is without removing the `rref` parameter, I'm okay with that.

Attachment remove_get_serverid_from_DownloadStatus.add_request_sent_and_add_block_request-rebased.darcs.patch (29063 bytes) added

**Attachment** remove_get_serverid_from_DownloadStatus.add_request_sent_and_add_block_request-rebased.darcs.patch (29063 bytes) added

Okay of the five patches with issues, attachment:remove_get_serverid_from_DownloadStatus.add_request_sent_and_add_block_request-rebased.darcs.patch is my rebase of the first two, the whitespace we can skip, and I want to hear from Brian or someone that the last two are okay as-is, or else get an updated version that removes the rref param.

review-needed!

Okay of the five patches with issues, [attachment:remove_get_serverid_from_DownloadStatus.add_request_sent_and_add_block_request-rebased.darcs.patch](/tahoe-lafs/trac/attachments/000078ac-c185-57de-d94f-ee534928d2da) is my rebase of the first two, the whitespace we can skip, and I want to hear from Brian or someone that the last two are okay as-is, or else get an updated version that removes the `rref` param. `review-needed`!
zooko removed their assignment 2011-08-01 19:03:32 +00:00
warner was assigned by zooko 2011-08-01 19:03:32 +00:00

In changeset:880758340fb827f6:

upload.py: apply David-Sarah's advice rename (un)contacted(2) trackers to first_pass/second_pass/next_pass
This patch was written by Brian but was re-recorded by Zooko (with David-Sarah looking on) to use darcs replace instead of editing to rename the three variables to their new names.
refs #1363
In changeset:880758340fb827f6: ``` upload.py: apply David-Sarah's advice rename (un)contacted(2) trackers to first_pass/second_pass/next_pass This patch was written by Brian but was re-recorded by Zooko (with David-Sarah looking on) to use darcs replace instead of editing to rename the three variables to their new names. refs #1363 ```
Author

In changeset:0f11d35f855ed7c0:

replace IServer.name() with get_name(), and get_longname()

This patch was originally written by Brian, but was re-recorded by Zooko to use
darcs replace instead of hunks for any file in which it would result in fewer
total hunks.
refs #1363
In changeset:0f11d35f855ed7c0: ``` replace IServer.name() with get_name(), and get_longname() This patch was originally written by Brian, but was re-recorded by Zooko to use darcs replace instead of hunks for any file in which it would result in fewer total hunks. refs #1363 ```
Author

In changeset:b07af5e1a2e35320:

DownloadStatus.add_known_share wants to be used by Finder, web.status
refs #1363
In changeset:b07af5e1a2e35320: ``` DownloadStatus.add_known_share wants to be used by Finder, web.status refs #1363 ```
Author

In changeset:0605c77f08fb4b78:

test_immutable.Test: rewrite to use NoNetworkGrid, now takes 2.7s not 97s
remove now-unused ShareManglingMixin
refs #1363
In changeset:0605c77f08fb4b78: ``` test_immutable.Test: rewrite to use NoNetworkGrid, now takes 2.7s not 97s remove now-unused ShareManglingMixin refs #1363 ```
Author

In changeset:feca907499070bc1:

apply zooko's advice: storage_client get_known_servers() returns a frozenset, caller sorts
refs #1363
In changeset:feca907499070bc1: ``` apply zooko's advice: storage_client get_known_servers() returns a frozenset, caller sorts refs #1363 ```

In changeset:dc668754793087a9:

remove get_serverid from DownloadStatus.add_block_request and customers
This is a rebase of a patch Brian originally wrote. I haven't changed the intent of that patch, just ported it to trunk.
refs #1363
In changeset:dc668754793087a9: ``` remove get_serverid from DownloadStatus.add_block_request and customers This is a rebase of a patch Brian originally wrote. I haven't changed the intent of that patch, just ported it to trunk. refs #1363 ```

In changeset:6b2e7985955fb312:

remove get_serverid from DownloadStatus.add_dyhb_request and customers
This patch is a rebase of a patch originally written by Brian. I didn't change any of the intent of Brian's patch, just ported it to current trunk.
refs #1363
In changeset:6b2e7985955fb312: ``` remove get_serverid from DownloadStatus.add_dyhb_request and customers This patch is a rebase of a patch originally written by Brian. I didn't change any of the intent of Brian's patch, just ported it to current trunk. refs #1363 ```
Author

Your modified patches in
attachment:remove_get_serverid_from_DownloadStatus.add_request_sent_and_add_block_request-rebased.darcs.patch
look fine, except for two hunks in the second patch that have a typo
(possibly one that I introduced in one patch and then fixed in a
subsequent one).

hunk ./src/allmydata/test/test_web.py 88
-    serverid_a = hashutil.tagged_hash("foo", "serverid_a")[:20]
-    serverid_b = hashutil.tagged_hash("foo", "serverid_b")[:20]
+    serverA = FakeIServer(hashutil.tagged_hash("foo", "serverid_a")[:20])
+    serverB = FakeIServer(hashutil.tagged_hash("foo", "serverid_a")[:20])

that last line needs to use serverid_b, not serverid_a.

hunk ./src/allmydata/test/test_web.py 117
-    e = ds.add_block_request(serverid_a, 1, 120, 30, now+1) # left unfinished
+    e = ds.add_block_request(serverB, 1, 120, 30, now+1) # left unfinished

same issue, it needs to be "serverA".

As for changing make_write_bucket_proxy() to take an IServer
instead of a (rref, IServer) pair: nope, the rref passed into
make_write_bucket_proxy() is an RIBucketWriter (bound to a
specific share), whereas IServer.get_rref() returns the server's
RIStorageServer (on which you use allocate_buckets() to get
an RIBucketWriter). I suppose it'd have been more obvious if the
parameter name was "bucket_rref" instead of just "rref".

Your modified patches in [attachment:remove_get_serverid_from_DownloadStatus.add_request_sent_and_add_block_request-rebased.darcs.patch](/tahoe-lafs/trac/attachments/000078ac-c185-57de-d94f-ee534928d2da) look fine, except for two hunks in the second patch that have a typo (possibly one that I introduced in one patch and then fixed in a subsequent one). ``` hunk ./src/allmydata/test/test_web.py 88 - serverid_a = hashutil.tagged_hash("foo", "serverid_a")[:20] - serverid_b = hashutil.tagged_hash("foo", "serverid_b")[:20] + serverA = FakeIServer(hashutil.tagged_hash("foo", "serverid_a")[:20]) + serverB = FakeIServer(hashutil.tagged_hash("foo", "serverid_a")[:20]) ``` that last line needs to use serverid_b, not serverid_a. ``` hunk ./src/allmydata/test/test_web.py 117 - e = ds.add_block_request(serverid_a, 1, 120, 30, now+1) # left unfinished + e = ds.add_block_request(serverB, 1, 120, 30, now+1) # left unfinished ``` same issue, it needs to be "serverA". As for changing `make_write_bucket_proxy()` to take an `IServer` instead of a `(rref, IServer)` pair: nope, the rref passed into `make_write_bucket_proxy()` is an `RIBucketWriter` (bound to a specific share), whereas `IServer.get_rref()` returns the server's `RIStorageServer` (on which you use `allocate_buckets()` to get an `RIBucketWriter`). I suppose it'd have been more obvious if the parameter name was "bucket_rref" instead of just "rref".
Author

In changeset:550d67f51f7ebd45:

remove get_serverid() from ReadBucketProxy and customers, including Checker
and debug.py dump-share commands
refs #1363
In changeset:550d67f51f7ebd45: ``` remove get_serverid() from ReadBucketProxy and customers, including Checker and debug.py dump-share commands refs #1363 ```
Author

In changeset:3668cb3d068b7f3a:

remove nodeid from WriteBucketProxy classes and customers
refs #1363
In changeset:3668cb3d068b7f3a: ``` remove nodeid from WriteBucketProxy classes and customers refs #1363 ```
zooko added the
r/fixed
label 2011-08-02 00:00:36 +00:00
zooko closed this issue 2011-08-02 00:00:36 +00:00
Author

note: changeset:5bf1ffbc879cf082 has some more work along these lines

note: changeset:5bf1ffbc879cf082 has some more work along these lines
Brian Warner <warner@lothar.com> commented 2016-08-26 21:48:40 +00:00
Owner

In 54f974d/trunk:

make IServer.get_serverid() use pubkey, not tubid

This is a change I've wanted to make for many years, because when we get
to HTTP-based servers, we won't have tubids for them. What held me back
was that there's code all over the place that uses the serverid for
various purposes, so I wasn't sure it was safe. I did a big push a few
years ago to use IServer instances instead of serverids in most
places (in #1363), and to split out the values that actually depend upon
tubid into separate accessors (like get_lease_seed and
get_foolscap_write_enabler_seed), which I think took care of all the
important uses.

There are a number of places that use get_serverid() as dictionary key
to track shares (Checker results, mutable servermap). I believe these
are happy to use pubkeys instead of tubids: the only thing they do with
get_serverid() is to compare it to other values obtained from
get_serverid(). A few places in the WUI used serverid to compute display
values: these were fixed.

The main trouble was the Helper: it returns a HelperUploadResults (a
Copyable) with a share->server mapping that's keyed by whatever the
Helper's get_serverid() returns. If the uploader and the helper are on
different sides of this change, the Helper could return values that the
uploader won't recognize. This is cosmetic: that mapping is only used to
display the upload results on the "Recent and Active Operations" page.
I've added code to StorageFarmBroker.get_stub_server() to fall back to
tubids when looking up a server, so this should still work correctly
when the uploader is new and the Helper is old. If the Helper is new and
the uploader is old, the upload results will show unusual server ids.

refs ticket:1363
In [54f974d/trunk](/tahoe-lafs/trac/commit/54f974d44c3d740bf1a41624d5a001952561c3d2): ``` make IServer.get_serverid() use pubkey, not tubid This is a change I've wanted to make for many years, because when we get to HTTP-based servers, we won't have tubids for them. What held me back was that there's code all over the place that uses the serverid for various purposes, so I wasn't sure it was safe. I did a big push a few years ago to use IServer instances instead of serverids in most places (in #1363), and to split out the values that actually depend upon tubid into separate accessors (like get_lease_seed and get_foolscap_write_enabler_seed), which I think took care of all the important uses. There are a number of places that use get_serverid() as dictionary key to track shares (Checker results, mutable servermap). I believe these are happy to use pubkeys instead of tubids: the only thing they do with get_serverid() is to compare it to other values obtained from get_serverid(). A few places in the WUI used serverid to compute display values: these were fixed. The main trouble was the Helper: it returns a HelperUploadResults (a Copyable) with a share->server mapping that's keyed by whatever the Helper's get_serverid() returns. If the uploader and the helper are on different sides of this change, the Helper could return values that the uploader won't recognize. This is cosmetic: that mapping is only used to display the upload results on the "Recent and Active Operations" page. I've added code to StorageFarmBroker.get_stub_server() to fall back to tubids when looking up a server, so this should still work correctly when the uploader is new and the Helper is old. If the Helper is new and the uploader is old, the upload results will show unusual server ids. refs ticket:1363 ```
Sign in to join this conversation.
No labels
c/code
c/code-dirnodes
c/code-encoding
c/code-frontend
c/code-frontend-cli
c/code-frontend-ftp-sftp
c/code-frontend-magic-folder
c/code-frontend-web
c/code-mutable
c/code-network
c/code-nodeadmin
c/code-peerselection
c/code-storage
c/contrib
c/dev-infrastructure
c/docs
c/operational
c/packaging
c/unknown
c/website
kw:2pc
kw:410
kw:9p
kw:ActivePerl
kw:AttributeError
kw:DataUnavailable
kw:DeadReferenceError
kw:DoS
kw:FileZilla
kw:GetLastError
kw:IFinishableConsumer
kw:K
kw:LeastAuthority
kw:Makefile
kw:RIStorageServer
kw:StringIO
kw:UncoordinatedWriteError
kw:about
kw:access
kw:access-control
kw:accessibility
kw:accounting
kw:accounting-crawler
kw:add-only
kw:aes
kw:aesthetics
kw:alias
kw:aliases
kw:aliens
kw:allmydata
kw:amazon
kw:ambient
kw:annotations
kw:anonymity
kw:anonymous
kw:anti-censorship
kw:api_auth_token
kw:appearance
kw:appname
kw:apport
kw:archive
kw:archlinux
kw:argparse
kw:arm
kw:assertion
kw:attachment
kw:auth
kw:authentication
kw:automation
kw:avahi
kw:availability
kw:aws
kw:azure
kw:backend
kw:backoff
kw:backup
kw:backupdb
kw:backward-compatibility
kw:bandwidth
kw:basedir
kw:bayes
kw:bbfreeze
kw:beta
kw:binaries
kw:binutils
kw:bitcoin
kw:bitrot
kw:blacklist
kw:blocker
kw:blocks-cloud-deployment
kw:blocks-cloud-merge
kw:blocks-magic-folder-merge
kw:blocks-merge
kw:blocks-raic
kw:blocks-release
kw:blog
kw:bom
kw:bonjour
kw:branch
kw:branding
kw:breadcrumbs
kw:brians-opinion-needed
kw:browser
kw:bsd
kw:build
kw:build-helpers
kw:buildbot
kw:builders
kw:buildslave
kw:buildslaves
kw:cache
kw:cap
kw:capleak
kw:captcha
kw:cast
kw:centos
kw:cffi
kw:chacha
kw:charset
kw:check
kw:checker
kw:chroot
kw:ci
kw:clean
kw:cleanup
kw:cli
kw:cloud
kw:cloud-backend
kw:cmdline
kw:code
kw:code-checks
kw:coding-standards
kw:coding-tools
kw:coding_tools
kw:collection
kw:compatibility
kw:completion
kw:compression
kw:confidentiality
kw:config
kw:configuration
kw:configuration.txt
kw:conflict
kw:connection
kw:connectivity
kw:consistency
kw:content
kw:control
kw:control.furl
kw:convergence
kw:coordination
kw:copyright
kw:corruption
kw:cors
kw:cost
kw:coverage
kw:coveralls
kw:coveralls.io
kw:cpu-watcher
kw:cpyext
kw:crash
kw:crawler
kw:crawlers
kw:create-container
kw:cruft
kw:crypto
kw:cryptography
kw:cryptography-lib
kw:cryptopp
kw:csp
kw:curl
kw:cutoff-date
kw:cycle
kw:cygwin
kw:d3
kw:daemon
kw:darcs
kw:darcsver
kw:database
kw:dataloss
kw:db
kw:dead-code
kw:deb
kw:debian
kw:debug
kw:deep-check
kw:defaults
kw:deferred
kw:delete
kw:deletion
kw:denial-of-service
kw:dependency
kw:deployment
kw:deprecation
kw:desert-island
kw:desert-island-build
kw:design
kw:design-review-needed
kw:detection
kw:dev-infrastructure
kw:devpay
kw:directory
kw:directory-page
kw:dirnode
kw:dirnodes
kw:disconnect
kw:discovery
kw:disk
kw:disk-backend
kw:distribute
kw:distutils
kw:dns
kw:do_http
kw:doc-needed
kw:docker
kw:docs
kw:docs-needed
kw:dokan
kw:dos
kw:download
kw:downloader
kw:dragonfly
kw:drop-upload
kw:duplicity
kw:dusty
kw:earth-dragon
kw:easy
kw:ec2
kw:ecdsa
kw:ed25519
kw:egg-needed
kw:eggs
kw:eliot
kw:email
kw:empty
kw:encoding
kw:endpoint
kw:enterprise
kw:enum34
kw:environment
kw:erasure
kw:erasure-coding
kw:error
kw:escaping
kw:etag
kw:etch
kw:evangelism
kw:eventual
kw:example
kw:excess-authority
kw:exec
kw:exocet
kw:expiration
kw:extensibility
kw:extension
kw:failure
kw:fedora
kw:ffp
kw:fhs
kw:figleaf
kw:file
kw:file-descriptor
kw:filename
kw:filesystem
kw:fileutil
kw:fips
kw:firewall
kw:first
kw:floatingpoint
kw:flog
kw:foolscap
kw:forward-compatibility
kw:forward-secrecy
kw:forwarding
kw:free
kw:freebsd
kw:frontend
kw:fsevents
kw:ftp
kw:ftpd
kw:full
kw:furl
kw:fuse
kw:garbage
kw:garbage-collection
kw:gateway
kw:gatherer
kw:gc
kw:gcc
kw:gentoo
kw:get
kw:git
kw:git-annex
kw:github
kw:glacier
kw:globalcaps
kw:glossary
kw:google-cloud-storage
kw:google-drive-backend
kw:gossip
kw:governance
kw:grid
kw:grid-manager
kw:gridid
kw:gridsync
kw:grsec
kw:gsoc
kw:gvfs
kw:hackfest
kw:hacktahoe
kw:hang
kw:hardlink
kw:heartbleed
kw:heisenbug
kw:help
kw:helper
kw:hint
kw:hooks
kw:how
kw:how-to
kw:howto
kw:hp
kw:hp-cloud
kw:html
kw:http
kw:https
kw:i18n
kw:i2p
kw:i2p-collab
kw:illustration
kw:image
kw:immutable
kw:impressions
kw:incentives
kw:incident
kw:init
kw:inlineCallbacks
kw:inotify
kw:install
kw:installer
kw:integration
kw:integration-test
kw:integrity
kw:interactive
kw:interface
kw:interfaces
kw:interoperability
kw:interstellar-exploration
kw:introducer
kw:introduction
kw:iphone
kw:ipkg
kw:iputil
kw:ipv6
kw:irc
kw:jail
kw:javascript
kw:joke
kw:jquery
kw:json
kw:jsui
kw:junk
kw:key-value-store
kw:kfreebsd
kw:known-issue
kw:konqueror
kw:kpreid
kw:kvm
kw:l10n
kw:lae
kw:large
kw:latency
kw:leak
kw:leasedb
kw:leases
kw:libgmp
kw:license
kw:licenss
kw:linecount
kw:link
kw:linux
kw:lit
kw:localhost
kw:location
kw:locking
kw:logging
kw:logo
kw:loopback
kw:lucid
kw:mac
kw:macintosh
kw:magic-folder
kw:manhole
kw:manifest
kw:manual-test-needed
kw:map
kw:mapupdate
kw:max_space
kw:mdmf
kw:memcheck
kw:memory
kw:memory-leak
kw:mesh
kw:metadata
kw:meter
kw:migration
kw:mime
kw:mingw
kw:minimal
kw:misc
kw:miscapture
kw:mlp
kw:mock
kw:more-info-needed
kw:mountain-lion
kw:move
kw:multi-users
kw:multiple
kw:multiuser-gateway
kw:munin
kw:music
kw:mutability
kw:mutable
kw:mystery
kw:names
kw:naming
kw:nas
kw:navigation
kw:needs-review
kw:needs-spawn
kw:netbsd
kw:network
kw:nevow
kw:new-user
kw:newcaps
kw:news
kw:news-done
kw:news-needed
kw:newsletter
kw:newurls
kw:nfc
kw:nginx
kw:nixos
kw:no-clobber
kw:node
kw:node-url
kw:notification
kw:notifyOnDisconnect
kw:nsa310
kw:nsa320
kw:nsa325
kw:numpy
kw:objects
kw:old
kw:openbsd
kw:openitp-packaging
kw:openssl
kw:openstack
kw:opensuse
kw:operation-helpers
kw:operational
kw:operations
kw:ophandle
kw:ophandles
kw:ops
kw:optimization
kw:optional
kw:options
kw:organization
kw:os
kw:os.abort
kw:ostrom
kw:osx
kw:osxfuse
kw:otf-magic-folder-objective1
kw:otf-magic-folder-objective2
kw:otf-magic-folder-objective3
kw:otf-magic-folder-objective4
kw:otf-magic-folder-objective5
kw:otf-magic-folder-objective6
kw:p2p
kw:packaging
kw:partial
kw:password
kw:path
kw:paths
kw:pause
kw:peer-selection
kw:performance
kw:permalink
kw:permissions
kw:persistence
kw:phone
kw:pickle
kw:pip
kw:pipermail
kw:pkg_resources
kw:placement
kw:planning
kw:policy
kw:port
kw:portability
kw:portal
kw:posthook
kw:pratchett
kw:preformance
kw:preservation
kw:privacy
kw:process
kw:profile
kw:profiling
kw:progress
kw:proxy
kw:publish
kw:pyOpenSSL
kw:pyasn1
kw:pycparser
kw:pycrypto
kw:pycrypto-lib
kw:pycryptopp
kw:pyfilesystem
kw:pyflakes
kw:pylint
kw:pypi
kw:pypy
kw:pysqlite
kw:python
kw:python3
kw:pythonpath
kw:pyutil
kw:pywin32
kw:quickstart
kw:quiet
kw:quotas
kw:quoting
kw:raic
kw:rainhill
kw:random
kw:random-access
kw:range
kw:raspberry-pi
kw:reactor
kw:readonly
kw:rebalancing
kw:recovery
kw:recursive
kw:redhat
kw:redirect
kw:redressing
kw:refactor
kw:referer
kw:referrer
kw:regression
kw:rekey
kw:relay
kw:release
kw:release-blocker
kw:reliability
kw:relnotes
kw:remote
kw:removable
kw:removable-disk
kw:rename
kw:renew
kw:repair
kw:replace
kw:report
kw:repository
kw:research
kw:reserved_space
kw:response-needed
kw:response-time
kw:restore
kw:retrieve
kw:retry
kw:review
kw:review-needed
kw:reviewed
kw:revocation
kw:roadmap
kw:rollback
kw:rpm
kw:rsa
kw:rss
kw:rst
kw:rsync
kw:rusty
kw:s3
kw:s3-backend
kw:s3-frontend
kw:s4
kw:same-origin
kw:sandbox
kw:scalability
kw:scaling
kw:scheduling
kw:schema
kw:scheme
kw:scp
kw:scripts
kw:sdist
kw:sdmf
kw:security
kw:self-contained
kw:server
kw:servermap
kw:servers-of-happiness
kw:service
kw:setup
kw:setup.py
kw:setup_requires
kw:setuptools
kw:setuptools_darcs
kw:sftp
kw:shared
kw:shareset
kw:shell
kw:signals
kw:simultaneous
kw:six
kw:size
kw:slackware
kw:slashes
kw:smb
kw:sneakernet
kw:snowleopard
kw:socket
kw:solaris
kw:space
kw:space-efficiency
kw:spam
kw:spec
kw:speed
kw:sqlite
kw:ssh
kw:ssh-keygen
kw:sshfs
kw:ssl
kw:stability
kw:standards
kw:start
kw:startup
kw:static
kw:static-analysis
kw:statistics
kw:stats
kw:stats_gatherer
kw:status
kw:stdeb
kw:storage
kw:streaming
kw:strports
kw:style
kw:stylesheet
kw:subprocess
kw:sumo
kw:survey
kw:svg
kw:symlink
kw:synchronous
kw:tac
kw:tahoe-*
kw:tahoe-add-alias
kw:tahoe-admin
kw:tahoe-archive
kw:tahoe-backup
kw:tahoe-check
kw:tahoe-cp
kw:tahoe-create-alias
kw:tahoe-create-introducer
kw:tahoe-debug
kw:tahoe-deep-check
kw:tahoe-deepcheck
kw:tahoe-lafs-trac-stream
kw:tahoe-list-aliases
kw:tahoe-ls
kw:tahoe-magic-folder
kw:tahoe-manifest
kw:tahoe-mkdir
kw:tahoe-mount
kw:tahoe-mv
kw:tahoe-put
kw:tahoe-restart
kw:tahoe-rm
kw:tahoe-run
kw:tahoe-start
kw:tahoe-stats
kw:tahoe-unlink
kw:tahoe-webopen
kw:tahoe.css
kw:tahoe_files
kw:tahoewapi
kw:tarball
kw:tarballs
kw:tempfile
kw:templates
kw:terminology
kw:test
kw:test-and-set
kw:test-from-egg
kw:test-needed
kw:testgrid
kw:testing
kw:tests
kw:throttling
kw:ticket999-s3-backend
kw:tiddly
kw:time
kw:timeout
kw:timing
kw:to
kw:to-be-closed-on-2011-08-01
kw:tor
kw:tor-protocol
kw:torsocks
kw:tox
kw:trac
kw:transparency
kw:travis
kw:travis-ci
kw:trial
kw:trickle
kw:trivial
kw:truckee
kw:tub
kw:tub.location
kw:twine
kw:twistd
kw:twistd.log
kw:twisted
kw:twisted-14
kw:twisted-trial
kw:twitter
kw:twn
kw:txaws
kw:type
kw:typeerror
kw:ubuntu
kw:ucwe
kw:ueb
kw:ui
kw:unclean
kw:uncoordinated-writes
kw:undeletable
kw:unfinished-business
kw:unhandled-error
kw:unhappy
kw:unicode
kw:unit
kw:unix
kw:unlink
kw:update
kw:upgrade
kw:upload
kw:upload-helper
kw:uri
kw:url
kw:usability
kw:use-case
kw:utf-8
kw:util
kw:uwsgi
kw:ux
kw:validation
kw:variables
kw:vdrive
kw:verify
kw:verlib
kw:version
kw:versioning
kw:versions
kw:video
kw:virtualbox
kw:virtualenv
kw:vista
kw:visualization
kw:visualizer
kw:vm
kw:volunteergrid2
kw:volunteers
kw:vpn
kw:wapi
kw:warners-opinion-needed
kw:warning
kw:weapi
kw:web
kw:web.port
kw:webapi
kw:webdav
kw:webdrive
kw:webport
kw:websec
kw:website
kw:websocket
kw:welcome
kw:welcome-page
kw:welcomepage
kw:wiki
kw:win32
kw:win64
kw:windows
kw:windows-related
kw:winscp
kw:workaround
kw:world-domination
kw:wrapper
kw:write-enabler
kw:wui
kw:x86
kw:x86-64
kw:xhtml
kw:xml
kw:xss
kw:zbase32
kw:zetuptoolz
kw:zfec
kw:zookos-opinion-needed
kw:zope
kw:zope.interface
p/blocker
p/critical
p/major
p/minor
p/normal
p/supercritical
p/trivial
r/cannot reproduce
r/duplicate
r/fixed
r/invalid
r/somebody else's problem
r/was already fixed
r/wontfix
r/worksforme
t/defect
t/enhancement
t/task
v/0.2.0
v/0.3.0
v/0.4.0
v/0.5.0
v/0.5.1
v/0.6.0
v/0.6.1
v/0.7.0
v/0.8.0
v/0.9.0
v/1.0.0
v/1.1.0
v/1.10.0
v/1.10.1
v/1.10.2
v/1.10a2
v/1.11.0
v/1.12.0
v/1.12.1
v/1.13.0
v/1.14.0
v/1.15.0
v/1.15.1
v/1.2.0
v/1.3.0
v/1.4.1
v/1.5.0
v/1.6.0
v/1.6.1
v/1.7.0
v/1.7.1
v/1.7β
v/1.8.0
v/1.8.1
v/1.8.2
v/1.8.3
v/1.8β
v/1.9.0
v/1.9.0-s3branch
v/1.9.0a1
v/1.9.0a2
v/1.9.0b1
v/1.9.1
v/1.9.2
v/1.9.2a1
v/cloud-branch
v/unknown
No milestone
No project
No assignees
4 participants
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: tahoe-lafs/trac#1363
No description provided.