Kai Davenport
Kai Davenport
As per https://github.com/docker/docker/pull/13441 - there is a new Container config item `PublishService` This PR adds support for it
We need a tracing library for otel integrated with each stage of a job flow - so when we run stress tests we can identify bottlenecks and see what is...
There is a growing need for both compute nodes and requester nodes to deal with job state **over time** Here is an example of things that have cropped up recently:...
We currently have test tools scattered in various places in the codebase - the tests in `pkg/test/devstack` will start a full stack with ipfs and docker whereas other tests (e.g....
> I want to run these integration tests in two modes, one where we have the data already locally and two where we pull from the network So - we...
We are currently operating on a "broadcast everything to everyone" mode over gossipsub - this has the following limitations: * it will not scale * there is no way of...
Currently - the compute node is bidding on jobs without calling the `IsInstalled` method of the executor - this is meaning jobs are being bid on even when Docker is...
The `executor` package has become the defacto home for core job spec types... It also references: ``` import ( "context" "time" "github.com/filecoin-project/bacalhau/pkg/capacitymanager" "github.com/filecoin-project/bacalhau/pkg/storage" "github.com/filecoin-project/bacalhau/pkg/verifier" ) ``` The problem is to...
After processing some videos - I have about 30Mb of results from my job... I was running the job with `--wait` which will try to use the `download` codepath so...
In order to test data locality - we upload a CID to 1 of the 3 ipfs nodes and then test that only one of the nodes picks up the...