pkg icon indicating copy to clipboard operation
pkg copied to clipboard

Peer-to-peer cloud environment

Results 16 pkg issues
Sort by recently updated
recently updated
newest added

An efficient executor implementation requires some sort of process tree. I have implemented the tree in [this branch](https://github.com/wetware/ww/tree/v0.1.0-boot-cap), but populating it is another issue. @lthibault @aratz-lasa or anyone else, atm...

help wanted
security
Performance

Right now we tend to implement a client (mostly utils that interact with a server) and a server in the same file and package. It would be useful to be...

cleanup

## Tasks - [ ] ~Define Go interface for `Anchor` type~ - [ ] ~Implement `Anchor` fields for `client.Node`~ - [ ] ~Implement `anchor.Host` (cluster host)~ - [ ] ~Implement...

enhancement

Should be a simple matter of adding a WebTransport mutiaddr [here](https://github.com/wetware/ww/blob/master/internal/cmd/start/start.go#L35-L36). We'll want to reuse the same IP/port.

enhancement
good first issue

Flagging this ahead of #70. The current service discovery implementation introduces a mild security concern. While not a vulnerability in and of itself, it is likely to confuse users into...

security

## Overview Follow-up thoughts on some of the notes in the original [HackMD file](https://hackmd.io/@fCsHyW7yR3C5lGQFbh9KdQ/BkiAsWeTs). I think you can make a convoluted case that this is kinda-sorta two-phase commit (2PC), but...

documentation

We're currently observing a fair number of undeliverable messages when using the pubsub capability. At a glance, it seems like we should be able to combine libp2p's `pubsub.Tracer` interface and...

enhancement

## Tasks - [ ] Add `runtime/trace` regions - [ ] Add `runtime/pprof` labels

enhancement

It is common for `pubsub.Topic.Publish()` to be called repeatedly in order to stream events to a topic. However, this method blocks until the RPC call round-trips, which degrades performance. While...

enhancement