Sealing won't start when using v1.16.0, stuck at Packing stage #8949
-
All works well when using v1.14, when upgrade into v1.16.0, the sealing won't start. All newly added sectors just stuck at Packing stage, the miner log:
Why target =0 ? The miner worker:
It clearly shows that 8 cores are available. By the way I have changed the code in sched_resources.go, (a.cpuUse+1 there)
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
update, after some time of debugging, now I have solved it.
I use +1 in my user case as the sealing will be slower if it uses up all the cores, thus always reserving one would be a bit faster.
|
Beta Was this translation helpful? Give feedback.
update, after some time of debugging, now I have solved it.
I found
res.CPUs
won't be populated until a task is assigned in v1.16.0 (res.CPUs==0), but this is not the case in v1.14.0. This must be a bug introduced in newer version after v1.14.0. Then I changed the code inshed_resources.go
: