Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

DSS users will be able to spawn sessions with one of the environments summarised in the table below. This can be selected from the "Select an Environment" dropdown selector on the JupyterHub Launcher, and depending on the environment, additional options may be configurable.

Name

Use case

RAM

CPU

Duration

ECMWF Data Store Service - SMALL

Downloading, inspecting and plotting data products found on the Data-Stores

2

1

12 hours

ECMWF Data Store Service - MEDIUM

Some small data processing, e.g. data averaging of small files

4

2

3 hours


Info
titleSession priorities

In the first deployment smaller (and shorter) sessions will be prioritised to ensure fair usage of the platform. These priorities are to be monitored closely and will evolve as the project develops.

...

Expand
titleconda-forge environment.yml
stashincludebyfilepath
Code Block
repoSlugecmwf-jupyterhub-docker
branchIdrefs/heads/main
projectKeyJUP
filepathsingleuser/ecmwf/ecmwf-env.yml
languageyml
titleenvironment.yml
name: base
channels:
  - conda-forge
dependencies:
  - python
  - pip
  - jupyterlab-git
  - ipywidgets
  - nodejs
  - git
  - yaml
  - pyyaml
  - beautifulsoup4
  - jupyter-server-proxy
  - numpy
  - pandas
  - xarray
  - numexpr
  - scipy
  - seaborn
  - dask
  - cartopy
  - shapely
  - plotly
  - netcdf4
  - cf-units
  - Markdown
  - toolz
  - tqdm
  - adjustText
  - aws-requests-auth
  - bokeh
  - voila
  - docstring_parser
  - filelock
  - metview-batch
  - metview-python
  - cdsapi
  - ecmwf-api-client
  - ecmwf-opendata
  - pip:
    - earthkit
applicationLinka675ea11-b2c4-336c-bfb6-077e786ef5b2


You can install additional packages from the (open-source) conda-forge channel (`conda install PACKAGE-NAME`), or from PyPi (`pip install PACKAGE-NAME`). This packages will be installed in your local storage and will be available next time you create a session.

...