saschahofmann
saschahofmann
Yes of course here you go ```python File "..python3.9/site-packages/django/core/handlers/exception.py", line 55, in inner response = get_response(request) File "..python3.9/site-packages/django/core/handlers/base.py", line 197, in _get_response response = wrapped_callback(request, *callback_args, **callback_kwargs) File "..python3.9/site-packages/django/views/decorators/csrf.py", line...
I tried to trace it around myself the problem was always there because `get_queryset` of `PagesAPIViewSet` always expected a request but it was never called in the schema creation for...
Is there a way for me to somehow ignore these new views?
Ok I am able to get rid of the error by monkey patching PagesAPIViewset like this ```PagesAPIViewSet.schema = None``` That way it's ignored during schema creation. not ideal though
I think this error is actually multiprocessing not working at all. I just tried on a different machine and got the same code just running their basic example ```python from...
I think this caused by running the code in a Jupyter Notebook. I could run the minimum multiprocessing example from my last answer in the same environment in a normal...
Of course, my "reproducible" example now started working in the script as well.
Alright. It seems to be the version of Xarray or Dask. I pinned them to the ones mentioned in the original post and now it also doesn't finish in the...
he example from the original post **doesnt** work even after I updated the packages but if I change the chunking e.g. like this `chunk(location=1,time=2)` it starts working. Weirdly enough it...
I simplied the example now the "process" function is only ```python def process(dataset): return dataset.sum().compute() ``` It still fails. An example using the same data but only using dask without...