[Question]: Why using conda enviroment can't envoke the task_excutor to parse the document?
Describe your problem
我选择了 anaconda 环境,因为 uv 环境需要良好的网络才能从 github 下载依赖项,一切都没问题除了文档解析呢? 这与环境有关吗?
So, what happed for task_executor?
So, what happed for
task_executor?
ever time when I start parsing document the progress rate never beyond 1%, which mean the task_excutor didn't receive the task
Yes, indeed.
Check the error log.
docker logs -f ragflow-server
Yes, indeed. Check the error log.
docker logs -f ragflow-server
I run this server by code
Yes, indeed. Check the error log.
docker logs -f ragflow-server
I found the error in my ragflow_server.log : Traceback (most recent call last): File "/root/.conda/envs/ragflow/lib/python3.11/site-packages/flask/app.py", line 880, in full_dispatch_request rv = self.dispatch_request() ^^^^^^^^^^^^^^^^^^^^^^^ File "/root/.conda/envs/ragflow/lib/python3.11/site-packages/flask/app.py", line 865, in dispatch_request return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) # type: ignore[no-any-return] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/root/.conda/envs/ragflow/lib/python3.11/site-packages/flask_login/utils.py", line 285, in decorated_view return current_app.login_manager.unauthorized() ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/root/.conda/envs/ragflow/lib/python3.11/site-packages/flask_login/login_manager.py", line 178, in unauthorized abort(401) File "/root/.conda/envs/ragflow/lib/python3.11/site-packages/flask/helpers.py", line 272, in abort current_app.aborter(code, *args, **kwargs) File "/root/.conda/envs/ragflow/lib/python3.11/site-packages/werkzeug/exceptions.py", line 863, in call raise self.mapping[code](*args, **kwargs) werkzeug.exceptions.Unauthorized: 401 Unauthorized: The server could not verify that you are authorized to access the URL requested. You either supplied the wrong credentials (e.g. a bad password), or your browser doesn't understand how to supply the credentials required. Is it relative?
Yes, indeed. Check the error log.
docker logs -f ragflow-serverI found the error in my ragflow_server.log : Traceback (most recent call last): File "/root/.conda/envs/ragflow/lib/python3.11/site-packages/flask/app.py", line 880, in full_dispatch_request rv = self.dispatch_request() ^^^^^^^^^^^^^^^^^^^^^^^ File "/root/.conda/envs/ragflow/lib/python3.11/site-packages/flask/app.py", line 865, in dispatch_request return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) # type: ignore[no-any-return] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/root/.conda/envs/ragflow/lib/python3.11/site-packages/flask_login/utils.py", line 285, in decorated_view return current_app.login_manager.unauthorized() ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/root/.conda/envs/ragflow/lib/python3.11/site-packages/flask_login/login_manager.py", line 178, in unauthorized abort(401) File "/root/.conda/envs/ragflow/lib/python3.11/site-packages/flask/helpers.py", line 272, in abort current_app.aborter(code, *args, **kwargs) File "/root/.conda/envs/ragflow/lib/python3.11/site-packages/werkzeug/exceptions.py", line 863, in call raise self.mapping[code](*args, **kwargs) werkzeug.exceptions.Unauthorized: 401 Unauthorized: The server could not verify that you are authorized to access the URL requested. You either supplied the wrong credentials (e.g. a bad password), or your browser doesn't understand how to supply the credentials required. Is it relative?
same issues. Have you solve this issue?