feat: Enhance Deduplicated Mycelium example with multiple workers

- Updated the master node to support multiple workers, allowing for
  increased scalability and redundancy.
- Modified the worker node to simplify initialization and connection
  to the master.
- Added logging statements for better monitoring and debugging.
This commit is contained in:
Mahmoud Emad
2025-03-03 17:34:41 +02:00
parent 42b0c4d48f
commit 9dbc36d634
2 changed files with 25 additions and 37 deletions

View File

@@ -5,24 +5,11 @@ import freeflowuniverse.herolib.data.ourdb
worker_public_key := '46a9f9cee1ce98ef7478f3dea759589bbf6da9156533e63fed9f233640ac072c'
// Create a worker node with a unique database path
mut streamer := ourdb.get_streamer(id: 'frBvtZQeqf') or {
ourdb.new_streamer(
incremental_mode: false
server_port: 9000 // Use different port than master
is_worker: true
)!
}
// Add worker to the tree
streamer.add_worker(worker_public_key)!
// This will keep running and listening for updates
streamer.listen()!
println('Listening for updates...')
// Now we can read from the database
data := streamer.read(
id: 1
worker_public_key: worker_public_key
mut streamer := ourdb.new_streamer(
incremental_mode: false
server_port: 9000 // Use different port than master
is_worker: true
)!
println('Worker data: ${data.bytestr()}')
// Initialize and run worker node
streamer.listen()!