synchronous node startup #2491
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
2 Participants
Notifications
Due Date
No due date set.
Reference: tahoe-lafs/trac-2024-07-25#2491
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?
Synchronous node startup is part of the native Tor integration as specified in #517
this untested rough draft attempt at synchronous startup for tahoe in my dev branch:
https://github.com/david415/tahoe-lafs/tree/2491.synchronous-node-startup.0
this change uses
get_all_ip_addresses
from the new foolscap helper function specified in this trac ticket:(@@http://foolscap.lothar.com/trac/ticket/238#comment:-1@@)
More details copied from #517:
At node-creation time (e.g.
tahoe create-node
):tahoe create-node
should allocate (or be told) a port to listen on, and write it into tahoe.cfgtub.port
as a server endpoint descriptor string (sotcp:12345
, ortcp:12345:interface=127.0.0.1
).tub.location
(as a Foolscap connection hint, sotcp:HOST:PORT
)At runtime (e.g.
tahoe start
):BASEDIR/client.port
(which must not be "0"). If that's empty, read tahoe.cfgtub.port
(which might be missing, which means "AUTO"; we can probably reject "0" here too).tahoe create-node
was deployed, but which has never been started withtahoe start
), then we use the utility function to allocate a port, and we write it intoBASEDIR/client.port
.tub.listenOn()
.tub.location
.tub.setLocation()
.Node
/Client
startup functions.Other code changes/accomplishments:
node.Node._tub_ready_observer
andwhen_tub_ready
go awayclient.Client
methods stop usingwhen_tub_ready
(and stop using Deferreds):init_introducer_client
,init_storage
,init_control
,init_helper
,init_key_gen
.tub.setLocation()
before calling any of those init methods, so they can safely usetub.registerReference
Other tasks necessary to make this work:
logport.furl
to a separate machine and useflogtool tail
after a reboot.I've pushed warner/2491-sync to my github, which rebases and builds upon your branch. It passes most tests, but a couple are still broken:
test_system
leaves a dirty reactortest_introducer.ClientSeqnums
is broken.. probably shallowI like how much simpler the setup code is without needing to wait for the Tub to be ready.
(so far, my branch addresses the "runtime" changes above, and the "other code changes/accomplishments", but doesn't change
create-node
, and doesn't touch controlport/logport)I've split out the
tahoe create-node --location=
UI task to #2773.In 6dfcd52/trunk:
In e9e1265/trunk:
(https://github.com/tahoe-lafs/tahoe-lafs/pull/270) is ready for some review.
In 96c6259/trunk:
Ok, that's merged, thanks meejah for the +1.
Still left to do for this ticket:
And we should open a separate ticket for the changes to
tahoe create-node
.This fixes #726, where port-already-in-use errors were written to the log instead of being signalled immediately.
#2773 is for the
tahoe create-node
argv changes: adding--hostname / --location / -- port
As mentioned in #1377, http://twistedmatrix.com/trac/ticket/823 might help address one of the problems this is addressing: errors at startup getting written to the logfile instead of the controlling terminal (and the
tahoe start
process reporting success, not failure).twistd
basically now does the old buildbot trick of waiting for the new child process to get running (by reading from a pipe-to-self) and reporting a short error message if it fails.#2794 is for moving the controlport/logport to a separate Tub, so we can close this ticket now