You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am getting this error, same issue. No 18034 isn't a solution, i am already on v2 DB
had to roll back to 2.2, works no problem
2024-05-21T20:15:20.222 full_node chia.server.start_service: ERROR fatal uncaught exception: ValueError: max_workers must be <= 61
Traceback (most recent call last):
File "chia\util\log_exceptions.py", line 20, in log_exceptions
File "chia\server\start_service.py", line 323, in async_run
File "asyncio\runners.py", line 44, in run
File "asyncio\base_events.py", line 649, in run_until_complete
File "chia\server\start_full_node.py", line 85, in async_main
File "chia\server\start_service.py", line 197, in run
File "contextlib.py", line 199, in aenter
File "chia\server\start_service.py", line 214, in manage
File "contextlib.py", line 619, in enter_async_context
File "contextlib.py", line 199, in aenter
File "chia\full_node\full_node.py", line 266, in manage
File "chia\consensus\blockchain.py", line 146, in create
File "concurrent\futures\process.py", line 614, in init
ValueError: max_workers must be <= 61
How many CPU cores do you have? Python only can do multiprocessing with 61 cores. A workaround for this is to use the reserved_cores config.yaml setting to remove some of those cores from the multiprocessing pool. For example if you have 64 cores can you change
reserved_cores: 0
to
reserved_cores: 10
And that should allow things to run. This is a regression as you noted.
What happened?
After updating to version 2.3.0, the res
tart program is stuck in the process of continuously starting the service
Version
2.3.0
What platform are you using?
Windows
What ui mode are you using?
GUI
Relevant log output
No response
The text was updated successfully, but these errors were encountered: