[GH-ISSUE #9182] When the num_ctx value is set to a larger number, the speed of token generation decreases. #52492

Closed
opened 2026-04-28 23:26:45 -05:00 by GiteaMirror · 5 comments
Owner

Originally created by @TheHoneyTree on GitHub (Feb 18, 2025).
Original GitHub issue: https://github.com/ollama/ollama/issues/9182

What is the issue?

I deployed DeepSeek-R1-1.58bit. When num_ctx is not set, the generation speed is very fast, but the model will exit after the input and output become too long. Then, I used the Python interface of ollama and modified the size of the num_ctx parameter, which solved the issue, but the speed of model generation became very slow. Is there any solution to this problem?

Relevant log output


OS

Linux

GPU

Nvidia

CPU

Intel

Ollama version

0.5.7

Originally created by @TheHoneyTree on GitHub (Feb 18, 2025). Original GitHub issue: https://github.com/ollama/ollama/issues/9182 ### What is the issue? I deployed DeepSeek-R1-1.58bit. When num_ctx is not set, the generation speed is very fast, but the model will exit after the input and output become too long. Then, I used the Python interface of ollama and modified the size of the num_ctx parameter, which solved the issue, but the speed of model generation became very slow. Is there any solution to this problem? ### Relevant log output ```shell ``` ### OS Linux ### GPU Nvidia ### CPU Intel ### Ollama version 0.5.7
GiteaMirror added the bug label 2026-04-28 23:26:45 -05:00
Author
Owner

@rick-github commented on GitHub (Feb 18, 2025):

Server logs may aid in debugging.

<!-- gh-comment-id:2664926650 --> @rick-github commented on GitHub (Feb 18, 2025): [Server logs](https://github.com/ollama/ollama/blob/main/docs/troubleshooting.md#how-to-troubleshoot-issues) may aid in debugging.
Author
Owner

@TheHoneyTree commented on GitHub (Feb 18, 2025):

Server logs may aid in debugging.

panic: unable to create llama context

goroutine 2 [running]:
github.com/ollama/ollama/llama/runner.(*Server).loadModel(0xc0000d6000, {0x35, 0x0, 0x0, 0x0, {0xc000014150, 0x2, 0x2}, 0xc00002a0a0, 0x0}, ...)
github.com/ollama/ollama/llama/runner/runner.go:858 +0x39c
created by github.com/ollama/ollama/llama/runner.Execute in goroutine 1
github.com/ollama/ollama/llama/runner/runner.go:970 +0xd0d
time=2025-02-18T20:57:15.688+08:00 level=INFO source=server.go:589 msg="waiting for server to become available" status="llm server not responding"
time=2025-02-18T20:57:17.744+08:00 level=INFO source=server.go:589 msg="waiting for server to become available" status="llm server error"
time=2025-02-18T20:57:18.999+08:00 level=ERROR source=sched.go:455 msg="error loading llama server" error="llama runner process has terminated: cudaMalloc failed: out of memory\nggml_gallocr_reserve_n: failed to allocate CUDA0 buffer of size 2938243072\nllama_new_context_with_model: failed to allocate compute buffers"
[GIN] 2025/02/18 - 20:57:19 | 500 | 7m22s | 127.0.0.1 | POST "/api/chat"
time=2025-02-18T20:57:24.914+08:00 level=WARN source=sched.go:646 msg="gpu VRAM usage didn't recover within timeout" seconds=5.914491351 model=/home/hust1/.ollama/models/blobs/sha256-a542caee8df72af41ad48d75b94adacb5fbc61856930460bd599d835400fb3b6
time=2025-02-18T20:57:25.333+08:00 level=WARN source=sched.go:646 msg="gpu VRAM usage didn't recover within timeout" seconds=6.333335055 model=/home/hust1/.ollama/models/blobs/sha256-a542caee8df72af41ad48d75b94adacb5fbc61856930460bd599d835400fb3b6
time=2025-02-18T20:57:26.788+08:00 level=WARN source=sched.go:646 msg="gpu VRAM usage didn't recover within timeout" seconds=7.787966956 model=/home/hust1/.ollama/models/blobs/sha256-a542caee8df72af41ad48d75b94adacb5fbc61856930460bd599d835400fb3b6

<!-- gh-comment-id:2665654835 --> @TheHoneyTree commented on GitHub (Feb 18, 2025): > [Server logs](https://github.com/ollama/ollama/blob/main/docs/troubleshooting.md#how-to-troubleshoot-issues) may aid in debugging. panic: unable to create llama context goroutine 2 [running]: github.com/ollama/ollama/llama/runner.(*Server).loadModel(0xc0000d6000, {0x35, 0x0, 0x0, 0x0, {0xc000014150, 0x2, 0x2}, 0xc00002a0a0, 0x0}, ...) github.com/ollama/ollama/llama/runner/runner.go:858 +0x39c created by github.com/ollama/ollama/llama/runner.Execute in goroutine 1 github.com/ollama/ollama/llama/runner/runner.go:970 +0xd0d time=2025-02-18T20:57:15.688+08:00 level=INFO source=server.go:589 msg="waiting for server to become available" status="llm server not responding" time=2025-02-18T20:57:17.744+08:00 level=INFO source=server.go:589 msg="waiting for server to become available" status="llm server error" time=2025-02-18T20:57:18.999+08:00 level=ERROR source=sched.go:455 msg="error loading llama server" error="llama runner process has terminated: cudaMalloc failed: out of memory\nggml_gallocr_reserve_n: failed to allocate CUDA0 buffer of size 2938243072\nllama_new_context_with_model: failed to allocate compute buffers" [GIN] 2025/02/18 - 20:57:19 | 500 | 7m22s | 127.0.0.1 | POST "/api/chat" time=2025-02-18T20:57:24.914+08:00 level=WARN source=sched.go:646 msg="gpu VRAM usage didn't recover within timeout" seconds=5.914491351 model=/home/hust1/.ollama/models/blobs/sha256-a542caee8df72af41ad48d75b94adacb5fbc61856930460bd599d835400fb3b6 time=2025-02-18T20:57:25.333+08:00 level=WARN source=sched.go:646 msg="gpu VRAM usage didn't recover within timeout" seconds=6.333335055 model=/home/hust1/.ollama/models/blobs/sha256-a542caee8df72af41ad48d75b94adacb5fbc61856930460bd599d835400fb3b6 time=2025-02-18T20:57:26.788+08:00 level=WARN source=sched.go:646 msg="gpu VRAM usage didn't recover within timeout" seconds=7.787966956 model=/home/hust1/.ollama/models/blobs/sha256-a542caee8df72af41ad48d75b94adacb5fbc61856930460bd599d835400fb3b6
Author
Owner

@rick-github commented on GitHub (Feb 18, 2025):

https://github.com/ollama/ollama/issues/8597#issuecomment-2614533288

<!-- gh-comment-id:2665703141 --> @rick-github commented on GitHub (Feb 18, 2025): https://github.com/ollama/ollama/issues/8597#issuecomment-2614533288
Author
Owner

@TheHoneyTree commented on GitHub (Feb 19, 2025):

#8597 (comment)

sorry,the true logs is below:
time=2025-02-19T09:01:22.870+08:00 level=INFO source=server.go:594 msg="llama runner started in 375.57 seconds"
llama.cpp:11968: The current context does not support K-shift
No symbol table is loaded. Use the "file" command.
[New LWP 92500]
[New LWP 91897]
[New LWP 91184]
[New LWP 91183]
[New LWP 91182]
[New LWP 89926]
[New LWP 89925]
[New LWP 89924]
[New LWP 89919]
[New LWP 89918]
[New LWP 89917]
[New LWP 89916]
[New LWP 89915]
[New LWP 89914]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib64/libthread_db.so.1".
0x000055adc5ac4cc3 in ?? ()
No symbol table is loaded. Use the "file" command.
[Inferior 1 (process 89909) detached]
SIGABRT: abort
PC=0x7fd4ad6a9387 m=3 sigcode=18446744073709551610
signal arrived during cgo execution

goroutine 35 gp=0xc0001b61c0 m=3 mp=0xc000096e08 [syscall]:
runtime.cgocall(0x55adc5d00fb0, 0xc0000a9ba0)
runtime/cgocall.go:167 +0x4b fp=0xc0000a9b78 sp=0xc0000a9b40 pc=0x55adc5ab54eb
github.com/ollama/ollama/llama._Cfunc_llama_decode(0x7fd3f844fbe0, {0x1, 0x7fd461388b60, 0x0, 0x0, 0x7fd461389370, 0x7fd461389b80, 0x7fd46138a390, 0x7fd46138b3a0})
_cgo_gotypes.go:556 +0x4f fp=0xc0000a9ba0 sp=0xc0000a9b78 pc=0x55adc5b5f56f
github.com/ollama/ollama/llama.(*Context).Decode.func1(0x55adc5cfc6eb?, 0x7fd3f844fbe0?)
github.com/ollama/ollama/llama/llama.go:207 +0xf5 fp=0xc0000a9c90 sp=0xc0000a9ba0 pc=0x55adc5b61d95
github.com/ollama/ollama/llama.(*Context).Decode(0x55adc638c320?, 0x0?)
github.com/ollama/ollama/llama/llama.go:207 +0x13 fp=0xc0000a9cd8 sp=0xc0000a9c90 pc=0x55adc5b61c13
github.com/ollama/ollama/llama/runner.(*Server).processBatch(0xc00019c000, 0xc000130d80, 0xc0000a9f20)
github.com/ollama/ollama/llama/runner/runner.go:434 +0x23f fp=0xc0000a9ee0 sp=0xc0000a9cd8 pc=0x55adc5cfb4df
github.com/ollama/ollama/llama/runner.(*Server).run(0xc00019c000, {0x55adc60fc0c0, 0xc00019a0a0})
github.com/ollama/ollama/llama/runner/runner.go:342 +0x1d5 fp=0xc0000a9fb8 sp=0xc0000a9ee0 pc=0x55adc5cfaf15
github.com/ollama/ollama/llama/runner.Execute.gowrap2()
github.com/ollama/ollama/llama/runner/runner.go:975 +0x28 fp=0xc0000a9fe0 sp=0xc0000a9fb8 pc=0x55adc5cffe08
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc0000a9fe8 sp=0xc0000a9fe0 pc=0x55adc5ac2f21
created by github.com/ollama/ollama/llama/runner.Execute in goroutine 1
github.com/ollama/ollama/llama/runner/runner.go:975 +0xde5

goroutine 1 gp=0xc0000061c0 m=nil [IO wait, 4 minutes]:
runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc00016f7b0 sp=0xc00016f790 pc=0x55adc5abb2ee
runtime.netpollblock(0xc00002f800?, 0xc5a53b46?, 0xad?)
runtime/netpoll.go:575 +0xf7 fp=0xc00016f7e8 sp=0xc00016f7b0 pc=0x55adc5a80057
internal/poll.runtime_pollWait(0x7fd4644f4650, 0x72)
runtime/netpoll.go:351 +0x85 fp=0xc00016f808 sp=0xc00016f7e8 pc=0x55adc5aba5e5
internal/poll.(*pollDesc).wait(0xc000196180?, 0x900000036?, 0x0)
internal/poll/fd_poll_runtime.go:84 +0x27 fp=0xc00016f830 sp=0xc00016f808 pc=0x55adc5b10427
internal/poll.(*pollDesc).waitRead(...)
internal/poll/fd_poll_runtime.go:89
internal/poll.(*FD).Accept(0xc000196180)
internal/poll/fd_unix.go:620 +0x295 fp=0xc00016f8d8 sp=0xc00016f830 pc=0x55adc5b11995
net.(*netFD).accept(0xc000196180)
net/fd_unix.go:172 +0x29 fp=0xc00016f990 sp=0xc00016f8d8 pc=0x55adc5b8a269
net.(*TCPListener).accept(0xc0001c0040)
net/tcpsock_posix.go:159 +0x1e fp=0xc00016f9e0 sp=0xc00016f990 pc=0x55adc5b9a8be
net.(*TCPListener).Accept(0xc0001c0040)
net/tcpsock.go:372 +0x30 fp=0xc00016fa10 sp=0xc00016f9e0 pc=0x55adc5b99bf0
net/http.(*onceCloseListener).Accept(0xc000318a20?)
:1 +0x24 fp=0xc00016fa28 sp=0xc00016fa10 pc=0x55adc5cd87c4
net/http.(*Server).Serve(0xc0001924b0, {0x55adc60fbad8, 0xc0001c0040})
net/http/server.go:3330 +0x30c fp=0xc00016fb58 sp=0xc00016fa28 pc=0x55adc5cca50c
github.com/ollama/ollama/llama/runner.Execute({0xc000132010?, 0x55adc5ac2b7c?, 0x0?})
github.com/ollama/ollama/llama/runner/runner.go:996 +0x11a9 fp=0xc00016fef8 sp=0xc00016fb58 pc=0x55adc5cffae9
main.main()
github.com/ollama/ollama/cmd/runner/main.go:11 +0x54 fp=0xc00016ff50 sp=0xc00016fef8 pc=0x55adc5d00a74
runtime.main()
runtime/proc.go:272 +0x29d fp=0xc00016ffe0 sp=0xc00016ff50 pc=0x55adc5a8763d
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc00016ffe8 sp=0xc00016ffe0 pc=0x55adc5ac2f21

goroutine 2 gp=0xc000006c40 m=nil [force gc (idle), 2 minutes]:
runtime.gopark(0x3a4d2500d55059?, 0x0?, 0x0?, 0x0?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc000090fa8 sp=0xc000090f88 pc=0x55adc5abb2ee
runtime.goparkunlock(...)
runtime/proc.go:430
runtime.forcegchelper()
runtime/proc.go:337 +0xb8 fp=0xc000090fe0 sp=0xc000090fa8 pc=0x55adc5a87978
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc000090fe8 sp=0xc000090fe0 pc=0x55adc5ac2f21
created by runtime.init.7 in goroutine 1
runtime/proc.go:325 +0x1a

goroutine 3 gp=0xc000007500 m=nil [GC sweep wait]:
runtime.gopark(0x1?, 0x0?, 0x0?, 0x0?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc000091780 sp=0xc000091760 pc=0x55adc5abb2ee
runtime.goparkunlock(...)
runtime/proc.go:430
runtime.bgsweep(0xc00001e100)
runtime/mgcsweep.go:317 +0xdf fp=0xc0000917c8 sp=0xc000091780 pc=0x55adc5a721ff
runtime.gcenable.gowrap1()
runtime/mgc.go:204 +0x25 fp=0xc0000917e0 sp=0xc0000917c8 pc=0x55adc5a66a65
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc0000917e8 sp=0xc0000917e0 pc=0x55adc5ac2f21
created by runtime.gcenable in goroutine 1
runtime/mgc.go:204 +0x66

goroutine 4 gp=0xc0000076c0 m=nil [GC scavenge wait]:
runtime.gopark(0x10000?, 0x11b74469?, 0x0?, 0x0?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc000091f78 sp=0xc000091f58 pc=0x55adc5abb2ee
runtime.goparkunlock(...)
runtime/proc.go:430
runtime.(*scavengerState).park(0x55adc62e7080)
runtime/mgcscavenge.go:425 +0x49 fp=0xc000091fa8 sp=0xc000091f78 pc=0x55adc5a6fbe9
runtime.bgscavenge(0xc00001e100)
runtime/mgcscavenge.go:658 +0x59 fp=0xc000091fc8 sp=0xc000091fa8 pc=0x55adc5a70179
runtime.gcenable.gowrap2()
runtime/mgc.go:205 +0x25 fp=0xc000091fe0 sp=0xc000091fc8 pc=0x55adc5a66a05
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc000091fe8 sp=0xc000091fe0 pc=0x55adc5ac2f21
created by runtime.gcenable in goroutine 1
runtime/mgc.go:205 +0xa5

goroutine 18 gp=0xc000104700 m=nil [finalizer wait]:
runtime.gopark(0x0?, 0x55adc60f6c28?, 0x0?, 0xa0?, 0x1000000010?)
runtime/proc.go:424 +0xce fp=0xc0000a7e20 sp=0xc0000a7e00 pc=0x55adc5abb2ee
runtime.runfinq()
runtime/mfinal.go:193 +0x107 fp=0xc0000a7fe0 sp=0xc0000a7e20 pc=0x55adc5a65ae7
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc0000a7fe8 sp=0xc0000a7fe0 pc=0x55adc5ac2f21
created by runtime.createfing in goroutine 1
runtime/mfinal.go:163 +0x3d

goroutine 19 gp=0xc0001048c0 m=nil [chan receive]:
runtime.gopark(0xc00008c760?, 0x55adc5b71785?, 0x70?, 0xc2?, 0x55adc60ffda0?)
runtime/proc.go:424 +0xce fp=0xc00008c718 sp=0xc00008c6f8 pc=0x55adc5abb2ee
runtime.chanrecv(0xc0001120e0, 0x0, 0x1)
runtime/chan.go:639 +0x41c fp=0xc00008c790 sp=0xc00008c718 pc=0x55adc5a5673c
runtime.chanrecv1(0x0?, 0x0?)
runtime/chan.go:489 +0x12 fp=0xc00008c7b8 sp=0xc00008c790 pc=0x55adc5a56312
runtime.unique_runtime_registerUniqueMapCleanup.func1(...)
runtime/mgc.go:1781
runtime.unique_runtime_registerUniqueMapCleanup.gowrap1()
runtime/mgc.go:1784 +0x2f fp=0xc00008c7e0 sp=0xc00008c7b8 pc=0x55adc5a698cf
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc00008c7e8 sp=0xc00008c7e0 pc=0x55adc5ac2f21
created by unique.runtime_registerUniqueMapCleanup in goroutine 1
runtime/mgc.go:1779 +0x96

goroutine 1536 gp=0xc0001b6000 m=nil [IO wait, 2 minutes]:
runtime.gopark(0x55adc5a61445?, 0x0?, 0x0?, 0x0?, 0xb?)
runtime/proc.go:424 +0xce fp=0xc0000f55a8 sp=0xc0000f5588 pc=0x55adc5abb2ee
runtime.netpollblock(0x55adc5af6b18?, 0xc5a53b46?, 0xad?)
runtime/netpoll.go:575 +0xf7 fp=0xc0000f55e0 sp=0xc0000f55a8 pc=0x55adc5a80057
internal/poll.runtime_pollWait(0x7fd4644f4538, 0x72)
runtime/netpoll.go:351 +0x85 fp=0xc0000f5600 sp=0xc0000f55e0 pc=0x55adc5aba5e5
internal/poll.(*pollDesc).wait(0xc000196200?, 0xc000216f71?, 0x0)
internal/poll/fd_poll_runtime.go:84 +0x27 fp=0xc0000f5628 sp=0xc0000f5600 pc=0x55adc5b10427
internal/poll.(*pollDesc).waitRead(...)
internal/poll/fd_poll_runtime.go:89
internal/poll.(*FD).Read(0xc000196200, {0xc000216f71, 0x1, 0x1})
internal/poll/fd_unix.go:165 +0x27a fp=0xc0000f56c0 sp=0xc0000f5628 pc=0x55adc5b10f7a
net.(*netFD).Read(0xc000196200, {0xc000216f71?, 0xc0000f5748?, 0x55adc5abc990?})
net/fd_posix.go:55 +0x25 fp=0xc0000f5708 sp=0xc0000f56c0 pc=0x55adc5b89185
net.(*conn).Read(0xc000198050, {0xc000216f71?, 0x0?, 0xc000216f68?})
net/net.go:189 +0x45 fp=0xc0000f5750 sp=0xc0000f5708 pc=0x55adc5b92b85
net.(*TCPConn).Read(0xc000216f60?, {0xc000216f71?, 0x0?, 0x0?})
:1 +0x25 fp=0xc0000f5780 sp=0xc0000f5750 pc=0x55adc5b9fc25
net/http.(*connReader).backgroundRead(0xc000216f60)
net/http/server.go:690 +0x37 fp=0xc0000f57c8 sp=0xc0000f5780 pc=0x55adc5cc0977
net/http.(*connReader).startBackgroundRead.gowrap2()
net/http/server.go:686 +0x25 fp=0xc0000f57e0 sp=0xc0000f57c8 pc=0x55adc5cc08a5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc0000f57e8 sp=0xc0000f57e0 pc=0x55adc5ac2f21
created by net/http.(*connReader).startBackgroundRead in goroutine 221
net/http/server.go:686 +0xb6

goroutine 221 gp=0xc000007880 m=nil [select]:
runtime.gopark(0xc0001cba68?, 0x2?, 0xd?, 0xb7?, 0xc0001cb834?)
runtime/proc.go:424 +0xce fp=0xc0001cb6a0 sp=0xc0001cb680 pc=0x55adc5abb2ee
runtime.selectgo(0xc0001cba68, 0xc0001cb830, 0xc000000e80?, 0x0, 0x1?, 0x1)
runtime/select.go:335 +0x7a5 fp=0xc0001cb7c8 sp=0xc0001cb6a0 pc=0x55adc5a99545
github.com/ollama/ollama/llama/runner.(*Server).completion(0xc00019c000, {0x55adc60fbc58, 0xc000163880}, 0xc0000dc500)
github.com/ollama/ollama/llama/runner/runner.go:687 +0xa86 fp=0xc0001cbac0 sp=0xc0001cb7c8 pc=0x55adc5cfd206
github.com/ollama/ollama/llama/runner.(*Server).completion-fm({0x55adc60fbc58?, 0xc000163880?}, 0x55adc5cce807?)
:1 +0x36 fp=0xc0001cbaf0 sp=0xc0001cbac0 pc=0x55adc5d006b6
net/http.HandlerFunc.ServeHTTP(0xc0001d4000?, {0x55adc60fbc58?, 0xc000163880?}, 0x0?)
net/http/server.go:2220 +0x29 fp=0xc0001cbb18 sp=0xc0001cbaf0 pc=0x55adc5cc73c9
net/http.(*ServeMux).ServeHTTP(0x55adc5a5cf65?, {0x55adc60fbc58, 0xc000163880}, 0xc0000dc500)
net/http/server.go:2747 +0x1ca fp=0xc0001cbb68 sp=0xc0001cbb18 pc=0x55adc5cc926a
net/http.serverHandler.ServeHTTP({0x55adc60fad10?}, {0x55adc60fbc58?, 0xc000163880?}, 0x6?)
net/http/server.go:3210 +0x8e fp=0xc0001cbb98 sp=0xc0001cbb68 pc=0x55adc5cd016e
net/http.(*conn).serve(0xc000318a20, {0x55adc60fc088, 0xc000194360})
net/http/server.go:2092 +0x5d0 fp=0xc0001cbfb8 sp=0xc0001cbb98 pc=0x55adc5cc5ff0
net/http.(*Server).Serve.gowrap3()
net/http/server.go:3360 +0x28 fp=0xc0001cbfe0 sp=0xc0001cbfb8 pc=0x55adc5cca908
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc0001cbfe8 sp=0xc0001cbfe0 pc=0x55adc5ac2f21
created by net/http.(*Server).Serve in goroutine 1
net/http/server.go:3360 +0x485

goroutine 955 gp=0xc000104e00 m=nil [GC worker (idle), 4 minutes]:
runtime.gopark(0x0?, 0xc00012f658?, 0x70?, 0xdf?, 0x55adc5ad5df3?)
runtime/proc.go:424 +0xce fp=0xc00008df38 sp=0xc00008df18 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc00008dfc8 sp=0xc00008df38 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc00008dfe0 sp=0xc00008dfc8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc00008dfe8 sp=0xc00008dfe0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

goroutine 954 gp=0xc0003d4540 m=nil [GC worker (idle), 4 minutes]:
runtime.gopark(0x0?, 0xc00012f658?, 0x70?, 0x2f?, 0x55adc5ad5df3?)
runtime/proc.go:424 +0xce fp=0xc000252f38 sp=0xc000252f18 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc000252fc8 sp=0xc000252f38 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc000252fe0 sp=0xc000252fc8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc000252fe8 sp=0xc000252fe0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

goroutine 956 gp=0xc000237340 m=nil [GC worker (idle), 4 minutes]:
runtime.gopark(0x0?, 0xc00012f658?, 0x70?, 0x9f?, 0x55adc5ad5df3?)
runtime/proc.go:424 +0xce fp=0xc000259f38 sp=0xc000259f18 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc000259fc8 sp=0xc000259f38 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc000259fe0 sp=0xc000259fc8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc000259fe8 sp=0xc000259fe0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

goroutine 957 gp=0xc000237500 m=nil [GC worker (idle), 4 minutes]:
runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc000450738 sp=0xc000450718 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc0004507c8 sp=0xc000450738 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc0004507e0 sp=0xc0004507c8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc0004507e8 sp=0xc0004507e0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

goroutine 958 gp=0xc0002376c0 m=nil [GC worker (idle), 4 minutes]:
runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc000450f38 sp=0xc000450f18 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc000450fc8 sp=0xc000450f38 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc000450fe0 sp=0xc000450fc8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc000450fe8 sp=0xc000450fe0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

goroutine 959 gp=0xc000237880 m=nil [GC worker (idle), 4 minutes]:
runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc000451738 sp=0xc000451718 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc0004517c8 sp=0xc000451738 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc0004517e0 sp=0xc0004517c8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc0004517e8 sp=0xc0004517e0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

goroutine 960 gp=0xc000237a40 m=nil [GC worker (idle), 4 minutes]:
runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc000451f38 sp=0xc000451f18 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc000451fc8 sp=0xc000451f38 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc000451fe0 sp=0xc000451fc8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc000451fe8 sp=0xc000451fe0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

goroutine 961 gp=0xc000237c00 m=nil [GC worker (idle), 4 minutes]:
runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc000452738 sp=0xc000452718 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc0004527c8 sp=0xc000452738 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc0004527e0 sp=0xc0004527c8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc0004527e8 sp=0xc0004527e0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

goroutine 978 gp=0xc000237dc0 m=nil [GC worker (idle), 4 minutes]:
runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc000452f38 sp=0xc000452f18 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc000452fc8 sp=0xc000452f38 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc000452fe0 sp=0xc000452fc8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc000452fe8 sp=0xc000452fe0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

goroutine 979 gp=0xc000454000 m=nil [GC worker (idle), 4 minutes]:
runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc000453738 sp=0xc000453718 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc0004537c8 sp=0xc000453738 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc0004537e0 sp=0xc0004537c8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc0004537e8 sp=0xc0004537e0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

goroutine 980 gp=0xc0004541c0 m=nil [GC worker (idle), 4 minutes]:
runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc000453f38 sp=0xc000453f18 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc000453fc8 sp=0xc000453f38 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc000453fe0 sp=0xc000453fc8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc000453fe8 sp=0xc000453fe0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

goroutine 981 gp=0xc000454380 m=nil [GC worker (idle), 4 minutes]:
runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc00044c738 sp=0xc00044c718 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc00044c7c8 sp=0xc00044c738 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc00044c7e0 sp=0xc00044c7c8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc00044c7e8 sp=0xc00044c7e0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

goroutine 982 gp=0xc000454540 m=nil [GC worker (idle), 4 minutes]:
runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc00044cf38 sp=0xc00044cf18 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc00044cfc8 sp=0xc00044cf38 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc00044cfe0 sp=0xc00044cfc8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc00044cfe8 sp=0xc00044cfe0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

goroutine 983 gp=0xc000454700 m=nil [GC worker (idle), 4 minutes]:
runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc00044d738 sp=0xc00044d718 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc00044d7c8 sp=0xc00044d738 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc00044d7e0 sp=0xc00044d7c8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc00044d7e8 sp=0xc00044d7e0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

goroutine 984 gp=0xc0004548c0 m=nil [GC worker (idle), 4 minutes]:
runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc00044df38 sp=0xc00044df18 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc00044dfc8 sp=0xc00044df38 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc00044dfe0 sp=0xc00044dfc8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc00044dfe8 sp=0xc00044dfe0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

goroutine 985 gp=0xc000454a80 m=nil [GC worker (idle), 4 minutes]:
runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc00044e738 sp=0xc00044e718 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc00044e7c8 sp=0xc00044e738 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc00044e7e0 sp=0xc00044e7c8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc00044e7e8 sp=0xc00044e7e0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

goroutine 986 gp=0xc000454c40 m=nil [GC worker (idle), 4 minutes]:
runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc00044ef38 sp=0xc00044ef18 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc00044efc8 sp=0xc00044ef38 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc00044efe0 sp=0xc00044efc8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc00044efe8 sp=0xc00044efe0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

goroutine 987 gp=0xc000454e00 m=nil [GC worker (idle), 4 minutes]:
runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc00044f738 sp=0xc00044f718 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc00044f7c8 sp=0xc00044f738 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc00044f7e0 sp=0xc00044f7c8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc00044f7e8 sp=0xc00044f7e0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

goroutine 988 gp=0xc000454fc0 m=nil [GC worker (idle), 4 minutes]:
runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc00044ff38 sp=0xc00044ff18 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc00044ffc8 sp=0xc00044ff38 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc00044ffe0 sp=0xc00044ffc8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc00044ffe8 sp=0xc00044ffe0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

goroutine 989 gp=0xc000455180 m=nil [GC worker (idle), 4 minutes]:
runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc00045a738 sp=0xc00045a718 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc00045a7c8 sp=0xc00045a738 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc00045a7e0 sp=0xc00045a7c8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc00045a7e8 sp=0xc00045a7e0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

goroutine 990 gp=0xc000455340 m=nil [GC worker (idle), 4 minutes]:
runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc00045af38 sp=0xc00045af18 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc00045afc8 sp=0xc00045af38 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc00045afe0 sp=0xc00045afc8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc00045afe8 sp=0xc00045afe0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

goroutine 991 gp=0xc000455500 m=nil [GC worker (idle), 4 minutes]:
runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc00045b738 sp=0xc00045b718 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc00045b7c8 sp=0xc00045b738 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc00045b7e0 sp=0xc00045b7c8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc00045b7e8 sp=0xc00045b7e0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

goroutine 992 gp=0xc0004556c0 m=nil [GC worker (idle), 4 minutes]:
runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc00045bf38 sp=0xc00045bf18 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc00045bfc8 sp=0xc00045bf38 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc00045bfe0 sp=0xc00045bfc8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc00045bfe8 sp=0xc00045bfe0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

goroutine 993 gp=0xc000455880 m=nil [GC worker (idle), 4 minutes]:
runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc00045c738 sp=0xc00045c718 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc00045c7c8 sp=0xc00045c738 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc00045c7e0 sp=0xc00045c7c8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc00045c7e8 sp=0xc00045c7e0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

goroutine 994 gp=0xc000455a40 m=nil [GC worker (idle), 4 minutes]:
runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc00045cf38 sp=0xc00045cf18 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc00045cfc8 sp=0xc00045cf38 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc00045cfe0 sp=0xc00045cfc8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc00045cfe8 sp=0xc00045cfe0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

goroutine 995 gp=0xc000455c00 m=nil [GC worker (idle), 2 minutes]:
runtime.gopark(0x3a4d2500e21f1e?, 0x0?, 0x0?, 0x0?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc00045d738 sp=0xc00045d718 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc00045d7c8 sp=0xc00045d738 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc00045d7e0 sp=0xc00045d7c8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc00045d7e8 sp=0xc00045d7e0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

goroutine 996 gp=0xc000455dc0 m=nil [GC worker (idle), 2 minutes]:
runtime.gopark(0x55adc638d5c0?, 0x1?, 0x54?, 0xde?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc00045df38 sp=0xc00045df18 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc00045dfc8 sp=0xc00045df38 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc00045dfe0 sp=0xc00045dfc8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc00045dfe8 sp=0xc00045dfe0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

goroutine 997 gp=0xc000460000 m=nil [GC worker (idle)]:
runtime.gopark(0x55adc638d5c0?, 0x1?, 0x84?, 0x1d?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc000456738 sp=0xc000456718 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc0004567c8 sp=0xc000456738 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc0004567e0 sp=0xc0004567c8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc0004567e8 sp=0xc0004567e0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

goroutine 998 gp=0xc0004601c0 m=nil [GC worker (idle), 2 minutes]:
runtime.gopark(0x3a4d2500e20ec8?, 0x1?, 0x2b?, 0xfd?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc000456f38 sp=0xc000456f18 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc000456fc8 sp=0xc000456f38 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc000456fe0 sp=0xc000456fc8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc000456fe8 sp=0xc000456fe0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

goroutine 999 gp=0xc000460380 m=nil [GC worker (idle)]:
runtime.gopark(0x55adc638d5c0?, 0x1?, 0xec?, 0x7d?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc000457738 sp=0xc000457718 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc0004577c8 sp=0xc000457738 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc0004577e0 sp=0xc0004577c8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc0004577e8 sp=0xc0004577e0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

goroutine 1000 gp=0xc000460540 m=nil [GC worker (idle), 2 minutes]:
runtime.gopark(0x55adc638d5c0?, 0x1?, 0xfc?, 0xe?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc000457f38 sp=0xc000457f18 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc000457fc8 sp=0xc000457f38 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc000457fe0 sp=0xc000457fc8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc000457fe8 sp=0xc000457fe0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

goroutine 1001 gp=0xc000460700 m=nil [GC worker (idle)]:
runtime.gopark(0x3a4d2500e5cc73?, 0x1?, 0x27?, 0x45?, 0x0?)
runtime/proc.go:424 +0xce fp=0xc000458738 sp=0xc000458718 pc=0x55adc5abb2ee
runtime.gcBgMarkWorker(0xc00043e9a0)
runtime/mgc.go:1412 +0xe9 fp=0xc0004587c8 sp=0xc000458738 pc=0x55adc5a68bc9
runtime.gcBgMarkStartWorkers.gowrap1()
runtime/mgc.go:1328 +0x25 fp=0xc0004587e0 sp=0xc0004587c8 pc=0x55adc5a68aa5
runtime.goexit({})
runtime/asm_amd64.s:1700 +0x1 fp=0xc0004587e8 sp=0xc0004587e0 pc=0x55adc5ac2f21
created by runtime.gcBgMarkStartWorkers in goroutine 966
runtime/mgc.go:1328 +0x105

rax 0x0
rbx 0x0
rcx 0xffffffffffffffff
rdx 0x6
rdi 0x15f35
rsi 0x15f3b
rbp 0x7fd46654f7f0
rsp 0x7fd46654f698
r8 0x0
r9 0x1
r10 0x8
r11 0x206
r12 0x55adc5ffdf48
r13 0x2ec0
r14 0x1
r15 0x7fd3f844fbe0
rip 0x7fd4ad6a9387
rflags 0x206
cs 0x33
fs 0x0
gs 0x0
[GIN] 2025/02/19 - 09:03:22 | 200 | 8m17s | 127.0.0.1 | POST "/api/chat"

it seems has “200”,but in python's logs:
Traceback (most recent call last):
File "test_QA.py", line 55, in
item['output'] = get_ans_ollama(q)
File "test_QA.py", line 45, in get_ans_ollama
for chunk in stream:
File "/home/hust1/.conda/envs/fd/lib/python3.8/site-packages/ollama/_client.py", line 173, in inner
raise ResponseError(err)
ollama._types.ResponseError: an error was encountered while running the model: unexpected EOF (status code: -1)
it has some errors
if i set the num_ctx = 16000,there has no such error,but the speed is too slow

<!-- gh-comment-id:2667269682 --> @TheHoneyTree commented on GitHub (Feb 19, 2025): > [#8597 (comment)](https://github.com/ollama/ollama/issues/8597#issuecomment-2614533288) sorry,the true logs is below: time=2025-02-19T09:01:22.870+08:00 level=INFO source=server.go:594 msg="llama runner started in 375.57 seconds" llama.cpp:11968: The current context does not support K-shift No symbol table is loaded. Use the "file" command. [New LWP 92500] [New LWP 91897] [New LWP 91184] [New LWP 91183] [New LWP 91182] [New LWP 89926] [New LWP 89925] [New LWP 89924] [New LWP 89919] [New LWP 89918] [New LWP 89917] [New LWP 89916] [New LWP 89915] [New LWP 89914] [Thread debugging using libthread_db enabled] Using host libthread_db library "/lib64/libthread_db.so.1". 0x000055adc5ac4cc3 in ?? () No symbol table is loaded. Use the "file" command. [Inferior 1 (process 89909) detached] SIGABRT: abort PC=0x7fd4ad6a9387 m=3 sigcode=18446744073709551610 signal arrived during cgo execution goroutine 35 gp=0xc0001b61c0 m=3 mp=0xc000096e08 [syscall]: runtime.cgocall(0x55adc5d00fb0, 0xc0000a9ba0) runtime/cgocall.go:167 +0x4b fp=0xc0000a9b78 sp=0xc0000a9b40 pc=0x55adc5ab54eb github.com/ollama/ollama/llama._Cfunc_llama_decode(0x7fd3f844fbe0, {0x1, 0x7fd461388b60, 0x0, 0x0, 0x7fd461389370, 0x7fd461389b80, 0x7fd46138a390, 0x7fd46138b3a0}) _cgo_gotypes.go:556 +0x4f fp=0xc0000a9ba0 sp=0xc0000a9b78 pc=0x55adc5b5f56f github.com/ollama/ollama/llama.(*Context).Decode.func1(0x55adc5cfc6eb?, 0x7fd3f844fbe0?) github.com/ollama/ollama/llama/llama.go:207 +0xf5 fp=0xc0000a9c90 sp=0xc0000a9ba0 pc=0x55adc5b61d95 github.com/ollama/ollama/llama.(*Context).Decode(0x55adc638c320?, 0x0?) github.com/ollama/ollama/llama/llama.go:207 +0x13 fp=0xc0000a9cd8 sp=0xc0000a9c90 pc=0x55adc5b61c13 github.com/ollama/ollama/llama/runner.(*Server).processBatch(0xc00019c000, 0xc000130d80, 0xc0000a9f20) github.com/ollama/ollama/llama/runner/runner.go:434 +0x23f fp=0xc0000a9ee0 sp=0xc0000a9cd8 pc=0x55adc5cfb4df github.com/ollama/ollama/llama/runner.(*Server).run(0xc00019c000, {0x55adc60fc0c0, 0xc00019a0a0}) github.com/ollama/ollama/llama/runner/runner.go:342 +0x1d5 fp=0xc0000a9fb8 sp=0xc0000a9ee0 pc=0x55adc5cfaf15 github.com/ollama/ollama/llama/runner.Execute.gowrap2() github.com/ollama/ollama/llama/runner/runner.go:975 +0x28 fp=0xc0000a9fe0 sp=0xc0000a9fb8 pc=0x55adc5cffe08 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc0000a9fe8 sp=0xc0000a9fe0 pc=0x55adc5ac2f21 created by github.com/ollama/ollama/llama/runner.Execute in goroutine 1 github.com/ollama/ollama/llama/runner/runner.go:975 +0xde5 goroutine 1 gp=0xc0000061c0 m=nil [IO wait, 4 minutes]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) runtime/proc.go:424 +0xce fp=0xc00016f7b0 sp=0xc00016f790 pc=0x55adc5abb2ee runtime.netpollblock(0xc00002f800?, 0xc5a53b46?, 0xad?) runtime/netpoll.go:575 +0xf7 fp=0xc00016f7e8 sp=0xc00016f7b0 pc=0x55adc5a80057 internal/poll.runtime_pollWait(0x7fd4644f4650, 0x72) runtime/netpoll.go:351 +0x85 fp=0xc00016f808 sp=0xc00016f7e8 pc=0x55adc5aba5e5 internal/poll.(*pollDesc).wait(0xc000196180?, 0x900000036?, 0x0) internal/poll/fd_poll_runtime.go:84 +0x27 fp=0xc00016f830 sp=0xc00016f808 pc=0x55adc5b10427 internal/poll.(*pollDesc).waitRead(...) internal/poll/fd_poll_runtime.go:89 internal/poll.(*FD).Accept(0xc000196180) internal/poll/fd_unix.go:620 +0x295 fp=0xc00016f8d8 sp=0xc00016f830 pc=0x55adc5b11995 net.(*netFD).accept(0xc000196180) net/fd_unix.go:172 +0x29 fp=0xc00016f990 sp=0xc00016f8d8 pc=0x55adc5b8a269 net.(*TCPListener).accept(0xc0001c0040) net/tcpsock_posix.go:159 +0x1e fp=0xc00016f9e0 sp=0xc00016f990 pc=0x55adc5b9a8be net.(*TCPListener).Accept(0xc0001c0040) net/tcpsock.go:372 +0x30 fp=0xc00016fa10 sp=0xc00016f9e0 pc=0x55adc5b99bf0 net/http.(*onceCloseListener).Accept(0xc000318a20?) <autogenerated>:1 +0x24 fp=0xc00016fa28 sp=0xc00016fa10 pc=0x55adc5cd87c4 net/http.(*Server).Serve(0xc0001924b0, {0x55adc60fbad8, 0xc0001c0040}) net/http/server.go:3330 +0x30c fp=0xc00016fb58 sp=0xc00016fa28 pc=0x55adc5cca50c github.com/ollama/ollama/llama/runner.Execute({0xc000132010?, 0x55adc5ac2b7c?, 0x0?}) github.com/ollama/ollama/llama/runner/runner.go:996 +0x11a9 fp=0xc00016fef8 sp=0xc00016fb58 pc=0x55adc5cffae9 main.main() github.com/ollama/ollama/cmd/runner/main.go:11 +0x54 fp=0xc00016ff50 sp=0xc00016fef8 pc=0x55adc5d00a74 runtime.main() runtime/proc.go:272 +0x29d fp=0xc00016ffe0 sp=0xc00016ff50 pc=0x55adc5a8763d runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc00016ffe8 sp=0xc00016ffe0 pc=0x55adc5ac2f21 goroutine 2 gp=0xc000006c40 m=nil [force gc (idle), 2 minutes]: runtime.gopark(0x3a4d2500d55059?, 0x0?, 0x0?, 0x0?, 0x0?) runtime/proc.go:424 +0xce fp=0xc000090fa8 sp=0xc000090f88 pc=0x55adc5abb2ee runtime.goparkunlock(...) runtime/proc.go:430 runtime.forcegchelper() runtime/proc.go:337 +0xb8 fp=0xc000090fe0 sp=0xc000090fa8 pc=0x55adc5a87978 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc000090fe8 sp=0xc000090fe0 pc=0x55adc5ac2f21 created by runtime.init.7 in goroutine 1 runtime/proc.go:325 +0x1a goroutine 3 gp=0xc000007500 m=nil [GC sweep wait]: runtime.gopark(0x1?, 0x0?, 0x0?, 0x0?, 0x0?) runtime/proc.go:424 +0xce fp=0xc000091780 sp=0xc000091760 pc=0x55adc5abb2ee runtime.goparkunlock(...) runtime/proc.go:430 runtime.bgsweep(0xc00001e100) runtime/mgcsweep.go:317 +0xdf fp=0xc0000917c8 sp=0xc000091780 pc=0x55adc5a721ff runtime.gcenable.gowrap1() runtime/mgc.go:204 +0x25 fp=0xc0000917e0 sp=0xc0000917c8 pc=0x55adc5a66a65 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc0000917e8 sp=0xc0000917e0 pc=0x55adc5ac2f21 created by runtime.gcenable in goroutine 1 runtime/mgc.go:204 +0x66 goroutine 4 gp=0xc0000076c0 m=nil [GC scavenge wait]: runtime.gopark(0x10000?, 0x11b74469?, 0x0?, 0x0?, 0x0?) runtime/proc.go:424 +0xce fp=0xc000091f78 sp=0xc000091f58 pc=0x55adc5abb2ee runtime.goparkunlock(...) runtime/proc.go:430 runtime.(*scavengerState).park(0x55adc62e7080) runtime/mgcscavenge.go:425 +0x49 fp=0xc000091fa8 sp=0xc000091f78 pc=0x55adc5a6fbe9 runtime.bgscavenge(0xc00001e100) runtime/mgcscavenge.go:658 +0x59 fp=0xc000091fc8 sp=0xc000091fa8 pc=0x55adc5a70179 runtime.gcenable.gowrap2() runtime/mgc.go:205 +0x25 fp=0xc000091fe0 sp=0xc000091fc8 pc=0x55adc5a66a05 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc000091fe8 sp=0xc000091fe0 pc=0x55adc5ac2f21 created by runtime.gcenable in goroutine 1 runtime/mgc.go:205 +0xa5 goroutine 18 gp=0xc000104700 m=nil [finalizer wait]: runtime.gopark(0x0?, 0x55adc60f6c28?, 0x0?, 0xa0?, 0x1000000010?) runtime/proc.go:424 +0xce fp=0xc0000a7e20 sp=0xc0000a7e00 pc=0x55adc5abb2ee runtime.runfinq() runtime/mfinal.go:193 +0x107 fp=0xc0000a7fe0 sp=0xc0000a7e20 pc=0x55adc5a65ae7 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc0000a7fe8 sp=0xc0000a7fe0 pc=0x55adc5ac2f21 created by runtime.createfing in goroutine 1 runtime/mfinal.go:163 +0x3d goroutine 19 gp=0xc0001048c0 m=nil [chan receive]: runtime.gopark(0xc00008c760?, 0x55adc5b71785?, 0x70?, 0xc2?, 0x55adc60ffda0?) runtime/proc.go:424 +0xce fp=0xc00008c718 sp=0xc00008c6f8 pc=0x55adc5abb2ee runtime.chanrecv(0xc0001120e0, 0x0, 0x1) runtime/chan.go:639 +0x41c fp=0xc00008c790 sp=0xc00008c718 pc=0x55adc5a5673c runtime.chanrecv1(0x0?, 0x0?) runtime/chan.go:489 +0x12 fp=0xc00008c7b8 sp=0xc00008c790 pc=0x55adc5a56312 runtime.unique_runtime_registerUniqueMapCleanup.func1(...) runtime/mgc.go:1781 runtime.unique_runtime_registerUniqueMapCleanup.gowrap1() runtime/mgc.go:1784 +0x2f fp=0xc00008c7e0 sp=0xc00008c7b8 pc=0x55adc5a698cf runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc00008c7e8 sp=0xc00008c7e0 pc=0x55adc5ac2f21 created by unique.runtime_registerUniqueMapCleanup in goroutine 1 runtime/mgc.go:1779 +0x96 goroutine 1536 gp=0xc0001b6000 m=nil [IO wait, 2 minutes]: runtime.gopark(0x55adc5a61445?, 0x0?, 0x0?, 0x0?, 0xb?) runtime/proc.go:424 +0xce fp=0xc0000f55a8 sp=0xc0000f5588 pc=0x55adc5abb2ee runtime.netpollblock(0x55adc5af6b18?, 0xc5a53b46?, 0xad?) runtime/netpoll.go:575 +0xf7 fp=0xc0000f55e0 sp=0xc0000f55a8 pc=0x55adc5a80057 internal/poll.runtime_pollWait(0x7fd4644f4538, 0x72) runtime/netpoll.go:351 +0x85 fp=0xc0000f5600 sp=0xc0000f55e0 pc=0x55adc5aba5e5 internal/poll.(*pollDesc).wait(0xc000196200?, 0xc000216f71?, 0x0) internal/poll/fd_poll_runtime.go:84 +0x27 fp=0xc0000f5628 sp=0xc0000f5600 pc=0x55adc5b10427 internal/poll.(*pollDesc).waitRead(...) internal/poll/fd_poll_runtime.go:89 internal/poll.(*FD).Read(0xc000196200, {0xc000216f71, 0x1, 0x1}) internal/poll/fd_unix.go:165 +0x27a fp=0xc0000f56c0 sp=0xc0000f5628 pc=0x55adc5b10f7a net.(*netFD).Read(0xc000196200, {0xc000216f71?, 0xc0000f5748?, 0x55adc5abc990?}) net/fd_posix.go:55 +0x25 fp=0xc0000f5708 sp=0xc0000f56c0 pc=0x55adc5b89185 net.(*conn).Read(0xc000198050, {0xc000216f71?, 0x0?, 0xc000216f68?}) net/net.go:189 +0x45 fp=0xc0000f5750 sp=0xc0000f5708 pc=0x55adc5b92b85 net.(*TCPConn).Read(0xc000216f60?, {0xc000216f71?, 0x0?, 0x0?}) <autogenerated>:1 +0x25 fp=0xc0000f5780 sp=0xc0000f5750 pc=0x55adc5b9fc25 net/http.(*connReader).backgroundRead(0xc000216f60) net/http/server.go:690 +0x37 fp=0xc0000f57c8 sp=0xc0000f5780 pc=0x55adc5cc0977 net/http.(*connReader).startBackgroundRead.gowrap2() net/http/server.go:686 +0x25 fp=0xc0000f57e0 sp=0xc0000f57c8 pc=0x55adc5cc08a5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc0000f57e8 sp=0xc0000f57e0 pc=0x55adc5ac2f21 created by net/http.(*connReader).startBackgroundRead in goroutine 221 net/http/server.go:686 +0xb6 goroutine 221 gp=0xc000007880 m=nil [select]: runtime.gopark(0xc0001cba68?, 0x2?, 0xd?, 0xb7?, 0xc0001cb834?) runtime/proc.go:424 +0xce fp=0xc0001cb6a0 sp=0xc0001cb680 pc=0x55adc5abb2ee runtime.selectgo(0xc0001cba68, 0xc0001cb830, 0xc000000e80?, 0x0, 0x1?, 0x1) runtime/select.go:335 +0x7a5 fp=0xc0001cb7c8 sp=0xc0001cb6a0 pc=0x55adc5a99545 github.com/ollama/ollama/llama/runner.(*Server).completion(0xc00019c000, {0x55adc60fbc58, 0xc000163880}, 0xc0000dc500) github.com/ollama/ollama/llama/runner/runner.go:687 +0xa86 fp=0xc0001cbac0 sp=0xc0001cb7c8 pc=0x55adc5cfd206 github.com/ollama/ollama/llama/runner.(*Server).completion-fm({0x55adc60fbc58?, 0xc000163880?}, 0x55adc5cce807?) <autogenerated>:1 +0x36 fp=0xc0001cbaf0 sp=0xc0001cbac0 pc=0x55adc5d006b6 net/http.HandlerFunc.ServeHTTP(0xc0001d4000?, {0x55adc60fbc58?, 0xc000163880?}, 0x0?) net/http/server.go:2220 +0x29 fp=0xc0001cbb18 sp=0xc0001cbaf0 pc=0x55adc5cc73c9 net/http.(*ServeMux).ServeHTTP(0x55adc5a5cf65?, {0x55adc60fbc58, 0xc000163880}, 0xc0000dc500) net/http/server.go:2747 +0x1ca fp=0xc0001cbb68 sp=0xc0001cbb18 pc=0x55adc5cc926a net/http.serverHandler.ServeHTTP({0x55adc60fad10?}, {0x55adc60fbc58?, 0xc000163880?}, 0x6?) net/http/server.go:3210 +0x8e fp=0xc0001cbb98 sp=0xc0001cbb68 pc=0x55adc5cd016e net/http.(*conn).serve(0xc000318a20, {0x55adc60fc088, 0xc000194360}) net/http/server.go:2092 +0x5d0 fp=0xc0001cbfb8 sp=0xc0001cbb98 pc=0x55adc5cc5ff0 net/http.(*Server).Serve.gowrap3() net/http/server.go:3360 +0x28 fp=0xc0001cbfe0 sp=0xc0001cbfb8 pc=0x55adc5cca908 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc0001cbfe8 sp=0xc0001cbfe0 pc=0x55adc5ac2f21 created by net/http.(*Server).Serve in goroutine 1 net/http/server.go:3360 +0x485 goroutine 955 gp=0xc000104e00 m=nil [GC worker (idle), 4 minutes]: runtime.gopark(0x0?, 0xc00012f658?, 0x70?, 0xdf?, 0x55adc5ad5df3?) runtime/proc.go:424 +0xce fp=0xc00008df38 sp=0xc00008df18 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc00008dfc8 sp=0xc00008df38 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc00008dfe0 sp=0xc00008dfc8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc00008dfe8 sp=0xc00008dfe0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 goroutine 954 gp=0xc0003d4540 m=nil [GC worker (idle), 4 minutes]: runtime.gopark(0x0?, 0xc00012f658?, 0x70?, 0x2f?, 0x55adc5ad5df3?) runtime/proc.go:424 +0xce fp=0xc000252f38 sp=0xc000252f18 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc000252fc8 sp=0xc000252f38 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc000252fe0 sp=0xc000252fc8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc000252fe8 sp=0xc000252fe0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 goroutine 956 gp=0xc000237340 m=nil [GC worker (idle), 4 minutes]: runtime.gopark(0x0?, 0xc00012f658?, 0x70?, 0x9f?, 0x55adc5ad5df3?) runtime/proc.go:424 +0xce fp=0xc000259f38 sp=0xc000259f18 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc000259fc8 sp=0xc000259f38 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc000259fe0 sp=0xc000259fc8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc000259fe8 sp=0xc000259fe0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 goroutine 957 gp=0xc000237500 m=nil [GC worker (idle), 4 minutes]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) runtime/proc.go:424 +0xce fp=0xc000450738 sp=0xc000450718 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc0004507c8 sp=0xc000450738 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc0004507e0 sp=0xc0004507c8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc0004507e8 sp=0xc0004507e0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 goroutine 958 gp=0xc0002376c0 m=nil [GC worker (idle), 4 minutes]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) runtime/proc.go:424 +0xce fp=0xc000450f38 sp=0xc000450f18 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc000450fc8 sp=0xc000450f38 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc000450fe0 sp=0xc000450fc8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc000450fe8 sp=0xc000450fe0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 goroutine 959 gp=0xc000237880 m=nil [GC worker (idle), 4 minutes]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) runtime/proc.go:424 +0xce fp=0xc000451738 sp=0xc000451718 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc0004517c8 sp=0xc000451738 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc0004517e0 sp=0xc0004517c8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc0004517e8 sp=0xc0004517e0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 goroutine 960 gp=0xc000237a40 m=nil [GC worker (idle), 4 minutes]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) runtime/proc.go:424 +0xce fp=0xc000451f38 sp=0xc000451f18 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc000451fc8 sp=0xc000451f38 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc000451fe0 sp=0xc000451fc8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc000451fe8 sp=0xc000451fe0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 goroutine 961 gp=0xc000237c00 m=nil [GC worker (idle), 4 minutes]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) runtime/proc.go:424 +0xce fp=0xc000452738 sp=0xc000452718 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc0004527c8 sp=0xc000452738 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc0004527e0 sp=0xc0004527c8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc0004527e8 sp=0xc0004527e0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 goroutine 978 gp=0xc000237dc0 m=nil [GC worker (idle), 4 minutes]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) runtime/proc.go:424 +0xce fp=0xc000452f38 sp=0xc000452f18 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc000452fc8 sp=0xc000452f38 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc000452fe0 sp=0xc000452fc8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc000452fe8 sp=0xc000452fe0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 goroutine 979 gp=0xc000454000 m=nil [GC worker (idle), 4 minutes]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) runtime/proc.go:424 +0xce fp=0xc000453738 sp=0xc000453718 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc0004537c8 sp=0xc000453738 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc0004537e0 sp=0xc0004537c8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc0004537e8 sp=0xc0004537e0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 goroutine 980 gp=0xc0004541c0 m=nil [GC worker (idle), 4 minutes]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) runtime/proc.go:424 +0xce fp=0xc000453f38 sp=0xc000453f18 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc000453fc8 sp=0xc000453f38 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc000453fe0 sp=0xc000453fc8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc000453fe8 sp=0xc000453fe0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 goroutine 981 gp=0xc000454380 m=nil [GC worker (idle), 4 minutes]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) runtime/proc.go:424 +0xce fp=0xc00044c738 sp=0xc00044c718 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc00044c7c8 sp=0xc00044c738 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc00044c7e0 sp=0xc00044c7c8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc00044c7e8 sp=0xc00044c7e0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 goroutine 982 gp=0xc000454540 m=nil [GC worker (idle), 4 minutes]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) runtime/proc.go:424 +0xce fp=0xc00044cf38 sp=0xc00044cf18 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc00044cfc8 sp=0xc00044cf38 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc00044cfe0 sp=0xc00044cfc8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc00044cfe8 sp=0xc00044cfe0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 goroutine 983 gp=0xc000454700 m=nil [GC worker (idle), 4 minutes]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) runtime/proc.go:424 +0xce fp=0xc00044d738 sp=0xc00044d718 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc00044d7c8 sp=0xc00044d738 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc00044d7e0 sp=0xc00044d7c8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc00044d7e8 sp=0xc00044d7e0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 goroutine 984 gp=0xc0004548c0 m=nil [GC worker (idle), 4 minutes]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) runtime/proc.go:424 +0xce fp=0xc00044df38 sp=0xc00044df18 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc00044dfc8 sp=0xc00044df38 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc00044dfe0 sp=0xc00044dfc8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc00044dfe8 sp=0xc00044dfe0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 goroutine 985 gp=0xc000454a80 m=nil [GC worker (idle), 4 minutes]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) runtime/proc.go:424 +0xce fp=0xc00044e738 sp=0xc00044e718 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc00044e7c8 sp=0xc00044e738 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc00044e7e0 sp=0xc00044e7c8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc00044e7e8 sp=0xc00044e7e0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 goroutine 986 gp=0xc000454c40 m=nil [GC worker (idle), 4 minutes]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) runtime/proc.go:424 +0xce fp=0xc00044ef38 sp=0xc00044ef18 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc00044efc8 sp=0xc00044ef38 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc00044efe0 sp=0xc00044efc8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc00044efe8 sp=0xc00044efe0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 goroutine 987 gp=0xc000454e00 m=nil [GC worker (idle), 4 minutes]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) runtime/proc.go:424 +0xce fp=0xc00044f738 sp=0xc00044f718 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc00044f7c8 sp=0xc00044f738 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc00044f7e0 sp=0xc00044f7c8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc00044f7e8 sp=0xc00044f7e0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 goroutine 988 gp=0xc000454fc0 m=nil [GC worker (idle), 4 minutes]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) runtime/proc.go:424 +0xce fp=0xc00044ff38 sp=0xc00044ff18 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc00044ffc8 sp=0xc00044ff38 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc00044ffe0 sp=0xc00044ffc8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc00044ffe8 sp=0xc00044ffe0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 goroutine 989 gp=0xc000455180 m=nil [GC worker (idle), 4 minutes]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) runtime/proc.go:424 +0xce fp=0xc00045a738 sp=0xc00045a718 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc00045a7c8 sp=0xc00045a738 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc00045a7e0 sp=0xc00045a7c8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc00045a7e8 sp=0xc00045a7e0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 goroutine 990 gp=0xc000455340 m=nil [GC worker (idle), 4 minutes]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) runtime/proc.go:424 +0xce fp=0xc00045af38 sp=0xc00045af18 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc00045afc8 sp=0xc00045af38 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc00045afe0 sp=0xc00045afc8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc00045afe8 sp=0xc00045afe0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 goroutine 991 gp=0xc000455500 m=nil [GC worker (idle), 4 minutes]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) runtime/proc.go:424 +0xce fp=0xc00045b738 sp=0xc00045b718 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc00045b7c8 sp=0xc00045b738 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc00045b7e0 sp=0xc00045b7c8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc00045b7e8 sp=0xc00045b7e0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 goroutine 992 gp=0xc0004556c0 m=nil [GC worker (idle), 4 minutes]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) runtime/proc.go:424 +0xce fp=0xc00045bf38 sp=0xc00045bf18 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc00045bfc8 sp=0xc00045bf38 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc00045bfe0 sp=0xc00045bfc8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc00045bfe8 sp=0xc00045bfe0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 goroutine 993 gp=0xc000455880 m=nil [GC worker (idle), 4 minutes]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) runtime/proc.go:424 +0xce fp=0xc00045c738 sp=0xc00045c718 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc00045c7c8 sp=0xc00045c738 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc00045c7e0 sp=0xc00045c7c8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc00045c7e8 sp=0xc00045c7e0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 goroutine 994 gp=0xc000455a40 m=nil [GC worker (idle), 4 minutes]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) runtime/proc.go:424 +0xce fp=0xc00045cf38 sp=0xc00045cf18 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc00045cfc8 sp=0xc00045cf38 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc00045cfe0 sp=0xc00045cfc8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc00045cfe8 sp=0xc00045cfe0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 goroutine 995 gp=0xc000455c00 m=nil [GC worker (idle), 2 minutes]: runtime.gopark(0x3a4d2500e21f1e?, 0x0?, 0x0?, 0x0?, 0x0?) runtime/proc.go:424 +0xce fp=0xc00045d738 sp=0xc00045d718 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc00045d7c8 sp=0xc00045d738 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc00045d7e0 sp=0xc00045d7c8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc00045d7e8 sp=0xc00045d7e0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 goroutine 996 gp=0xc000455dc0 m=nil [GC worker (idle), 2 minutes]: runtime.gopark(0x55adc638d5c0?, 0x1?, 0x54?, 0xde?, 0x0?) runtime/proc.go:424 +0xce fp=0xc00045df38 sp=0xc00045df18 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc00045dfc8 sp=0xc00045df38 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc00045dfe0 sp=0xc00045dfc8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc00045dfe8 sp=0xc00045dfe0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 goroutine 997 gp=0xc000460000 m=nil [GC worker (idle)]: runtime.gopark(0x55adc638d5c0?, 0x1?, 0x84?, 0x1d?, 0x0?) runtime/proc.go:424 +0xce fp=0xc000456738 sp=0xc000456718 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc0004567c8 sp=0xc000456738 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc0004567e0 sp=0xc0004567c8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc0004567e8 sp=0xc0004567e0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 goroutine 998 gp=0xc0004601c0 m=nil [GC worker (idle), 2 minutes]: runtime.gopark(0x3a4d2500e20ec8?, 0x1?, 0x2b?, 0xfd?, 0x0?) runtime/proc.go:424 +0xce fp=0xc000456f38 sp=0xc000456f18 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc000456fc8 sp=0xc000456f38 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc000456fe0 sp=0xc000456fc8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc000456fe8 sp=0xc000456fe0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 goroutine 999 gp=0xc000460380 m=nil [GC worker (idle)]: runtime.gopark(0x55adc638d5c0?, 0x1?, 0xec?, 0x7d?, 0x0?) runtime/proc.go:424 +0xce fp=0xc000457738 sp=0xc000457718 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc0004577c8 sp=0xc000457738 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc0004577e0 sp=0xc0004577c8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc0004577e8 sp=0xc0004577e0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 goroutine 1000 gp=0xc000460540 m=nil [GC worker (idle), 2 minutes]: runtime.gopark(0x55adc638d5c0?, 0x1?, 0xfc?, 0xe?, 0x0?) runtime/proc.go:424 +0xce fp=0xc000457f38 sp=0xc000457f18 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc000457fc8 sp=0xc000457f38 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc000457fe0 sp=0xc000457fc8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc000457fe8 sp=0xc000457fe0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 goroutine 1001 gp=0xc000460700 m=nil [GC worker (idle)]: runtime.gopark(0x3a4d2500e5cc73?, 0x1?, 0x27?, 0x45?, 0x0?) runtime/proc.go:424 +0xce fp=0xc000458738 sp=0xc000458718 pc=0x55adc5abb2ee runtime.gcBgMarkWorker(0xc00043e9a0) runtime/mgc.go:1412 +0xe9 fp=0xc0004587c8 sp=0xc000458738 pc=0x55adc5a68bc9 runtime.gcBgMarkStartWorkers.gowrap1() runtime/mgc.go:1328 +0x25 fp=0xc0004587e0 sp=0xc0004587c8 pc=0x55adc5a68aa5 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc0004587e8 sp=0xc0004587e0 pc=0x55adc5ac2f21 created by runtime.gcBgMarkStartWorkers in goroutine 966 runtime/mgc.go:1328 +0x105 rax 0x0 rbx 0x0 rcx 0xffffffffffffffff rdx 0x6 rdi 0x15f35 rsi 0x15f3b rbp 0x7fd46654f7f0 rsp 0x7fd46654f698 r8 0x0 r9 0x1 r10 0x8 r11 0x206 r12 0x55adc5ffdf48 r13 0x2ec0 r14 0x1 r15 0x7fd3f844fbe0 rip 0x7fd4ad6a9387 rflags 0x206 cs 0x33 fs 0x0 gs 0x0 [GIN] 2025/02/19 - 09:03:22 | 200 | 8m17s | 127.0.0.1 | POST "/api/chat" it seems has “200”,but in python's logs: Traceback (most recent call last): File "test_QA.py", line 55, in <module> item['output'] = get_ans_ollama(q) File "test_QA.py", line 45, in get_ans_ollama for chunk in stream: File "/home/hust1/.conda/envs/fd/lib/python3.8/site-packages/ollama/_client.py", line 173, in inner raise ResponseError(err) ollama._types.ResponseError: an error was encountered while running the model: unexpected EOF (status code: -1) it has some errors if i set the num_ctx = 16000,there has no such error,but the speed is too slow
Author
Owner

@pdevine commented on GitHub (Feb 19, 2025):

@TheHoneyTree num_ctx changes the context sizes which requires more memory and will definitely impact inference speeds (particularly if part of the model is being offloaded onto CPU). This is expected behaviour. I haven't gone through all of the traceroute, but I would imagine this is happening because a bug in the memory calculation.

<!-- gh-comment-id:2667932685 --> @pdevine commented on GitHub (Feb 19, 2025): @TheHoneyTree `num_ctx` changes the context sizes which requires more memory and will definitely impact inference speeds (particularly if part of the model is being offloaded onto CPU). This is expected behaviour. I haven't gone through all of the traceroute, but I would imagine this is happening because a bug in the memory calculation.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/ollama#52492