Bo

Results 173 issues of Bo

We currently have a docker based "remote" host with a "task-spooler" mimicking a scheduler. This can be used to test base remote operations but not for any scenarios with decent...

PyPy finally has [alpha-level support for Python 3.6](https://morepypy.blogspot.com/), which means we can finally test it with SoS. It would be interesting to see if SoS can run on pypy3.6, and...

When a job fail, it would be helpful for the notebook frontend to show the error message. Right now the task engine only gets the status through `sos status` and...

request

We have a path conversion system that assumes that the task can be run on multiple remote systems if the paths are properly converted. The problem here is that it...

discussion

Currently we automatically transfer `a.txt` from local to remote host with ``` input: 'a.txt' task: queue='remote' something ``` and we stop doing so with by specifying `a.txt` as remote. ```...

I forgot to specify `task` in my script and was wondering why the script was not executed on the specified remote host. It might be helpful to send a warning...

In #1033, we went a long way to share variables from substeps, and we ends up with something like ``` %run [1: shared='step_seed'] input: for_each={'i': range(10)} import random seed =...

As we have found out in #1181, file locking is slow and can cause trouble in high-intensity operations. #1181 involves a lock that locks all config files which is shared...

discussion

There is an [`active` option of task](https://vatlab.github.io/sos-docs/doc/documentation/Remote_Execution.html#Option-active). The usage is generally as demontrated in the example ``` !echo "hello" > a.txt task: active=not path('a.txt').exists() sh: echo "Task executed" ``` or...

A typical work patternn for `ipyparallel` is to start multiple local or remote workers and `ipyparallel` would send multiple tasks to them using `map`, `map_async` etc. `ipyparallel` would handle task...

later
discussion