Julius Parulek
Julius Parulek
**Issue** Make sure that processing reporter.event_queue does not yield `ConnectionError`. **Approach** We don't yield ConnectionError, but instead keep processing next events in the queue. If the `Finish` event is received,...
Resinsight / rips requires `protobuf==3.19.1` or lesser version and failing with newer versions. Since ert now depends on protobuf too, which should find out why this is so.
The current state machine exploits functionality of protobuffer `proto2` (see https://github.com/equinor/ert/blob/58670dd7149b917685dac96f86da9923fa751302/src/ert/com_protocol/_schema.proto), which allows us to inject defaults when creating the `DispatcherMessage`. Neverthelles it is recommended to upgrade to `proto3`, which...
Create a single runSimulations function to be used in both async and sync context for all run models
Currently all run models have two `run` functions; one running the async version (eg. https://github.com/equinor/ert/blob/e15c1101e70d150d5a105b50f18300d5013a7bd6/src/ert/shared/models/ensemble_experiment.py#L30) and one running the sync version (eg. https://github.com/equinor/ert/blob/e15c1101e70d150d5a105b50f18300d5013a7bd6/src/ert/shared/models/ensemble_experiment.py#L117). As suggested [here](https://github.com/equinor/ert/pull/3768#issuecomment-1239415793) it would be beneficial...
When working on doe (design of experiment) it is currently quite cumbersome to read the parameters from the design matrix file (eg. by means of an external job) and then...
The following states and the corresponding transitions should be moved to a stand-alone file: https://github.com/equinor/ert/blob/202ccd9c5000b1bb86b7b179f9d0dd4d62e7e1cb/src/ert/_c_wrappers/job_queue/queue.py#L61-L86
- A new asyncio.loop is set in base_run_model to run the entire EEAsync. - EnsembleEvaluatorAsync runs when the **scheduler** feature is enabled - This keeps the old synced EnsembleEvaluator untouched...
The goal is to enable Scheduler feature by default when using LSF queue. Blockers: - [x] https://github.com/equinor/komodo-releases/issues/5126 - [x] #7186 - [x] #7203 - [ ] #7439 - [x] #7208...
The goal is the refactor `EnsembleEvaluator` to use async purely. On the first glance it might be doable. There a few caveats though represented by `BatchingDispatcher` (using threads for communication)...