22

I want to start my notebooks with jupyter notebook --NotebookApp.iopub_data_rate_limit=10000000000 arguments. Where one could set it in JupyterHub?

DuckQueen
  • 100
  • 8
  • 52
  • 121

4 Answers4

28

Open the command line and enter

jupyter notebook --NotebookApp.iopub_data_rate_limit=1e10

This should start jupyter with the increased data rate.

Stefan
  • 7,735
  • 3
  • 43
  • 96
Workhorse
  • 1,286
  • 1
  • 13
  • 19
11

You have to create config file using this command $ jupyter notebook --generate-config, The answer in this link

Adil Blanco
  • 614
  • 2
  • 6
  • 20
9

04: "IOPUB data rate exceeded" problem of "jupyter low memory.." in windows:

  1. open cmd:
  2. in main path:C:\Users\siege> (this is my root path)

    type the command: "jupyter notebook --generate-config"

    the you hav: C:\Users\siege>jupyter notebook --generate-config

  3. system will generate "jupyter_notebook_config.py" in path:C:\Users\siege>.jupyter

  4. open "jupyter_notebook_config.py" find the line

    #c.NotebookApp.iopub_data_rate_limit = 1000000

    uncomment it and change it to:

    c.NotebookApp.iopub_data_rate_limit = 100000000

  5. save it

  6. restart jupyter

https://www.youtube.com/watch?v=B_YlLf6fa5A

Sociopath
  • 12,395
  • 17
  • 43
  • 69
Vahab
  • 181
  • 2
  • 5
  • this is the only correct answer since it works with `jupyterhub` (not just `jupyter notebook/lab`) as per the OP – casper.dcl Aug 06 '20 at 11:07
2

to enbale it with jupyter-lab, use the following cmd for used environment

conda activate 'your env'
jupyter-lab --NotebookApp.iopub_data_rate_limit=1e10
Ayoub Benayache
  • 933
  • 11
  • 26