wui: "since" and "announced" columns are confusing #1973
Labels
No Label
0.2.0
0.3.0
0.4.0
0.5.0
0.5.1
0.6.0
0.6.1
0.7.0
0.8.0
0.9.0
1.0.0
1.1.0
1.10.0
1.10.1
1.10.2
1.10a2
1.11.0
1.12.0
1.12.1
1.13.0
1.14.0
1.15.0
1.15.1
1.2.0
1.3.0
1.4.1
1.5.0
1.6.0
1.6.1
1.7.0
1.7.1
1.7β
1.8.0
1.8.1
1.8.2
1.8.3
1.8β
1.9.0
1.9.0-s3branch
1.9.0a1
1.9.0a2
1.9.0b1
1.9.1
1.9.2
1.9.2a1
LeastAuthority.com automation
blocker
cannot reproduce
cloud-branch
code
code-dirnodes
code-encoding
code-frontend
code-frontend-cli
code-frontend-ftp-sftp
code-frontend-magic-folder
code-frontend-web
code-mutable
code-network
code-nodeadmin
code-peerselection
code-storage
contrib
critical
defect
dev-infrastructure
documentation
duplicate
enhancement
fixed
invalid
major
minor
n/a
normal
operational
packaging
somebody else's problem
supercritical
task
trivial
unknown
was already fixed
website
wontfix
worksforme
No Milestone
No Assignees
4 Participants
Notifications
Due Date
No due date set.
Reference: tahoe-lafs/trac-2024-07-25#1973
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The list of storage servers in the gateway's web ui includes two columns containing timestamps, labeled "since" and "announced".
I expected that "announced" would be the most recent time that introducer received an announcement from the storage server, and "since" would be the time that the gateway's current connection to the storage server was opened (or, in the case of a disconnected server, the time that the connection was lost).
Instead, it appears that "announced" is actually the time that the gateway first received the announcement from the introducer (which is the time that the running instance of the gateway first successfully connected to the introducer, except in the less common case of storage servers that the introducer learned about after that time).
It appears that the "since" column is doing what I expected in the case of connected servers (showing when the connection was made) but in the case of disconnected servers it shows the current time (when the page was rendered).
The "announced" column is rarely useful with its current behavior, and perhaps should simply be removed.
The "since" column is useful for connected servers, as it shows how long they've been connected. For disconnected servers the current behavior is also somewhat useful as a stopgap until #1972 (wui: show time page was rendered) is implemented.
However, for disconnected servers there are two things that would be more useful to know, neither of which are currently displayed: when it became disconnected (or better, when it last responded to communication), and when the last connection attempt was made. (Or is that what the current time actually is? Is it constantly attempting to reconnect?)
Related: #816 (Add ping-all-servers button to welcome page)
Merging in #311 (add "last-heard-from" timestamp to welcome page):
Since that ticket was filed, foolscap has acquired an
rref.getDataLastReceivedAt()
method. It was added in foolscap 0.6.1, which Tahoe-LAFS already depends on.Merging in #1174 (say more explicitly what the 'since' date refers to for servers on the welcome page):
Note that given the existence of
rref.getDataLastReceivedAt()
, which should already give us enough information to display something sensible, I think this ticket can be implemented independently of #816.I've started working on this.
This branch removes the Since and Announced columns, as well as the Service column (which I think only ever contains "storage") and replaces them with "Last RX" (using rref.getDataLastReceivedAt) and "Status".
The Status column also says "Connected" or "Disconnected", which addresses #1961, but I don't really like seeing those words repeated so much. Maybe it would be better to have two separate tables for connected and disconnected servers?
The timestamps displayed in these new columns are relative to the page render time but there are absolute timestamps in a tooltip. Is there any objection to changing the TIME_FORMAT on the absolute timestamps to ISO 8601?
I forgot to mention: the issue with the "Since" entry for disconnected servers displaying the time the page was rendered was actually only happening for servers that the gateway hadn't ever connected to.
The cause is that server.get_last_loss_time() returns None, which was being passed to time.localtime() which of course helpfully returns the present time when it gets no argument OR if its argument is None.
My branch says N/A in this case instead.
This ticket has a patch, but no unit tests. It would be a candidate for 1.11 if it had tests.
I will try to get tests for this done in time for 1.11.
I wrote some tests and opened a pull request: https://github.com/tahoe-lafs/tahoe-lafs/pull/129
I reviewed the code and found only one minor issue (https://github.com/leif/tahoe-lafs/commit/486dbfc7bd3c0bbba42a6df8e4564601120aec0e#commitcomment-8720650).
Good patch! And good design! Thank you. ☺
Here are some issues I have with the design:
Okay, so the last of my three comments is merely a note about a related ticket, the first is a request for justification from someone else or else change this branch to put back that information, and the middle is a request for justification from someone else or else change this branch to make the timestamps look the same here as elsewhere in the code.
Thanks!
I get a test failure:
(In case it is relevant, my current local timezone is the same as UTC.)
Zooko and I agreed that "when did we first hear about this server" is rarely meaningful and sometimes confusing. Usually, it would be roughly the time at which the introducer restarts, except when the server is newly added since the introducer last restarted (not when the server reboots). So we are now okay with removing this information.
daira, are you sure your timezone is UTC? mine is UTC and the tests pass; from the test failure, I'd guess you're in UTC+1.
I will soon make the tests timezone-independent, and address the comments on github (fix the whitespace, and add spaces between the time units).
zooko, I hope you can come around to liking the relative timestamps, because I like them much better!
Replying to leif:
Positive.
Replying to leif:
I'm open to the idea because it might be a usability improvement, at least for some users, but I'm concerned about possibly introducing inconsistency by doing it in this patch.
How about if we make this a separate ticket? For #1983 ticket we continue to use the same format of timestamps that we currently use elsewhere in the UI, and then we separately discuss converting all of our timestamps to be consistently showing relative. That discussion should probably be on #1077.
That would help unblock this ticket (#1973).
Here is the latest version of my work on this issue:
https://github.com/tahoe-lafs/tahoe-lafs/compare/master...leif:1973.status-last-rx-rebased.8
This puts relative timestamps in the server column on the welcome page, and normalizes the timestamps everywhere (i think) else in the web UI.
I think this is ready to merge. It addresses all of the github comments in the previous versions linked from the commit message.
LGTM modulo https://github.com/tahoe-lafs/tahoe-lafs/commit/559846c0beb4190809c1c901444b878a4edad8e0#commitcomment-15463357.
merged in https://github.com/tahoe-lafs/tahoe-lafs/commit/a2d724aab7bf6dd2f7ffde37cb21c570ba773bf8
Milestone renamed