[GH-ISSUE #8249] DeepSeek v3 #67326

Closed
opened 2026-05-04 09:56:05 -05:00 by GiteaMirror · 67 comments
Owner
Originally created by @olumolu on GitHub (Dec 26, 2024). Original GitHub issue: https://github.com/ollama/ollama/issues/8249 https://huggingface.co/deepseek-ai/DeepSeek-V3-Base https://huggingface.co/deepseek-ai/DeepSeek-V3 Kindly make it available to ollama so we can test.. Model paper https://github.com/deepseek-ai/DeepSeek-V3/blob/main/DeepSeek_V3.pdf https://x.com/deepseek_ai/status/1872242657348710721
GiteaMirror added the model label 2026-05-04 09:56:05 -05:00
Author
Owner

@rick-github commented on GitHub (Dec 26, 2024):

https://github.com/ggerganov/llama.cpp/issues/10981

<!-- gh-comment-id:2562887693 --> @rick-github commented on GitHub (Dec 26, 2024): https://github.com/ggerganov/llama.cpp/issues/10981
Author
Owner

@x66ccff commented on GitHub (Jan 5, 2025):

https://github.com/ggerganov/llama.cpp/pull/11049 llama.cpp already merged now

<!-- gh-comment-id:2571483112 --> @x66ccff commented on GitHub (Jan 5, 2025): https://github.com/ggerganov/llama.cpp/pull/11049 llama.cpp already merged now
Author
Owner

@rick-github commented on GitHub (Jan 5, 2025):

#8308 will pull in deepseek3 support.

<!-- gh-comment-id:2571525393 --> @rick-github commented on GitHub (Jan 5, 2025): #8308 will pull in deepseek3 support.
Author
Owner

@ER-EPR commented on GitHub (Jan 9, 2025):

#8308 will pull in deepseek3 support.

Now https://github.com/ollama/ollama/pull/8308 is merged, how can I use deepseekv3 with ollama? I searched in the library, but did not find it.

<!-- gh-comment-id:2579121718 --> @ER-EPR commented on GitHub (Jan 9, 2025): > #8308 will pull in deepseek3 support. Now https://github.com/ollama/ollama/pull/8308 is merged, how can I use deepseekv3 with ollama? I searched in the library, but did not find it.
Author
Owner

@rick-github commented on GitHub (Jan 9, 2025):

Build ollama from git head, download the safetensors, convert to GGUF, import to ollama.

<!-- gh-comment-id:2579149793 --> @rick-github commented on GitHub (Jan 9, 2025): [Build](https://github.com/ollama/ollama/blob/main/docs/development.md) ollama from git head, download the [safetensors](https://huggingface.co/deepseek-ai/DeepSeek-V3/tree/main), [convert](https://github.com/ggerganov/llama.cpp/blob/master/convert_hf_to_gguf.py) to GGUF, [import](https://github.com/ollama/ollama/blob/main/docs/import.md#Importing-a-GGUF-based-model-or-adapter) to ollama.
Author
Owner

@rick-github commented on GitHub (Jan 9, 2025):

Install v0.5.5-rc0, download the GGUF shards, merge to a single GGUF, import to ollama.

<!-- gh-comment-id:2579296553 --> @rick-github commented on GitHub (Jan 9, 2025): Install [v0.5.5-rc0](https://github.com/ollama/ollama/releases/tag/v0.5.5-rc0), download the [`GGUF`](https://huggingface.co/bullerwins/DeepSeek-V3-GGUF) shards, [merge](https://github.com/ggerganov/llama.cpp/tree/master/examples/gguf-split) to a single GGUF, [import](https://github.com/ollama/ollama/blob/main/docs/import.md#Importing-a-GGUF-based-model-or-adapter) to ollama.
Author
Owner

@rick-github commented on GitHub (Jan 9, 2025):

Sadly I get an error when loading:

Error: llama runner process has terminated: GGML_ASSERT(hparams.n_expert <= LLAMA_MAX_EXPERTS) failed

So perhaps deepseek-v3 won't be supported in 0.5.5.

<!-- gh-comment-id:2579955188 --> @rick-github commented on GitHub (Jan 9, 2025): Sadly I get an error when loading: ``` Error: llama runner process has terminated: GGML_ASSERT(hparams.n_expert <= LLAMA_MAX_EXPERTS) failed ``` So perhaps deepseek-v3 won't be supported in 0.5.5.
Author
Owner

@rick-github commented on GitHub (Jan 9, 2025):

Whoops, mis-configured container.

$ ollama run --verbose  deepseek-v3:g48-q3_K_M
>>> hello
Hello! How can I assist you today? 😊

total duration:       1.782392317s
load duration:        20.747746ms
prompt eval count:    4 token(s)
prompt eval duration: 144ms
prompt eval rate:     27.78 tokens/s
eval count:           12 token(s)
eval duration:        1.616s
eval rate:            7.43 tokens/s
>>> why is the sky blue?
The sky appears blue due to a phenomenon called **Rayleigh scattering**. Here's how it works:

1. **Sunlight and Earth's Atmosphere**: Sunlight, which looks white, contains all colors of 
the visible spectrum. When sunlight passes through Earth’s atmosphere, it interacts with air 
molecules, dust, and other tiny particles.

2. **Scattering of Light**: The shorter wavelengths of light (blue and violet) are scattered 
more than the longer wavelengths (red, orange, yellow) because they travel in smaller, tighter 
waves. This scattering effect is called Rayleigh scattering, named after Lord Rayleigh who 
first described it.

3. **Why Blue Dominates**: Although both blue and violet light are scattered most, our eyes 
are more sensitive to blue light than to violet. Additionally, some of the violet light is 
absorbed by the upper atmosphere. As a result, we perceive the sky as blue during the day when 
the Sun is high overhead.

### Why Isn’t It Always Blue?
- **Sunrise and Sunset**: When the Sun is low on the horizon, sunlight passes through more of 
Earth's atmosphere. This causes even more scattering, allowing longer wavelengths (reds and 
oranges) to dominate, creating those beautiful sunset colors.
- **Cloudy Days**: Clouds scatter all wavelengths equally, making them appear white or gray.

In summary, the sky is blue because air molecules scatter shorter-wavelength blue light from 
the Sun in all directions, making it visible to our eyes! 🌌

total duration:       49.608397245s
load duration:        20.725016ms
prompt eval count:    25 token(s)
prompt eval duration: 789ms
prompt eval rate:     31.69 tokens/s
eval count:           299 token(s)
eval duration:        48.792s
eval rate:            6.13 tokens/s

<!-- gh-comment-id:2580026147 --> @rick-github commented on GitHub (Jan 9, 2025): Whoops, mis-configured container. ```console $ ollama run --verbose deepseek-v3:g48-q3_K_M >>> hello Hello! How can I assist you today? 😊 total duration: 1.782392317s load duration: 20.747746ms prompt eval count: 4 token(s) prompt eval duration: 144ms prompt eval rate: 27.78 tokens/s eval count: 12 token(s) eval duration: 1.616s eval rate: 7.43 tokens/s >>> why is the sky blue? The sky appears blue due to a phenomenon called **Rayleigh scattering**. Here's how it works: 1. **Sunlight and Earth's Atmosphere**: Sunlight, which looks white, contains all colors of the visible spectrum. When sunlight passes through Earth’s atmosphere, it interacts with air molecules, dust, and other tiny particles. 2. **Scattering of Light**: The shorter wavelengths of light (blue and violet) are scattered more than the longer wavelengths (red, orange, yellow) because they travel in smaller, tighter waves. This scattering effect is called Rayleigh scattering, named after Lord Rayleigh who first described it. 3. **Why Blue Dominates**: Although both blue and violet light are scattered most, our eyes are more sensitive to blue light than to violet. Additionally, some of the violet light is absorbed by the upper atmosphere. As a result, we perceive the sky as blue during the day when the Sun is high overhead. ### Why Isn’t It Always Blue? - **Sunrise and Sunset**: When the Sun is low on the horizon, sunlight passes through more of Earth's atmosphere. This causes even more scattering, allowing longer wavelengths (reds and oranges) to dominate, creating those beautiful sunset colors. - **Cloudy Days**: Clouds scatter all wavelengths equally, making them appear white or gray. In summary, the sky is blue because air molecules scatter shorter-wavelength blue light from the Sun in all directions, making it visible to our eyes! 🌌 total duration: 49.608397245s load duration: 20.725016ms prompt eval count: 25 token(s) prompt eval duration: 789ms prompt eval rate: 31.69 tokens/s eval count: 299 token(s) eval duration: 48.792s eval rate: 6.13 tokens/s ```
Author
Owner

@jjparady commented on GitHub (Jan 9, 2025):

@rick-github How did you fix the config? I’m getting the same error.

<!-- gh-comment-id:2581084754 --> @jjparady commented on GitHub (Jan 9, 2025): @rick-github How did you fix the config? I’m getting the same error.
Author
Owner

@rick-github commented on GitHub (Jan 9, 2025):

I had configured 4 GPUs instead of 8.

<!-- gh-comment-id:2581306181 --> @rick-github commented on GitHub (Jan 9, 2025): I had configured 4 GPUs instead of 8.
Author
Owner

@jjparady commented on GitHub (Jan 10, 2025):

Hm, I am trying it on CPU only with no luck getting around this error.

I can get it working well on llama.cpp though. Maybe it has to do with how I am making the Binary?

<!-- gh-comment-id:2582788572 --> @jjparady commented on GitHub (Jan 10, 2025): Hm, I am trying it on CPU only with no luck getting around this error. I can get it working well on llama.cpp though. Maybe it has to do with how I am making the Binary?
Author
Owner

@zengqingfu1442 commented on GitHub (Jan 13, 2025):

Whoops, mis-configured container.

$ ollama run --verbose  deepseek-v3:g48-q3_K_M
>>> hello
Hello! How can I assist you today? 😊

total duration:       1.782392317s
load duration:        20.747746ms
prompt eval count:    4 token(s)
prompt eval duration: 144ms
prompt eval rate:     27.78 tokens/s
eval count:           12 token(s)
eval duration:        1.616s
eval rate:            7.43 tokens/s
>>> why is the sky blue?
The sky appears blue due to a phenomenon called **Rayleigh scattering**. Here's how it works:

1. **Sunlight and Earth's Atmosphere**: Sunlight, which looks white, contains all colors of 
the visible spectrum. When sunlight passes through Earth’s atmosphere, it interacts with air 
molecules, dust, and other tiny particles.

2. **Scattering of Light**: The shorter wavelengths of light (blue and violet) are scattered 
more than the longer wavelengths (red, orange, yellow) because they travel in smaller, tighter 
waves. This scattering effect is called Rayleigh scattering, named after Lord Rayleigh who 
first described it.

3. **Why Blue Dominates**: Although both blue and violet light are scattered most, our eyes 
are more sensitive to blue light than to violet. Additionally, some of the violet light is 
absorbed by the upper atmosphere. As a result, we perceive the sky as blue during the day when 
the Sun is high overhead.

### Why Isn’t It Always Blue?
- **Sunrise and Sunset**: When the Sun is low on the horizon, sunlight passes through more of 
Earth's atmosphere. This causes even more scattering, allowing longer wavelengths (reds and 
oranges) to dominate, creating those beautiful sunset colors.
- **Cloudy Days**: Clouds scatter all wavelengths equally, making them appear white or gray.

In summary, the sky is blue because air molecules scatter shorter-wavelength blue light from 
the Sun in all directions, making it visible to our eyes! 🌌

total duration:       49.608397245s
load duration:        20.725016ms
prompt eval count:    25 token(s)
prompt eval duration: 789ms
prompt eval rate:     31.69 tokens/s
eval count:           299 token(s)
eval duration:        48.792s
eval rate:            6.13 tokens/s

So, deepseek-v3 is already supported in 0.5.5 ?

<!-- gh-comment-id:2586629535 --> @zengqingfu1442 commented on GitHub (Jan 13, 2025): > Whoops, mis-configured container. > > ``` > $ ollama run --verbose deepseek-v3:g48-q3_K_M > >>> hello > Hello! How can I assist you today? 😊 > > total duration: 1.782392317s > load duration: 20.747746ms > prompt eval count: 4 token(s) > prompt eval duration: 144ms > prompt eval rate: 27.78 tokens/s > eval count: 12 token(s) > eval duration: 1.616s > eval rate: 7.43 tokens/s > >>> why is the sky blue? > The sky appears blue due to a phenomenon called **Rayleigh scattering**. Here's how it works: > > 1. **Sunlight and Earth's Atmosphere**: Sunlight, which looks white, contains all colors of > the visible spectrum. When sunlight passes through Earth’s atmosphere, it interacts with air > molecules, dust, and other tiny particles. > > 2. **Scattering of Light**: The shorter wavelengths of light (blue and violet) are scattered > more than the longer wavelengths (red, orange, yellow) because they travel in smaller, tighter > waves. This scattering effect is called Rayleigh scattering, named after Lord Rayleigh who > first described it. > > 3. **Why Blue Dominates**: Although both blue and violet light are scattered most, our eyes > are more sensitive to blue light than to violet. Additionally, some of the violet light is > absorbed by the upper atmosphere. As a result, we perceive the sky as blue during the day when > the Sun is high overhead. > > ### Why Isn’t It Always Blue? > - **Sunrise and Sunset**: When the Sun is low on the horizon, sunlight passes through more of > Earth's atmosphere. This causes even more scattering, allowing longer wavelengths (reds and > oranges) to dominate, creating those beautiful sunset colors. > - **Cloudy Days**: Clouds scatter all wavelengths equally, making them appear white or gray. > > In summary, the sky is blue because air molecules scatter shorter-wavelength blue light from > the Sun in all directions, making it visible to our eyes! 🌌 > > total duration: 49.608397245s > load duration: 20.725016ms > prompt eval count: 25 token(s) > prompt eval duration: 789ms > prompt eval rate: 31.69 tokens/s > eval count: 299 token(s) > eval duration: 48.792s > eval rate: 6.13 tokens/s > ``` So, deepseek-v3 is already supported in 0.5.5 ?
Author
Owner

@rick-github commented on GitHub (Jan 13, 2025):

Yes, but the model is not in the ollama library yet.

<!-- gh-comment-id:2586709907 --> @rick-github commented on GitHub (Jan 13, 2025): Yes, but the model is not in the ollama library yet.
Author
Owner

@zengqingfu1442 commented on GitHub (Jan 13, 2025):

I can run deepseek-v3 2bit quantizaton https://huggingface.co/unsloth/DeepSeek-V3-GGUF/tree/main/DeepSeek-V3-Q2_K_XS with ollama 0.5.5+CPU now.

<!-- gh-comment-id:2586725230 --> @zengqingfu1442 commented on GitHub (Jan 13, 2025): I can run deepseek-v3 2bit quantizaton https://huggingface.co/unsloth/DeepSeek-V3-GGUF/tree/main/DeepSeek-V3-Q2_K_XS with ollama 0.5.5+CPU now.
Author
Owner

@zengqingfu1442 commented on GitHub (Jan 13, 2025):

Yes, but the model is not in the ollama library yet.

Where can i see the ollama library?

<!-- gh-comment-id:2586726508 --> @zengqingfu1442 commented on GitHub (Jan 13, 2025): > Yes, but the model is not in the ollama library yet. Where can i see the ollama library?
Author
Owner

@rick-github commented on GitHub (Jan 13, 2025):

Ollama.com/models

<!-- gh-comment-id:2586729166 --> @rick-github commented on GitHub (Jan 13, 2025): [Ollama.com/models](https://Ollama.com/models)
Author
Owner

@zengqingfu1442 commented on GitHub (Jan 13, 2025):

i searched this model https://ollama.com/nezahatkorkmaz/deepseek-v3

<!-- gh-comment-id:2586738359 --> @zengqingfu1442 commented on GitHub (Jan 13, 2025): i searched this model https://ollama.com/nezahatkorkmaz/deepseek-v3
Author
Owner

@rick-github commented on GitHub (Jan 13, 2025):

This model is only 2GB.

<!-- gh-comment-id:2586747004 --> @rick-github commented on GitHub (Jan 13, 2025): This model is only 2GB.
Author
Owner

@bgort commented on GitHub (Jan 13, 2025):

I'm having trouble somewhere, but am unsure what's going on. Debug output isn't helpful.

# ollama --version
ollama version is 0.5.5

I downloaded the Deepseek-V3 gguf shards from hf (unsloth/DeepSeek-V3-GGUF), merged them into a single file, created a model file:

# ls -la /opt/ollama/models
total 216068100
drwxr-xr-x 4 root   root           4096 Jan 13 18:42 .
drwxr-xr-x 3 root   root           4096 Jan 11 14:44 ..
drwxr-xr-x 2 ollama ollama         4096 Jan 13 18:12 blobs
-rw-r--r-- 1 ollama ollama           53 Jan 13 18:23 DeepSeekV3m
-rw-r--r-- 1 ollama ollama 221253685920 Jan 13 17:16 DeepSeek-V3-Q2_K_XS.gguf
drwxr-xr-x 3 ollama ollama         4096 Jan  7 14:33 manifests
# cat DeepSeekV3m
FROM "/opt/ollama/models/DeepSeek-V3-Q2_K_XS.gguf"  (tried with and without quotes)

Then 'create' fails:

# ollama create -f DeepSeekV3m deepseek
gathering model components
Error: invalid model name

The debug output (OLLAMA_DEBUG=1) shows nothing of use:

Jan 13 18:43:32 ai-gen0 ollama[8835]: time=2025-01-13T18:43:32.159-05:00 level=DEBUG source=create.go:72 msg="create model from model name"
Jan 13 18:43:32 ai-gen0 ollama[8835]: [GIN] 2025/01/13 - 18:43:32 | 200 |     379.492µs |       127.0.0.1 | POST     "/api/create"

I'm still relatively new to ollama, so maybe I'm missing something obvious? Any help appreciated.

<!-- gh-comment-id:2588475466 --> @bgort commented on GitHub (Jan 13, 2025): I'm having trouble somewhere, but am unsure what's going on. Debug output isn't helpful. ``` # ollama --version ollama version is 0.5.5 ``` I downloaded the Deepseek-V3 gguf shards from hf (unsloth/DeepSeek-V3-GGUF), merged them into a single file, created a model file: ``` # ls -la /opt/ollama/models total 216068100 drwxr-xr-x 4 root root 4096 Jan 13 18:42 . drwxr-xr-x 3 root root 4096 Jan 11 14:44 .. drwxr-xr-x 2 ollama ollama 4096 Jan 13 18:12 blobs -rw-r--r-- 1 ollama ollama 53 Jan 13 18:23 DeepSeekV3m -rw-r--r-- 1 ollama ollama 221253685920 Jan 13 17:16 DeepSeek-V3-Q2_K_XS.gguf drwxr-xr-x 3 ollama ollama 4096 Jan 7 14:33 manifests ``` ``` # cat DeepSeekV3m FROM "/opt/ollama/models/DeepSeek-V3-Q2_K_XS.gguf" (tried with and without quotes) ``` Then 'create' fails: ``` # ollama create -f DeepSeekV3m deepseek gathering model components Error: invalid model name ``` The debug output (OLLAMA_DEBUG=1) shows nothing of use: ``` Jan 13 18:43:32 ai-gen0 ollama[8835]: time=2025-01-13T18:43:32.159-05:00 level=DEBUG source=create.go:72 msg="create model from model name" Jan 13 18:43:32 ai-gen0 ollama[8835]: [GIN] 2025/01/13 - 18:43:32 | 200 | 379.492µs | 127.0.0.1 | POST "/api/create" ``` I'm still relatively new to ollama, so maybe I'm missing something obvious? Any help appreciated.
Author
Owner

@rick-github commented on GitHub (Jan 14, 2025):

Official: https://ollama.com/library/deepseek-v3

<!-- gh-comment-id:2588479649 --> @rick-github commented on GitHub (Jan 14, 2025): Official: https://ollama.com/library/deepseek-v3
Author
Owner

@rick-github commented on GitHub (Jan 14, 2025):

The model create feature had a bit of an overhaul for 0.5.5, it has some rough edges. I'm not sure if it will work any better, but you could try downgrading to 0.5.4, doing the create, and then upgrading to 0.5.5 to actually run the model.

curl -fsSL https://ollama.com/install.sh | OLLAMA_VERSION=0.5.4 sh
ollama create -f DeepSeekV3m deepseek
curl -fsSL https://ollama.com/install.sh | OLLAMA_VERSION=0.5.5 sh

<!-- gh-comment-id:2588483964 --> @rick-github commented on GitHub (Jan 14, 2025): The model create feature had a bit of an overhaul for 0.5.5, it has some rough edges. I'm not sure if it will work any better, but you could try downgrading to 0.5.4, doing the create, and then upgrading to 0.5.5 to actually run the model. ```sh curl -fsSL https://ollama.com/install.sh | OLLAMA_VERSION=0.5.4 sh ollama create -f DeepSeekV3m deepseek curl -fsSL https://ollama.com/install.sh | OLLAMA_VERSION=0.5.5 sh ```
Author
Owner

@pmarreck commented on GitHub (Jan 14, 2025):

what's the expected RAM reqs for this model?

20250113214920 ~ bash> ollama run deepseek-v3
Error: llama runner process has terminated: signal: killed

20250113215007 ~ bash> echo $(( $(sysctl -n hw.memsize) / $((1024 ** 3)) ))GB
128GB
<!-- gh-comment-id:2588800612 --> @pmarreck commented on GitHub (Jan 14, 2025): what's the expected RAM reqs for this model? ```bash 20250113214920 ~ bash> ollama run deepseek-v3 Error: llama runner process has terminated: signal: killed 20250113215007 ~ bash> echo $(( $(sysctl -n hw.memsize) / $((1024 ** 3)) ))GB 128GB ```
Author
Owner

@rick-github commented on GitHub (Jan 14, 2025):

More than 400GB. In my test above I ran the smaller q3 model and it used all 320G VRAM and still spilled into system RAM.

<!-- gh-comment-id:2588820526 --> @rick-github commented on GitHub (Jan 14, 2025): More than 400GB. In my test above I ran the smaller q3 model and it used all 320G VRAM and still spilled into system RAM.
Author
Owner

@bgort commented on GitHub (Jan 14, 2025):

Thanks @rick-github. When I downloaded the shards a few days ago there was no official Deepseek-V3 model, but I see now there is. It doesn't look like there's a q2 yet, so I assume it won't work very well for me; I only have 48gb GPU RAM at the moment, but will be doubling that in a few days so should be okay with the q4 at that point, I believe.

Creating the model with 0.5.4 worked - thanks for that - and am now attempting to run it with 0.5.5.

Loading the model (ollama run) times out, as the process seems to be single-threaded and it maxes its single core out and then takes several minutes to load into the ~162GB of system ram. Once it's done that (stopping at ~162gb) it sits - with periodic single-core CPU spikes - and then times out (Error: timed out waiting for llama runner to start - progress 0.00 -). I've tried several times and can't get it to start. I've allocated 192GB of system RAM to this VM and 32 CPU cores (though it doesn't seem to use much CPU, overall - just the one full core and a partial second core sometimes). Unsloth says 40gb GPU RAM is enough for q2, but apparently not?

@pmarreck, as mentioned above, ~162GB system RAM was required for the hf unsloth q2 gguf, for whatever it's worth.

<!-- gh-comment-id:2588822756 --> @bgort commented on GitHub (Jan 14, 2025): Thanks @rick-github. When I downloaded the shards a few days ago there was no official Deepseek-V3 model, but I see now there is. It doesn't look like there's a q2 yet, so I assume it won't work very well for me; I only have 48gb GPU RAM at the moment, but will be doubling that in a few days so should be okay with the q4 at that point, I believe. Creating the model with 0.5.4 worked - thanks for that - and am now attempting to run it with 0.5.5. Loading the model (``ollama run``) times out, as the process seems to be single-threaded and it maxes its single core out and then takes several minutes to load into the ~162GB of system ram. Once it's done that (stopping at ~162gb) it sits - with periodic single-core CPU spikes - and then times out (``Error: timed out waiting for llama runner to start - progress 0.00 -``). I've tried several times and can't get it to start. I've allocated 192GB of system RAM to this VM and 32 CPU cores (though it doesn't seem to use much CPU, overall - just the one full core and a partial second core sometimes). Unsloth says 40gb GPU RAM is enough for q2, but apparently not? @pmarreck, as mentioned above, ~162GB system RAM was required for the hf unsloth q2 gguf, for whatever it's worth.
Author
Owner

@rick-github commented on GitHub (Jan 14, 2025):

Set OLLAMA_LOAD_TIMEOUT=30m.

<!-- gh-comment-id:2588823917 --> @rick-github commented on GitHub (Jan 14, 2025): Set `OLLAMA_LOAD_TIMEOUT=30m`.
Author
Owner

@bgort commented on GitHub (Jan 14, 2025):

I think using DSV3 is beyond practical, at least for my current purposes and with my current hardware. I'll try again when I have a beefier system. Thanks much for your help.

<!-- gh-comment-id:2588841465 --> @bgort commented on GitHub (Jan 14, 2025): I think using DSV3 is beyond practical, at least for my current purposes and with my current hardware. I'll try again when I have a beefier system. Thanks much for your help.
Author
Owner

@zhiyanliu commented on GitHub (Jan 14, 2025):

Awesome, just been notified to upgrade my local version, finally. Thanks!

<!-- gh-comment-id:2588855406 --> @zhiyanliu commented on GitHub (Jan 14, 2025): Awesome, just been notified to upgrade my local version, finally. Thanks!
Author
Owner

@zengqingfu1442 commented on GitHub (Jan 14, 2025):

More than 400GB. In my test above I ran the smaller q3 model and it used all 320G VRAM and still spilled into system RAM.

@rick-github i find that the model needs to be re-loaded into memory when i call the openai-api compatible server of ollama, how can i make ollama keep loading the model in memory?

<!-- gh-comment-id:2589132626 --> @zengqingfu1442 commented on GitHub (Jan 14, 2025): > More than 400GB. In my test above I ran the smaller q3 model and it used all 320G VRAM and still spilled into system RAM. @rick-github i find that the model needs to be re-loaded into memory when i call the openai-api compatible server of ollama, how can i make ollama keep loading the model in memory?
Author
Owner

@rick-github commented on GitHub (Jan 14, 2025):

By default ollama will keep a model in memory for 5 minutes. You can extend this by setting keep_alive. Unfortunately the OpenAI API doesn't support this parameter, so you need to either set it server-wide with OLLAMA_KEEP_ALIVE or add it to the Modelfile.

<!-- gh-comment-id:2589167631 --> @rick-github commented on GitHub (Jan 14, 2025): By default ollama will keep a model in memory for 5 minutes. You can extend this by setting [`keep_alive`](https://github.com/ollama/ollama/blob/main/docs/faq.md#how-do-i-keep-a-model-loaded-in-memory-or-make-it-unload-immediately). Unfortunately the OpenAI API doesn't support this parameter, so you need to either set it server-wide with `OLLAMA_KEEP_ALIVE` or add it to the Modelfile.
Author
Owner

@zengqingfu1442 commented on GitHub (Jan 14, 2025):

By default ollama will keep a model in memory for 5 minutes. You can extend this by setting keep_alive. Unfortunately the OpenAI API doesn't support this parameter, so you need to either set it server-wide with OLLAMA_KEEP_ALIVE or add it to the Modelfile.

i added this variable in /etc/systemd/system/ollama.service and then systemctl daemon-reload && systemctl restart ollama.service

[Service]
...
Environment="OLLAMA_KEEP_ALIVE=-1"

Will this work?

<!-- gh-comment-id:2589175980 --> @zengqingfu1442 commented on GitHub (Jan 14, 2025): > By default ollama will keep a model in memory for 5 minutes. You can extend this by setting [`keep_alive`](https://github.com/ollama/ollama/blob/main/docs/faq.md#how-do-i-keep-a-model-loaded-in-memory-or-make-it-unload-immediately). Unfortunately the OpenAI API doesn't support this parameter, so you need to either set it server-wide with `OLLAMA_KEEP_ALIVE` or add it to the Modelfile. i added this variable in `/etc/systemd/system/ollama.service` and then `systemctl daemon-reload && systemctl restart ollama.service` ``` [Service] ... Environment="OLLAMA_KEEP_ALIVE=-1" ``` Will this work?
Author
Owner

@rick-github commented on GitHub (Jan 14, 2025):

Yes. After you load the model, ollama ps should show Forever:

$ ollama ps
NAME             ID              SIZE     PROCESSOR    UNTIL   
phi3.5:latest    61819fb370a3    10 GB    100% GPU     Forever    
<!-- gh-comment-id:2589188967 --> @rick-github commented on GitHub (Jan 14, 2025): Yes. After you load the model, `ollama ps` should show `Forever`: ```console $ ollama ps NAME ID SIZE PROCESSOR UNTIL phi3.5:latest 61819fb370a3 10 GB 100% GPU Forever ```
Author
Owner

@zengqingfu1442 commented on GitHub (Jan 14, 2025):

Yes. After you load the model, ollama ps should show Forever:

$ ollama ps
NAME             ID              SIZE     PROCESSOR    UNTIL   
phi3.5:latest    61819fb370a3    10 GB    100% GPU     Forever    

It shows Forever, but the model is still off-loaded cause the memory decreased to 25GB.
image

<!-- gh-comment-id:2589419151 --> @zengqingfu1442 commented on GitHub (Jan 14, 2025): > Yes. After you load the model, `ollama ps` should show `Forever`: > > ``` > $ ollama ps > NAME ID SIZE PROCESSOR UNTIL > phi3.5:latest 61819fb370a3 10 GB 100% GPU Forever > ``` It shows `Forever`, but the model is still off-loaded cause the memory decreased to 25GB. ![image](https://github.com/user-attachments/assets/f044f02e-00ac-4eb1-bcff-2632b6547392)
Author
Owner

@rick-github commented on GitHub (Jan 14, 2025):

Then perhaps the runner crashed. The server log will show you more.

<!-- gh-comment-id:2589442646 --> @rick-github commented on GitHub (Jan 14, 2025): Then perhaps the runner crashed. The server log will show you more.
Author
Owner

@zengqingfu1442 commented on GitHub (Jan 15, 2025):

Then perhaps the runner crashed. The server log will show you more.

Here is the ollama server logs when the runner crashed:

Jan 15 06:50:31 inspur11 ollama[2013775]: time=2025-01-15T06:50:31.323Z level=WARN source=runner.go:129 msg="truncating input prompt" limit=2048 prompt=6157 keep=5 new=2048
Jan 15 06:53:02 inspur11 ollama[2013775]: llama.cpp:11968: The current context does not support K-shift
Jan 15 06:53:08 inspur11 ollama[2013775]: /usr/local/lib/ollama/runners/cpu_avx2/ollama_llama_server(+0x3df3c8)[0x561606e3a3c8]
Jan 15 06:53:08 inspur11 ollama[2013775]: /usr/local/lib/ollama/runners/cpu_avx2/ollama_llama_server(+0x3dfa45)[0x561606e3aa45]
Jan 15 06:53:08 inspur11 ollama[2013775]: /usr/local/lib/ollama/runners/cpu_avx2/ollama_llama_server(+0x4eea1f)[0x561606f49a1f]
Jan 15 06:53:08 inspur11 ollama[2013775]: /usr/local/lib/ollama/runners/cpu_avx2/ollama_llama_server(+0x4ef108)[0x561606f4a108]
Jan 15 06:53:08 inspur11 ollama[2013775]: /usr/local/lib/ollama/runners/cpu_avx2/ollama_llama_server(+0x4f0317)[0x561606f4b317]
Jan 15 06:53:08 inspur11 ollama[2013775]: /usr/local/lib/ollama/runners/cpu_avx2/ollama_llama_server(+0x37d036)[0x561606dd8036]
Jan 15 06:53:08 inspur11 ollama[2013775]: /usr/local/lib/ollama/runners/cpu_avx2/ollama_llama_server(+0x13ebe1)[0x561606b99be1]
Jan 15 06:53:08 inspur11 ollama[2013775]: SIGABRT: abort
Jan 15 06:53:08 inspur11 ollama[2013775]: PC=0x7f9a944459fc m=0 sigcode=18446744073709551610
Jan 15 06:53:08 inspur11 ollama[2013775]: signal arrived during cgo execution
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 8 gp=0xc0002521c0 m=0 mp=0x5616073c5140 [syscall]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.cgocall(0x561606dd7ff0, 0xc00047cba0)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/cgocall.go:167 +0x4b fp=0xc00047cb78 sp=0xc00047cb40 pc=0x561606b8c52b
Jan 15 06:53:08 inspur11 ollama[2013775]: github.com/ollama/ollama/llama._Cfunc_llama_decode(0x7f9a300063f0, {0x1, 0x7f9a302b0d30, 0x0, 0x0, 0x7f9a302b2d40, 0x7f9a301d2910, 0x7f9a30633fd0, 0x7f9a302346a0})
Jan 15 06:53:08 inspur11 ollama[2013775]:         _cgo_gotypes.go:547 +0x4f fp=0xc00047cba0 sp=0xc00047cb78 pc=0x561606c365af
Jan 15 06:53:08 inspur11 ollama[2013775]: github.com/ollama/ollama/llama.(*Context).Decode.func1(0x561606dd372b?, 0x7f9a300063f0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         github.com/ollama/ollama/llama/llama.go:207 +0xf5 fp=0xc00047cc90 sp=0xc00047cba0 pc=0x561606c38dd5
Jan 15 06:53:08 inspur11 ollama[2013775]: github.com/ollama/ollama/llama.(*Context).Decode(0x5616074693c0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         github.com/ollama/ollama/llama/llama.go:207 +0x13 fp=0xc00047ccd8 sp=0xc00047cc90 pc=0x561606c38c53
Jan 15 06:53:08 inspur11 ollama[2013775]: github.com/ollama/ollama/llama/runner.(*Server).processBatch(0xc0002181b0, 0xc000280a20, 0xc00047cf20)
Jan 15 06:53:08 inspur11 ollama[2013775]:         github.com/ollama/ollama/llama/runner/runner.go:434 +0x23f fp=0xc00047cee0 sp=0xc00047ccd8 pc=0x561606dd251f
Jan 15 06:53:08 inspur11 ollama[2013775]: github.com/ollama/ollama/llama/runner.(*Server).run(0xc0002181b0, {0x5616071d9120, 0xc000250050})
Jan 15 06:53:08 inspur11 ollama[2013775]:         github.com/ollama/ollama/llama/runner/runner.go:342 +0x1d5 fp=0xc00047cfb8 sp=0xc00047cee0 pc=0x561606dd1f55
Jan 15 06:53:08 inspur11 ollama[2013775]: github.com/ollama/ollama/llama/runner.Execute.gowrap2()
Jan 15 06:53:08 inspur11 ollama[2013775]:         github.com/ollama/ollama/llama/runner/runner.go:975 +0x28 fp=0xc00047cfe0 sp=0xc00047cfb8 pc=0x561606dd6e48
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc00047cfe8 sp=0xc00047cfe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by github.com/ollama/ollama/llama/runner.Execute in goroutine 1
Jan 15 06:53:08 inspur11 ollama[2013775]:         github.com/ollama/ollama/llama/runner/runner.go:975 +0xde5
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 1 gp=0xc0000061c0 m=nil [IO wait, 3 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0005af7b0 sp=0xc0005af790 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.netpollblock(0xc0005af800?, 0x6b2ab86?, 0x16?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/netpoll.go:575 +0xf7 fp=0xc0005af7e8 sp=0xc0005af7b0 pc=0x561606b57097
Jan 15 06:53:08 inspur11 ollama[2013775]: internal/poll.runtime_pollWait(0x7f9a4d0e67d0, 0x72)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/netpoll.go:351 +0x85 fp=0xc0005af808 sp=0xc0005af7e8 pc=0x561606b91625
Jan 15 06:53:08 inspur11 ollama[2013775]: internal/poll.(*pollDesc).wait(0xc00024e100?, 0x900000036?, 0x0)
Jan 15 06:53:08 inspur11 ollama[2013775]:         internal/poll/fd_poll_runtime.go:84 +0x27 fp=0xc0005af830 sp=0xc0005af808 pc=0x561606be7467
Jan 15 06:53:08 inspur11 ollama[2013775]: internal/poll.(*pollDesc).waitRead(...)
Jan 15 06:53:08 inspur11 ollama[2013775]:         internal/poll/fd_poll_runtime.go:89
Jan 15 06:53:08 inspur11 ollama[2013775]: internal/poll.(*FD).Accept(0xc00024e100)
Jan 15 06:53:08 inspur11 ollama[2013775]:         internal/poll/fd_unix.go:620 +0x295 fp=0xc0005af8d8 sp=0xc0005af830 pc=0x561606be89d5
Jan 15 06:53:08 inspur11 ollama[2013775]: net.(*netFD).accept(0xc00024e100)
Jan 15 06:53:08 inspur11 ollama[2013775]:         net/fd_unix.go:172 +0x29 fp=0xc0005af990 sp=0xc0005af8d8 pc=0x561606c612a9
Jan 15 06:53:08 inspur11 ollama[2013775]: net.(*TCPListener).accept(0xc000172700)
Jan 15 06:53:08 inspur11 ollama[2013775]:         net/tcpsock_posix.go:159 +0x1e fp=0xc0005af9e0 sp=0xc0005af990 pc=0x561606c718fe
Jan 15 06:53:08 inspur11 ollama[2013775]: net.(*TCPListener).Accept(0xc000172700)
Jan 15 06:53:08 inspur11 ollama[2013775]:         net/tcpsock.go:372 +0x30 fp=0xc0005afa10 sp=0xc0005af9e0 pc=0x561606c70c30
Jan 15 06:53:08 inspur11 ollama[2013775]: net/http.(*onceCloseListener).Accept(0xc000218240?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         <autogenerated>:1 +0x24 fp=0xc0005afa28 sp=0xc0005afa10 pc=0x561606daf804
Jan 15 06:53:08 inspur11 ollama[2013775]: net/http.(*Server).Serve(0xc000016690, {0x5616071d8b38, 0xc000172700})
Jan 15 06:53:08 inspur11 ollama[2013775]:         net/http/server.go:3330 +0x30c fp=0xc0005afb58 sp=0xc0005afa28 pc=0x561606da154c
Jan 15 06:53:08 inspur11 ollama[2013775]: github.com/ollama/ollama/llama/runner.Execute({0xc000016100?, 0x561606b99bbc?, 0x0?})
Jan 15 06:53:08 inspur11 ollama[2013775]:         github.com/ollama/ollama/llama/runner/runner.go:996 +0x11a9 fp=0xc0005afef8 sp=0xc0005afb58 pc=0x561606dd6b29
Jan 15 06:53:08 inspur11 ollama[2013775]: main.main()
Jan 15 06:53:08 inspur11 ollama[2013775]:         github.com/ollama/ollama/cmd/runner/main.go:11 +0x54 fp=0xc0005aff50 sp=0xc0005afef8 pc=0x561606dd7ab4
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.main()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:272 +0x29d fp=0xc0005affe0 sp=0xc0005aff50 pc=0x561606b5e67d
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0005affe8 sp=0xc0005affe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 2 gp=0xc000006c40 m=nil [force gc (idle), 3 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0xc968e6a82af20?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000144fa8 sp=0xc000144f88 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goparkunlock(...)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:430
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.forcegchelper()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:337 +0xb8 fp=0xc000144fe0 sp=0xc000144fa8 pc=0x561606b5e9b8
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc000144fe8 sp=0xc000144fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.init.7 in goroutine 1
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:325 +0x1a
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 3 gp=0xc000007180 m=nil [GC sweep wait]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x1?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000145780 sp=0xc000145760 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goparkunlock(...)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:430
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.bgsweep(0xc00013e080)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgcsweep.go:317 +0xdf fp=0xc0001457c8 sp=0xc000145780 pc=0x561606b4923f
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcenable.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:204 +0x25 fp=0xc0001457e0 sp=0xc0001457c8 pc=0x561606b3daa5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0001457e8 sp=0xc0001457e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcenable in goroutine 1
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:204 +0x66
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 4 gp=0xc000007340 m=nil [GC scavenge wait]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x115a42?, 0xaf49f?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000145f78 sp=0xc000145f58 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goparkunlock(...)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:430
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.(*scavengerState).park(0x5616073c4000)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgcscavenge.go:425 +0x49 fp=0xc000145fa8 sp=0xc000145f78 pc=0x561606b46c29
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.bgscavenge(0xc00013e080)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgcscavenge.go:658 +0x59 fp=0xc000145fc8 sp=0xc000145fa8 pc=0x561606b471b9
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcenable.gowrap2()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:205 +0x25 fp=0xc000145fe0 sp=0xc000145fc8 pc=0x561606b3da45
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc000145fe8 sp=0xc000145fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcenable in goroutine 1
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:205 +0xa5
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 5 gp=0xc000007c00 m=nil [finalizer wait, 29 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x5616071d4138?, 0x20?, 0x40?, 0x1000000010?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000144620 sp=0xc000144600 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.runfinq()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mfinal.go:193 +0x107 fp=0xc0001447e0 sp=0xc000144620 pc=0x561606b3cb27
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0001447e8 sp=0xc0001447e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.createfing in goroutine 1
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mfinal.go:163 +0x3d
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 6 gp=0xc000007dc0 m=nil [chan receive]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0xc000146760?, 0x561606c487c5?, 0x70?, 0xa2?, 0x5616071dce00?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000146718 sp=0xc0001466f8 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.chanrecv(0xc000022150, 0x0, 0x1)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/chan.go:639 +0x41c fp=0xc000146790 sp=0xc000146718 pc=0x561606b2d77c
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.chanrecv1(0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/chan.go:489 +0x12 fp=0xc0001467b8 sp=0xc000146790 pc=0x561606b2d352
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.unique_runtime_registerUniqueMapCleanup.func1(...)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1781
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.unique_runtime_registerUniqueMapCleanup.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1784 +0x2f fp=0xc0001467e0 sp=0xc0001467b8 pc=0x561606b4090f
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0001467e8 sp=0xc0001467e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by unique.runtime_registerUniqueMapCleanup in goroutine 1
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1779 +0x96
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 491 gp=0xc000252000 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0xc00028c0d8?, 0x70?, 0x87?, 0x561606bace33?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0003a8738 sp=0xc0003a8718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0003a87c8 sp=0xc0003a8738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0003a87e0 sp=0xc0003a87c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0003a87e8 sp=0xc0003a87e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 531 gp=0xc0001848c0 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0xc00028c0d8?, 0x70?, 0x5f?, 0x561606bace33?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0001b5f38 sp=0xc0001b5f18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0001b5fc8 sp=0xc0001b5f38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0001b5fe0 sp=0xc0001b5fc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0001b5fe8 sp=0xc0001b5fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 497 gp=0xc000185180 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0xc00028c0d8?, 0x70?, 0xa7?, 0x561606bace33?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0001fa738 sp=0xc0001fa718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0001fa7c8 sp=0xc0001fa738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0001fa7e0 sp=0xc0001fa7c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0001fa7e8 sp=0xc0001fa7e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 533 gp=0xc000185340 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0xc00028c0d8?, 0x70?, 0xaf?, 0x561606bace33?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0001faf38 sp=0xc0001faf18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0001fafc8 sp=0xc0001faf38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0001fafe0 sp=0xc0001fafc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0001fafe8 sp=0xc0001fafe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 534 gp=0xc000398540 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0xc00028c0d8?, 0x70?, 0xcf?, 0x561606bace33?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0003acf38 sp=0xc0003acf18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0003acfc8 sp=0xc0003acf38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0003acfe0 sp=0xc0003acfc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0003acfe8 sp=0xc0003acfe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 492 gp=0xc000185500 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0xc00028c0d8?, 0x70?, 0xb7?, 0x561606bace33?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0001fb738 sp=0xc0001fb718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0001fb7c8 sp=0xc0001fb738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0001fb7e0 sp=0xc0001fb7c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0001fb7e8 sp=0xc0001fb7e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 530 gp=0xc000398700 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0xc00028c0d8?, 0x70?, 0xd7?, 0x561606bace33?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0003ad738 sp=0xc0003ad718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0003ad7c8 sp=0xc0003ad738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0003ad7e0 sp=0xc0003ad7c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0003ad7e8 sp=0xc0003ad7e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 495 gp=0xc0001856c0 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0xc00028c0d8?, 0x70?, 0xbf?, 0x561606bace33?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0001fbf38 sp=0xc0001fbf18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0001fbfc8 sp=0xc0001fbf38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0001fbfe0 sp=0xc0001fbfc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0001fbfe8 sp=0xc0001fbfe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 532 gp=0xc000185880 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0xc00028c0d8?, 0x70?, 0xc7?, 0x561606bace33?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0001fc738 sp=0xc0001fc718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0001fc7c8 sp=0xc0001fc738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0001fc7e0 sp=0xc0001fc7c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0001fc7e8 sp=0xc0001fc7e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 496 gp=0xc0003988c0 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0xc00028c0d8?, 0x70?, 0xdf?, 0x561606bace33?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0003adf38 sp=0xc0003adf18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0003adfc8 sp=0xc0003adf38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0003adfe0 sp=0xc0003adfc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0003adfe8 sp=0xc0003adfe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 494 gp=0xc000398a80 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0xc00028c0d8?, 0x70?, 0xe7?, 0x561606bace33?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0003ae738 sp=0xc0003ae718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0003ae7c8 sp=0xc0003ae738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0003ae7e0 sp=0xc0003ae7c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0003ae7e8 sp=0xc0003ae7e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 493 gp=0xc000398c40 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0xc00028c0d8?, 0x70?, 0xef?, 0x561606bace33?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0003aef38 sp=0xc0003aef18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0003aefc8 sp=0xc0003aef38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0003aefe0 sp=0xc0003aefc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0003aefe8 sp=0xc0003aefe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 490 gp=0xc000398fc0 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0xc00028c0d8?, 0x70?, 0xff?, 0x561606bace33?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0003aff38 sp=0xc0003aff18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0003affc8 sp=0xc0003aff38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0003affe0 sp=0xc0003affc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0003affe8 sp=0xc0003affe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 535 gp=0xc000185a40 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0001fcf38 sp=0xc0001fcf18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0001fcfc8 sp=0xc0001fcf38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0001fcfe0 sp=0xc0001fcfc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0001fcfe8 sp=0xc0001fcfe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 536 gp=0xc000185c00 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0001fd738 sp=0xc0001fd718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0001fd7c8 sp=0xc0001fd738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0001fd7e0 sp=0xc0001fd7c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0001fd7e8 sp=0xc0001fd7e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 537 gp=0xc000185dc0 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0001fdf38 sp=0xc0001fdf18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0001fdfc8 sp=0xc0001fdf38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0001fdfe0 sp=0xc0001fdfc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0001fdfe8 sp=0xc0001fdfe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 538 gp=0xc0004e6000 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004ec738 sp=0xc0004ec718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004ec7c8 sp=0xc0004ec738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004ec7e0 sp=0xc0004ec7c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004ec7e8 sp=0xc0004ec7e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 539 gp=0xc0004e61c0 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004ecf38 sp=0xc0004ecf18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004ecfc8 sp=0xc0004ecf38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004ecfe0 sp=0xc0004ecfc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004ecfe8 sp=0xc0004ecfe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 540 gp=0xc0004e6380 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004ed738 sp=0xc0004ed718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004ed7c8 sp=0xc0004ed738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004ed7e0 sp=0xc0004ed7c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004ed7e8 sp=0xc0004ed7e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 541 gp=0xc0004e6540 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004edf38 sp=0xc0004edf18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004edfc8 sp=0xc0004edf38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004edfe0 sp=0xc0004edfc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004edfe8 sp=0xc0004edfe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 542 gp=0xc0004e6700 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004ee738 sp=0xc0004ee718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004ee7c8 sp=0xc0004ee738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004ee7e0 sp=0xc0004ee7c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004ee7e8 sp=0xc0004ee7e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 543 gp=0xc0004e68c0 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004eef38 sp=0xc0004eef18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004eefc8 sp=0xc0004eef38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004eefe0 sp=0xc0004eefc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004eefe8 sp=0xc0004eefe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 544 gp=0xc0004e6a80 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004ef738 sp=0xc0004ef718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004ef7c8 sp=0xc0004ef738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004ef7e0 sp=0xc0004ef7c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004ef7e8 sp=0xc0004ef7e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 545 gp=0xc0004e6c40 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004eff38 sp=0xc0004eff18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004effc8 sp=0xc0004eff38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004effe0 sp=0xc0004effc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004effe8 sp=0xc0004effe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 546 gp=0xc0004e6e00 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004e8738 sp=0xc0004e8718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004e87c8 sp=0xc0004e8738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004e87e0 sp=0xc0004e87c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004e87e8 sp=0xc0004e87e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 547 gp=0xc0004e6fc0 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004e8f38 sp=0xc0004e8f18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004e8fc8 sp=0xc0004e8f38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004e8fe0 sp=0xc0004e8fc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004e8fe8 sp=0xc0004e8fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 548 gp=0xc0004e7180 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004e9738 sp=0xc0004e9718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004e97c8 sp=0xc0004e9738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004e97e0 sp=0xc0004e97c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004e97e8 sp=0xc0004e97e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 549 gp=0xc0004e7340 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004e9f38 sp=0xc0004e9f18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004e9fc8 sp=0xc0004e9f38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004e9fe0 sp=0xc0004e9fc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004e9fe8 sp=0xc0004e9fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 550 gp=0xc0004e7500 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004ea738 sp=0xc0004ea718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004ea7c8 sp=0xc0004ea738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004ea7e0 sp=0xc0004ea7c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004ea7e8 sp=0xc0004ea7e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 551 gp=0xc0004e76c0 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004eaf38 sp=0xc0004eaf18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004eafc8 sp=0xc0004eaf38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004eafe0 sp=0xc0004eafc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004eafe8 sp=0xc0004eafe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 552 gp=0xc0004e7880 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004eb738 sp=0xc0004eb718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004eb7c8 sp=0xc0004eb738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004eb7e0 sp=0xc0004eb7c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004eb7e8 sp=0xc0004eb7e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 553 gp=0xc0004e7a40 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004ebf38 sp=0xc0004ebf18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004ebfc8 sp=0xc0004ebf38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004ebfe0 sp=0xc0004ebfc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004ebfe8 sp=0xc0004ebfe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 554 gp=0xc0004e7c00 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004f4738 sp=0xc0004f4718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004f47c8 sp=0xc0004f4738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004f47e0 sp=0xc0004f47c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f47e8 sp=0xc0004f47e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 555 gp=0xc0004e7dc0 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004f4f38 sp=0xc0004f4f18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004f4fc8 sp=0xc0004f4f38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004f4fe0 sp=0xc0004f4fc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f4fe8 sp=0xc0004f4fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 556 gp=0xc0004f8000 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004f5738 sp=0xc0004f5718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004f57c8 sp=0xc0004f5738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004f57e0 sp=0xc0004f57c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f57e8 sp=0xc0004f57e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 557 gp=0xc0004f81c0 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004f5f38 sp=0xc0004f5f18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004f5fc8 sp=0xc0004f5f38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004f5fe0 sp=0xc0004f5fc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f5fe8 sp=0xc0004f5fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 558 gp=0xc0004f8380 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004f6738 sp=0xc0004f6718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004f67c8 sp=0xc0004f6738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004f67e0 sp=0xc0004f67c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f67e8 sp=0xc0004f67e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 559 gp=0xc0004f8540 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004f6f38 sp=0xc0004f6f18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004f6fc8 sp=0xc0004f6f38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004f6fe0 sp=0xc0004f6fc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f6fe8 sp=0xc0004f6fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 560 gp=0xc0004f8700 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004f7738 sp=0xc0004f7718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004f77c8 sp=0xc0004f7738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004f77e0 sp=0xc0004f77c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f77e8 sp=0xc0004f77e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 561 gp=0xc0004f88c0 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004f7f38 sp=0xc0004f7f18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004f7fc8 sp=0xc0004f7f38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004f7fe0 sp=0xc0004f7fc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f7fe8 sp=0xc0004f7fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 562 gp=0xc0004f8a80 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004f0738 sp=0xc0004f0718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004f07c8 sp=0xc0004f0738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004f07e0 sp=0xc0004f07c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f07e8 sp=0xc0004f07e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 563 gp=0xc0004f8c40 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004f0f38 sp=0xc0004f0f18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004f0fc8 sp=0xc0004f0f38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004f0fe0 sp=0xc0004f0fc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f0fe8 sp=0xc0004f0fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 564 gp=0xc0004f8e00 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004f1738 sp=0xc0004f1718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004f17c8 sp=0xc0004f1738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004f17e0 sp=0xc0004f17c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f17e8 sp=0xc0004f17e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 565 gp=0xc0004f8fc0 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004f1f38 sp=0xc0004f1f18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004f1fc8 sp=0xc0004f1f38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004f1fe0 sp=0xc0004f1fc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f1fe8 sp=0xc0004f1fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 566 gp=0xc0004f9180 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004f2738 sp=0xc0004f2718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004f27c8 sp=0xc0004f2738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004f27e0 sp=0xc0004f27c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f27e8 sp=0xc0004f27e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 567 gp=0xc0004f9340 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004f2f38 sp=0xc0004f2f18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004f2fc8 sp=0xc0004f2f38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004f2fe0 sp=0xc0004f2fc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f2fe8 sp=0xc0004f2fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 568 gp=0xc0004f9500 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004f3738 sp=0xc0004f3718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004f37c8 sp=0xc0004f3738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004f37e0 sp=0xc0004f37c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f37e8 sp=0xc0004f37e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 569 gp=0xc0004f96c0 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0004f3f38 sp=0xc0004f3f18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0004f3fc8 sp=0xc0004f3f38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0004f3fe0 sp=0xc0004f3fc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f3fe8 sp=0xc0004f3fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 570 gp=0xc0004f9880 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000584738 sp=0xc000584718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0005847c8 sp=0xc000584738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0005847e0 sp=0xc0005847c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0005847e8 sp=0xc0005847e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 571 gp=0xc0004f9a40 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000584f38 sp=0xc000584f18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc000584fc8 sp=0xc000584f38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc000584fe0 sp=0xc000584fc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc000584fe8 sp=0xc000584fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 572 gp=0xc0004f9c00 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000585738 sp=0xc000585718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0005857c8 sp=0xc000585738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0005857e0 sp=0xc0005857c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0005857e8 sp=0xc0005857e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 573 gp=0xc0004f9dc0 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000585f38 sp=0xc000585f18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc000585fc8 sp=0xc000585f38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc000585fe0 sp=0xc000585fc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc000585fe8 sp=0xc000585fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 574 gp=0xc0004fa000 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000586738 sp=0xc000586718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0005867c8 sp=0xc000586738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0005867e0 sp=0xc0005867c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0005867e8 sp=0xc0005867e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 575 gp=0xc0004fa1c0 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000586f38 sp=0xc000586f18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc000586fc8 sp=0xc000586f38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc000586fe0 sp=0xc000586fc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc000586fe8 sp=0xc000586fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 576 gp=0xc0004fa380 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000587738 sp=0xc000587718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0005877c8 sp=0xc000587738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0005877e0 sp=0xc0005877c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0005877e8 sp=0xc0005877e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 577 gp=0xc0004fa540 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000587f38 sp=0xc000587f18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc000587fc8 sp=0xc000587f38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc000587fe0 sp=0xc000587fc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc000587fe8 sp=0xc000587fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 578 gp=0xc0004fa700 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000580738 sp=0xc000580718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0005807c8 sp=0xc000580738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0005807e0 sp=0xc0005807c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0005807e8 sp=0xc0005807e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 579 gp=0xc0004fa8c0 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000580f38 sp=0xc000580f18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc000580fc8 sp=0xc000580f38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc000580fe0 sp=0xc000580fc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc000580fe8 sp=0xc000580fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 580 gp=0xc0004faa80 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000581738 sp=0xc000581718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0005817c8 sp=0xc000581738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0005817e0 sp=0xc0005817c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0005817e8 sp=0xc0005817e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 581 gp=0xc0004fac40 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000581f38 sp=0xc000581f18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc000581fc8 sp=0xc000581f38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc000581fe0 sp=0xc000581fc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc000581fe8 sp=0xc000581fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 582 gp=0xc0004fae00 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000582738 sp=0xc000582718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0005827c8 sp=0xc000582738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0005827e0 sp=0xc0005827c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0005827e8 sp=0xc0005827e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 583 gp=0xc0004fafc0 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000582f38 sp=0xc000582f18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc000582fc8 sp=0xc000582f38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc000582fe0 sp=0xc000582fc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc000582fe8 sp=0xc000582fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 584 gp=0xc0004fb180 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000583738 sp=0xc000583718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0005837c8 sp=0xc000583738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0005837e0 sp=0xc0005837c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0005837e8 sp=0xc0005837e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 585 gp=0xc0004fb340 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000583f38 sp=0xc000583f18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc000583fc8 sp=0xc000583f38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc000583fe0 sp=0xc000583fc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc000583fe8 sp=0xc000583fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 586 gp=0xc0004fb500 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc00058c738 sp=0xc00058c718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc00058c7c8 sp=0xc00058c738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc00058c7e0 sp=0xc00058c7c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc00058c7e8 sp=0xc00058c7e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 587 gp=0xc0004fb6c0 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc00058cf38 sp=0xc00058cf18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc00058cfc8 sp=0xc00058cf38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc00058cfe0 sp=0xc00058cfc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc00058cfe8 sp=0xc00058cfe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 588 gp=0xc0004fb880 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc00058d738 sp=0xc00058d718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc00058d7c8 sp=0xc00058d738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc00058d7e0 sp=0xc00058d7c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc00058d7e8 sp=0xc00058d7e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 589 gp=0xc0004fba40 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc00058df38 sp=0xc00058df18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc00058dfc8 sp=0xc00058df38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc00058dfe0 sp=0xc00058dfc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc00058dfe8 sp=0xc00058dfe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 590 gp=0xc0004fbc00 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc00058e738 sp=0xc00058e718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc00058e7c8 sp=0xc00058e738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc00058e7e0 sp=0xc00058e7c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc00058e7e8 sp=0xc00058e7e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 591 gp=0xc0004fbdc0 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc00058ef38 sp=0xc00058ef18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc00058efc8 sp=0xc00058ef38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc00058efe0 sp=0xc00058efc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc00058efe8 sp=0xc00058efe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 592 gp=0xc0004fc000 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc00058f738 sp=0xc00058f718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc00058f7c8 sp=0xc00058f738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc00058f7e0 sp=0xc00058f7c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc00058f7e8 sp=0xc00058f7e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 593 gp=0xc0004fc1c0 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc00058ff38 sp=0xc00058ff18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc00058ffc8 sp=0xc00058ff38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc00058ffe0 sp=0xc00058ffc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc00058ffe8 sp=0xc00058ffe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 594 gp=0xc0004fc380 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000588738 sp=0xc000588718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0005887c8 sp=0xc000588738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0005887e0 sp=0xc0005887c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0005887e8 sp=0xc0005887e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 595 gp=0xc0004fc540 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000588f38 sp=0xc000588f18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc000588fc8 sp=0xc000588f38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc000588fe0 sp=0xc000588fc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc000588fe8 sp=0xc000588fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 596 gp=0xc0004fc700 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000589738 sp=0xc000589718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0005897c8 sp=0xc000589738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0005897e0 sp=0xc0005897c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0005897e8 sp=0xc0005897e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 597 gp=0xc0004fc8c0 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000589f38 sp=0xc000589f18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc000589fc8 sp=0xc000589f38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc000589fe0 sp=0xc000589fc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc000589fe8 sp=0xc000589fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 598 gp=0xc0004fca80 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc00058a738 sp=0xc00058a718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc00058a7c8 sp=0xc00058a738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc00058a7e0 sp=0xc00058a7c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc00058a7e8 sp=0xc00058a7e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 599 gp=0xc0004fcc40 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc00058af38 sp=0xc00058af18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc00058afc8 sp=0xc00058af38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc00058afe0 sp=0xc00058afc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc00058afe8 sp=0xc00058afe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 600 gp=0xc0004fce00 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc00058b738 sp=0xc00058b718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc00058b7c8 sp=0xc00058b738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc00058b7e0 sp=0xc00058b7c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc00058b7e8 sp=0xc00058b7e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 601 gp=0xc0004fcfc0 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc00058bf38 sp=0xc00058bf18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc00058bfc8 sp=0xc00058bf38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc00058bfe0 sp=0xc00058bfc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc00058bfe8 sp=0xc00058bfe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 602 gp=0xc0004fd180 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000594738 sp=0xc000594718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0005947c8 sp=0xc000594738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0005947e0 sp=0xc0005947c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0005947e8 sp=0xc0005947e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 603 gp=0xc0004fd340 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000594f38 sp=0xc000594f18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc000594fc8 sp=0xc000594f38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc000594fe0 sp=0xc000594fc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc000594fe8 sp=0xc000594fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 604 gp=0xc0004fd500 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000595738 sp=0xc000595718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0005957c8 sp=0xc000595738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0005957e0 sp=0xc0005957c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0005957e8 sp=0xc0005957e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 605 gp=0xc0004fd6c0 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000595f38 sp=0xc000595f18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc000595fc8 sp=0xc000595f38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc000595fe0 sp=0xc000595fc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc000595fe8 sp=0xc000595fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 606 gp=0xc0004fd880 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000596738 sp=0xc000596718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0005967c8 sp=0xc000596738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0005967e0 sp=0xc0005967c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0005967e8 sp=0xc0005967e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 607 gp=0xc0004fda40 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000596f38 sp=0xc000596f18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc000596fc8 sp=0xc000596f38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc000596fe0 sp=0xc000596fc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc000596fe8 sp=0xc000596fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 608 gp=0xc0004fdc00 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000597738 sp=0xc000597718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0005977c8 sp=0xc000597738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0005977e0 sp=0xc0005977c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0005977e8 sp=0xc0005977e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 609 gp=0xc0004fddc0 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000597f38 sp=0xc000597f18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc000597fc8 sp=0xc000597f38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc000597fe0 sp=0xc000597fc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc000597fe8 sp=0xc000597fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 610 gp=0xc0004fe000 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000590738 sp=0xc000590718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0005907c8 sp=0xc000590738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0005907e0 sp=0xc0005907c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0005907e8 sp=0xc0005907e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 611 gp=0xc0004fe1c0 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000590f38 sp=0xc000590f18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc000590fc8 sp=0xc000590f38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc000590fe0 sp=0xc000590fc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc000590fe8 sp=0xc000590fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 612 gp=0xc0004fe380 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000591738 sp=0xc000591718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0005917c8 sp=0xc000591738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0005917e0 sp=0xc0005917c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0005917e8 sp=0xc0005917e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 613 gp=0xc0004fe540 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000591f38 sp=0xc000591f18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc000591fc8 sp=0xc000591f38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc000591fe0 sp=0xc000591fc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc000591fe8 sp=0xc000591fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 614 gp=0xc0004fe700 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000592738 sp=0xc000592718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0005927c8 sp=0xc000592738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0005927e0 sp=0xc0005927c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0005927e8 sp=0xc0005927e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 615 gp=0xc0004fe8c0 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000592f38 sp=0xc000592f18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc000592fc8 sp=0xc000592f38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc000592fe0 sp=0xc000592fc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc000592fe8 sp=0xc000592fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 616 gp=0xc0004fea80 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000593738 sp=0xc000593718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0005937c8 sp=0xc000593738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0005937e0 sp=0xc0005937c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0005937e8 sp=0xc0005937e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 617 gp=0xc0004fec40 m=nil [GC worker (idle), 246 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000593f38 sp=0xc000593f18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc000593fc8 sp=0xc000593f38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc000593fe0 sp=0xc000593fc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc000593fe8 sp=0xc000593fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 618 gp=0xc0004fee00 m=nil [GC worker (idle)]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x56160746a660?, 0x1?, 0x9a?, 0x99?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc00059c738 sp=0xc00059c718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc00059c7c8 sp=0xc00059c738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc00059c7e0 sp=0xc00059c7c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc00059c7e8 sp=0xc00059c7e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 619 gp=0xc0004fefc0 m=nil [GC worker (idle), 3 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0xc968e6a8f9be1?, 0x1?, 0x71?, 0x9a?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc00059cf38 sp=0xc00059cf18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc00059cfc8 sp=0xc00059cf38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc00059cfe0 sp=0xc00059cfc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc00059cfe8 sp=0xc00059cfe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 620 gp=0xc0004ff180 m=nil [GC worker (idle), 3 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0xc968e6a8fa303?, 0x1?, 0xc6?, 0xd3?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc00059d738 sp=0xc00059d718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc00059d7c8 sp=0xc00059d738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc00059d7e0 sp=0xc00059d7c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc00059d7e8 sp=0xc00059d7e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 621 gp=0xc0004ff340 m=nil [GC worker (idle), 19 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x56160746a660?, 0x1?, 0x2f?, 0x47?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc00059df38 sp=0xc00059df18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc00059dfc8 sp=0xc00059df38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc00059dfe0 sp=0xc00059dfc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc00059dfe8 sp=0xc00059dfe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 622 gp=0xc0004ff500 m=nil [GC worker (idle), 7 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0xc96369905d0bb?, 0x1?, 0x2b?, 0x49?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc00059e738 sp=0xc00059e718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc00059e7c8 sp=0xc00059e738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc00059e7e0 sp=0xc00059e7c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc00059e7e8 sp=0xc00059e7e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 623 gp=0xc0004ff6c0 m=nil [GC worker (idle)]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0xc968e6a8fb1a6?, 0x1?, 0x15?, 0xbf?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc00059ef38 sp=0xc00059ef18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc00059efc8 sp=0xc00059ef38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc00059efe0 sp=0xc00059efc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc00059efe8 sp=0xc00059efe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 624 gp=0xc0004ff880 m=nil [GC worker (idle)]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0xc968e6a8f97cc?, 0x1?, 0x7a?, 0xa5?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc00059f738 sp=0xc00059f718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc00059f7c8 sp=0xc00059f738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc00059f7e0 sp=0xc00059f7c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc00059f7e8 sp=0xc00059f7e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 625 gp=0xc0004ffa40 m=nil [GC worker (idle), 3 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0xc966e7a5c5362?, 0x1?, 0x49?, 0x66?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc00059ff38 sp=0xc00059ff18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc00059ffc8 sp=0xc00059ff38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc00059ffe0 sp=0xc00059ffc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc00059ffe8 sp=0xc00059ffe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 626 gp=0xc0004ffc00 m=nil [GC worker (idle)]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x56160746a660?, 0x1?, 0x62?, 0xbf?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000598738 sp=0xc000598718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0005987c8 sp=0xc000598738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0005987e0 sp=0xc0005987c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0005987e8 sp=0xc0005987e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 627 gp=0xc0004ffdc0 m=nil [GC worker (idle)]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x56160746a660?, 0x1?, 0x81?, 0xa5?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000598f38 sp=0xc000598f18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc000598fc8 sp=0xc000598f38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc000598fe0 sp=0xc000598fc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc000598fe8 sp=0xc000598fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 628 gp=0xc0005a0000 m=nil [GC worker (idle), 3 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x56160746a660?, 0x1?, 0xbd?, 0x79?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000599738 sp=0xc000599718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc0005997c8 sp=0xc000599738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc0005997e0 sp=0xc0005997c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0005997e8 sp=0xc0005997e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 629 gp=0xc0005a01c0 m=nil [GC worker (idle), 5 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x56160746a660?, 0x1?, 0xfe?, 0xb2?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc000599f38 sp=0xc000599f18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc000599fc8 sp=0xc000599f38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc000599fe0 sp=0xc000599fc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc000599fe8 sp=0xc000599fe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 630 gp=0xc0005a0380 m=nil [GC worker (idle)]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0xc968e6a8f93cb?, 0x1?, 0xeb?, 0x26?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc00059a738 sp=0xc00059a718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc00059a7c8 sp=0xc00059a738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc00059a7e0 sp=0xc00059a7c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc00059a7e8 sp=0xc00059a7e0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 631 gp=0xc0005a0540 m=nil [GC worker (idle), 3 minutes]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x56160746a660?, 0x1?, 0x36?, 0x1a?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc00059af38 sp=0xc00059af18 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc00059afc8 sp=0xc00059af38 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc00059afe0 sp=0xc00059afc8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc00059afe8 sp=0xc00059afe0 pc=0x561606b99f61
Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 632 gp=0xc0005a0700 m=nil [GC worker (idle)]:
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0xc968e6a8f4b59?, 0x1?, 0x71?, 0xaa?, 0x0?)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc00059b738 sp=0xc00059b718 pc=0x561606b9232e
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc00059b7c8 sp=0xc00059b738 pc=0x561606b3fc09
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:08 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc00059b7e0 sp=0xc00059b7c8 pc=0x561606b3fae5
Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:09 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc00059b7e8 sp=0xc00059b7e0 pc=0x561606b99f61
Jan 15 06:53:09 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:09 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:09 inspur11 ollama[2013775]: goroutine 633 gp=0xc0005a08c0 m=nil [GC worker (idle), 107 minutes]:
Jan 15 06:53:09 inspur11 ollama[2013775]: runtime.gopark(0x56160746a660?, 0x1?, 0x9e?, 0xb4?, 0x0?)
Jan 15 06:53:09 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc00059bf38 sp=0xc00059bf18 pc=0x561606b9232e
Jan 15 06:53:09 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110)
Jan 15 06:53:09 inspur11 ollama[2013775]:         runtime/mgc.go:1412 +0xe9 fp=0xc00059bfc8 sp=0xc00059bf38 pc=0x561606b3fc09
Jan 15 06:53:09 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1()
Jan 15 06:53:09 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x25 fp=0xc00059bfe0 sp=0xc00059bfc8 pc=0x561606b3fae5
Jan 15 06:53:09 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:09 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc00059bfe8 sp=0xc00059bfe0 pc=0x561606b99f61
Jan 15 06:53:09 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18
Jan 15 06:53:09 inspur11 ollama[2013775]:         runtime/mgc.go:1328 +0x105
Jan 15 06:53:09 inspur11 ollama[2013775]: goroutine 659 gp=0xc000421500 m=nil [select]:
Jan 15 06:53:09 inspur11 ollama[2013775]: runtime.gopark(0xc0005b1a68?, 0x2?, 0x4d?, 0x27?, 0xc0005b1834?)
Jan 15 06:53:09 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0005b16a0 sp=0xc0005b1680 pc=0x561606b9232e
Jan 15 06:53:09 inspur11 ollama[2013775]: runtime.selectgo(0xc0005b1a68, 0xc0005b1830, 0xc0001c8080?, 0x0, 0x1?, 0x1)
Jan 15 06:53:09 inspur11 ollama[2013775]:         runtime/select.go:335 +0x7a5 fp=0xc0005b17c8 sp=0xc0005b16a0 pc=0x561606b70585
Jan 15 06:53:09 inspur11 ollama[2013775]: github.com/ollama/ollama/llama/runner.(*Server).completion(0xc0002181b0, {0x5616071d8cb8, 0xc0002a00e0}, 0xc000002140)
Jan 15 06:53:09 inspur11 ollama[2013775]:         github.com/ollama/ollama/llama/runner/runner.go:687 +0xa86 fp=0xc0005b1ac0 sp=0xc0005b17c8 pc=0x561606dd4246
Jan 15 06:53:09 inspur11 ollama[2013775]: github.com/ollama/ollama/llama/runner.(*Server).completion-fm({0x5616071d8cb8?, 0xc0002a00e0?}, 0x561606da5847?)
Jan 15 06:53:09 inspur11 ollama[2013775]:         <autogenerated>:1 +0x36 fp=0xc0005b1af0 sp=0xc0005b1ac0 pc=0x561606dd76f6
Jan 15 06:53:09 inspur11 ollama[2013775]: net/http.HandlerFunc.ServeHTTP(0xc0002300e0?, {0x5616071d8cb8?, 0xc0002a00e0?}, 0x0?)
Jan 15 06:53:09 inspur11 ollama[2013775]:         net/http/server.go:2220 +0x29 fp=0xc0005b1b18 sp=0xc0005b1af0 pc=0x561606d9e409
Jan 15 06:53:09 inspur11 ollama[2013775]: net/http.(*ServeMux).ServeHTTP(0x561606b33fa5?, {0x5616071d8cb8, 0xc0002a00e0}, 0xc000002140)
Jan 15 06:53:09 inspur11 ollama[2013775]:         net/http/server.go:2747 +0x1ca fp=0xc0005b1b68 sp=0xc0005b1b18 pc=0x561606da02aa
Jan 15 06:53:09 inspur11 ollama[2013775]: net/http.serverHandler.ServeHTTP({0x5616071d7d70?}, {0x5616071d8cb8?, 0xc0002a00e0?}, 0x6?)
Jan 15 06:53:09 inspur11 ollama[2013775]:         net/http/server.go:3210 +0x8e fp=0xc0005b1b98 sp=0xc0005b1b68 pc=0x561606da71ae
Jan 15 06:53:09 inspur11 ollama[2013775]: net/http.(*conn).serve(0xc000218240, {0x5616071d90e8, 0xc00020af60})
Jan 15 06:53:09 inspur11 ollama[2013775]:         net/http/server.go:2092 +0x5d0 fp=0xc0005b1fb8 sp=0xc0005b1b98 pc=0x561606d9d030
Jan 15 06:53:09 inspur11 ollama[2013775]: net/http.(*Server).Serve.gowrap3()
Jan 15 06:53:09 inspur11 ollama[2013775]:         net/http/server.go:3360 +0x28 fp=0xc0005b1fe0 sp=0xc0005b1fb8 pc=0x561606da1948
Jan 15 06:53:09 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:09 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0005b1fe8 sp=0xc0005b1fe0 pc=0x561606b99f61
Jan 15 06:53:09 inspur11 ollama[2013775]: created by net/http.(*Server).Serve in goroutine 1
Jan 15 06:53:09 inspur11 ollama[2013775]:         net/http/server.go:3360 +0x485
Jan 15 06:53:09 inspur11 ollama[2013775]: goroutine 661 gp=0xc000421880 m=nil [IO wait, 3 minutes]:
Jan 15 06:53:09 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0xb?)
Jan 15 06:53:09 inspur11 ollama[2013775]:         runtime/proc.go:424 +0xce fp=0xc0003a8da8 sp=0xc0003a8d88 pc=0x561606b9232e
Jan 15 06:53:09 inspur11 ollama[2013775]: runtime.netpollblock(0x561606bcdb58?, 0x6b2ab86?, 0x16?)
Jan 15 06:53:09 inspur11 ollama[2013775]:         runtime/netpoll.go:575 +0xf7 fp=0xc0003a8de0 sp=0xc0003a8da8 pc=0x561606b57097
Jan 15 06:53:09 inspur11 ollama[2013775]: internal/poll.runtime_pollWait(0x7f9a4d0e65a0, 0x72)
Jan 15 06:53:09 inspur11 ollama[2013775]:         runtime/netpoll.go:351 +0x85 fp=0xc0003a8e00 sp=0xc0003a8de0 pc=0x561606b91625
Jan 15 06:53:09 inspur11 ollama[2013775]: internal/poll.(*pollDesc).wait(0xc00024e080?, 0xc00039e101?, 0x0)
Jan 15 06:53:09 inspur11 ollama[2013775]:         internal/poll/fd_poll_runtime.go:84 +0x27 fp=0xc0003a8e28 sp=0xc0003a8e00 pc=0x561606be7467
Jan 15 06:53:09 inspur11 ollama[2013775]: internal/poll.(*pollDesc).waitRead(...)
Jan 15 06:53:09 inspur11 ollama[2013775]:         internal/poll/fd_poll_runtime.go:89
Jan 15 06:53:09 inspur11 ollama[2013775]: internal/poll.(*FD).Read(0xc00024e080, {0xc00039e101, 0x1, 0x1})
Jan 15 06:53:09 inspur11 ollama[2013775]:         internal/poll/fd_unix.go:165 +0x27a fp=0xc0003a8ec0 sp=0xc0003a8e28 pc=0x561606be7fba
Jan 15 06:53:09 inspur11 ollama[2013775]: net.(*netFD).Read(0xc00024e080, {0xc00039e101?, 0x0?, 0x0?})
Jan 15 06:53:09 inspur11 ollama[2013775]:         net/fd_posix.go:55 +0x25 fp=0xc0003a8f08 sp=0xc0003a8ec0 pc=0x561606c601c5
Jan 15 06:53:09 inspur11 ollama[2013775]: net.(*conn).Read(0xc000288010, {0xc00039e101?, 0x0?, 0x0?})
Jan 15 06:53:09 inspur11 ollama[2013775]:         net/net.go:189 +0x45 fp=0xc0003a8f50 sp=0xc0003a8f08 pc=0x561606c69bc5
Jan 15 06:53:09 inspur11 ollama[2013775]: net.(*TCPConn).Read(0x0?, {0xc00039e101?, 0x0?, 0x0?})
Jan 15 06:53:09 inspur11 ollama[2013775]:         <autogenerated>:1 +0x25 fp=0xc0003a8f80 sp=0xc0003a8f50 pc=0x561606c76c65
Jan 15 06:53:09 inspur11 ollama[2013775]: net/http.(*connReader).backgroundRead(0xc00039e0f0)
Jan 15 06:53:09 inspur11 ollama[2013775]:         net/http/server.go:690 +0x37 fp=0xc0003a8fc8 sp=0xc0003a8f80 pc=0x561606d979b7
Jan 15 06:53:09 inspur11 ollama[2013775]: net/http.(*connReader).startBackgroundRead.gowrap2()
Jan 15 06:53:09 inspur11 ollama[2013775]:         net/http/server.go:686 +0x25 fp=0xc0003a8fe0 sp=0xc0003a8fc8 pc=0x561606d978e5
Jan 15 06:53:09 inspur11 ollama[2013775]: runtime.goexit({})
Jan 15 06:53:09 inspur11 ollama[2013775]:         runtime/asm_amd64.s:1700 +0x1 fp=0xc0003a8fe8 sp=0xc0003a8fe0 pc=0x561606b99f61
Jan 15 06:53:09 inspur11 ollama[2013775]: created by net/http.(*connReader).startBackgroundRead in goroutine 659
Jan 15 06:53:09 inspur11 ollama[2013775]:         net/http/server.go:686 +0xb6
Jan 15 06:53:09 inspur11 ollama[2013775]: rax    0x0
Jan 15 06:53:09 inspur11 ollama[2013775]: rbx    0x7f9a943ae080
Jan 15 06:53:09 inspur11 ollama[2013775]: rcx    0x7f9a944459fc
Jan 15 06:53:09 inspur11 ollama[2013775]: rdx    0x6
Jan 15 06:53:09 inspur11 ollama[2013775]: rdi    0x26b7b6
Jan 15 06:53:09 inspur11 ollama[2013775]: rsi    0x26b7b6
Jan 15 06:53:09 inspur11 ollama[2013775]: rbp    0x26b7b6
Jan 15 06:53:09 inspur11 ollama[2013775]: rsp    0x7ffddc25f7d0
Jan 15 06:53:09 inspur11 ollama[2013775]: r8     0x7ffddc25f8a0
Jan 15 06:53:09 inspur11 ollama[2013775]: r9     0x5
Jan 15 06:53:09 inspur11 ollama[2013775]: r10    0x8
Jan 15 06:53:09 inspur11 ollama[2013775]: r11    0x246
Jan 15 06:53:09 inspur11 ollama[2013775]: r12    0x6
Jan 15 06:53:09 inspur11 ollama[2013775]: r13    0x16
Jan 15 06:53:09 inspur11 ollama[2013775]: r14    0x1
Jan 15 06:53:09 inspur11 ollama[2013775]: r15    0x7f9a300063f0
Jan 15 06:53:09 inspur11 ollama[2013775]: rip    0x7f9a944459fc
Jan 15 06:53:09 inspur11 ollama[2013775]: rflags 0x246
Jan 15 06:53:09 inspur11 ollama[2013775]: cs     0x33
Jan 15 06:53:09 inspur11 ollama[2013775]: fs     0x0
Jan 15 06:53:09 inspur11 ollama[2013775]: gs     0x0
<!-- gh-comment-id:2591809936 --> @zengqingfu1442 commented on GitHub (Jan 15, 2025): > Then perhaps the runner crashed. The server log will show you more. Here is the ollama server logs when the runner crashed: ``` Jan 15 06:50:31 inspur11 ollama[2013775]: time=2025-01-15T06:50:31.323Z level=WARN source=runner.go:129 msg="truncating input prompt" limit=2048 prompt=6157 keep=5 new=2048 Jan 15 06:53:02 inspur11 ollama[2013775]: llama.cpp:11968: The current context does not support K-shift Jan 15 06:53:08 inspur11 ollama[2013775]: /usr/local/lib/ollama/runners/cpu_avx2/ollama_llama_server(+0x3df3c8)[0x561606e3a3c8] Jan 15 06:53:08 inspur11 ollama[2013775]: /usr/local/lib/ollama/runners/cpu_avx2/ollama_llama_server(+0x3dfa45)[0x561606e3aa45] Jan 15 06:53:08 inspur11 ollama[2013775]: /usr/local/lib/ollama/runners/cpu_avx2/ollama_llama_server(+0x4eea1f)[0x561606f49a1f] Jan 15 06:53:08 inspur11 ollama[2013775]: /usr/local/lib/ollama/runners/cpu_avx2/ollama_llama_server(+0x4ef108)[0x561606f4a108] Jan 15 06:53:08 inspur11 ollama[2013775]: /usr/local/lib/ollama/runners/cpu_avx2/ollama_llama_server(+0x4f0317)[0x561606f4b317] Jan 15 06:53:08 inspur11 ollama[2013775]: /usr/local/lib/ollama/runners/cpu_avx2/ollama_llama_server(+0x37d036)[0x561606dd8036] Jan 15 06:53:08 inspur11 ollama[2013775]: /usr/local/lib/ollama/runners/cpu_avx2/ollama_llama_server(+0x13ebe1)[0x561606b99be1] Jan 15 06:53:08 inspur11 ollama[2013775]: SIGABRT: abort Jan 15 06:53:08 inspur11 ollama[2013775]: PC=0x7f9a944459fc m=0 sigcode=18446744073709551610 Jan 15 06:53:08 inspur11 ollama[2013775]: signal arrived during cgo execution Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 8 gp=0xc0002521c0 m=0 mp=0x5616073c5140 [syscall]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.cgocall(0x561606dd7ff0, 0xc00047cba0) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/cgocall.go:167 +0x4b fp=0xc00047cb78 sp=0xc00047cb40 pc=0x561606b8c52b Jan 15 06:53:08 inspur11 ollama[2013775]: github.com/ollama/ollama/llama._Cfunc_llama_decode(0x7f9a300063f0, {0x1, 0x7f9a302b0d30, 0x0, 0x0, 0x7f9a302b2d40, 0x7f9a301d2910, 0x7f9a30633fd0, 0x7f9a302346a0}) Jan 15 06:53:08 inspur11 ollama[2013775]: _cgo_gotypes.go:547 +0x4f fp=0xc00047cba0 sp=0xc00047cb78 pc=0x561606c365af Jan 15 06:53:08 inspur11 ollama[2013775]: github.com/ollama/ollama/llama.(*Context).Decode.func1(0x561606dd372b?, 0x7f9a300063f0?) Jan 15 06:53:08 inspur11 ollama[2013775]: github.com/ollama/ollama/llama/llama.go:207 +0xf5 fp=0xc00047cc90 sp=0xc00047cba0 pc=0x561606c38dd5 Jan 15 06:53:08 inspur11 ollama[2013775]: github.com/ollama/ollama/llama.(*Context).Decode(0x5616074693c0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: github.com/ollama/ollama/llama/llama.go:207 +0x13 fp=0xc00047ccd8 sp=0xc00047cc90 pc=0x561606c38c53 Jan 15 06:53:08 inspur11 ollama[2013775]: github.com/ollama/ollama/llama/runner.(*Server).processBatch(0xc0002181b0, 0xc000280a20, 0xc00047cf20) Jan 15 06:53:08 inspur11 ollama[2013775]: github.com/ollama/ollama/llama/runner/runner.go:434 +0x23f fp=0xc00047cee0 sp=0xc00047ccd8 pc=0x561606dd251f Jan 15 06:53:08 inspur11 ollama[2013775]: github.com/ollama/ollama/llama/runner.(*Server).run(0xc0002181b0, {0x5616071d9120, 0xc000250050}) Jan 15 06:53:08 inspur11 ollama[2013775]: github.com/ollama/ollama/llama/runner/runner.go:342 +0x1d5 fp=0xc00047cfb8 sp=0xc00047cee0 pc=0x561606dd1f55 Jan 15 06:53:08 inspur11 ollama[2013775]: github.com/ollama/ollama/llama/runner.Execute.gowrap2() Jan 15 06:53:08 inspur11 ollama[2013775]: github.com/ollama/ollama/llama/runner/runner.go:975 +0x28 fp=0xc00047cfe0 sp=0xc00047cfb8 pc=0x561606dd6e48 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc00047cfe8 sp=0xc00047cfe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by github.com/ollama/ollama/llama/runner.Execute in goroutine 1 Jan 15 06:53:08 inspur11 ollama[2013775]: github.com/ollama/ollama/llama/runner/runner.go:975 +0xde5 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 1 gp=0xc0000061c0 m=nil [IO wait, 3 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0005af7b0 sp=0xc0005af790 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.netpollblock(0xc0005af800?, 0x6b2ab86?, 0x16?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/netpoll.go:575 +0xf7 fp=0xc0005af7e8 sp=0xc0005af7b0 pc=0x561606b57097 Jan 15 06:53:08 inspur11 ollama[2013775]: internal/poll.runtime_pollWait(0x7f9a4d0e67d0, 0x72) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/netpoll.go:351 +0x85 fp=0xc0005af808 sp=0xc0005af7e8 pc=0x561606b91625 Jan 15 06:53:08 inspur11 ollama[2013775]: internal/poll.(*pollDesc).wait(0xc00024e100?, 0x900000036?, 0x0) Jan 15 06:53:08 inspur11 ollama[2013775]: internal/poll/fd_poll_runtime.go:84 +0x27 fp=0xc0005af830 sp=0xc0005af808 pc=0x561606be7467 Jan 15 06:53:08 inspur11 ollama[2013775]: internal/poll.(*pollDesc).waitRead(...) Jan 15 06:53:08 inspur11 ollama[2013775]: internal/poll/fd_poll_runtime.go:89 Jan 15 06:53:08 inspur11 ollama[2013775]: internal/poll.(*FD).Accept(0xc00024e100) Jan 15 06:53:08 inspur11 ollama[2013775]: internal/poll/fd_unix.go:620 +0x295 fp=0xc0005af8d8 sp=0xc0005af830 pc=0x561606be89d5 Jan 15 06:53:08 inspur11 ollama[2013775]: net.(*netFD).accept(0xc00024e100) Jan 15 06:53:08 inspur11 ollama[2013775]: net/fd_unix.go:172 +0x29 fp=0xc0005af990 sp=0xc0005af8d8 pc=0x561606c612a9 Jan 15 06:53:08 inspur11 ollama[2013775]: net.(*TCPListener).accept(0xc000172700) Jan 15 06:53:08 inspur11 ollama[2013775]: net/tcpsock_posix.go:159 +0x1e fp=0xc0005af9e0 sp=0xc0005af990 pc=0x561606c718fe Jan 15 06:53:08 inspur11 ollama[2013775]: net.(*TCPListener).Accept(0xc000172700) Jan 15 06:53:08 inspur11 ollama[2013775]: net/tcpsock.go:372 +0x30 fp=0xc0005afa10 sp=0xc0005af9e0 pc=0x561606c70c30 Jan 15 06:53:08 inspur11 ollama[2013775]: net/http.(*onceCloseListener).Accept(0xc000218240?) Jan 15 06:53:08 inspur11 ollama[2013775]: <autogenerated>:1 +0x24 fp=0xc0005afa28 sp=0xc0005afa10 pc=0x561606daf804 Jan 15 06:53:08 inspur11 ollama[2013775]: net/http.(*Server).Serve(0xc000016690, {0x5616071d8b38, 0xc000172700}) Jan 15 06:53:08 inspur11 ollama[2013775]: net/http/server.go:3330 +0x30c fp=0xc0005afb58 sp=0xc0005afa28 pc=0x561606da154c Jan 15 06:53:08 inspur11 ollama[2013775]: github.com/ollama/ollama/llama/runner.Execute({0xc000016100?, 0x561606b99bbc?, 0x0?}) Jan 15 06:53:08 inspur11 ollama[2013775]: github.com/ollama/ollama/llama/runner/runner.go:996 +0x11a9 fp=0xc0005afef8 sp=0xc0005afb58 pc=0x561606dd6b29 Jan 15 06:53:08 inspur11 ollama[2013775]: main.main() Jan 15 06:53:08 inspur11 ollama[2013775]: github.com/ollama/ollama/cmd/runner/main.go:11 +0x54 fp=0xc0005aff50 sp=0xc0005afef8 pc=0x561606dd7ab4 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.main() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:272 +0x29d fp=0xc0005affe0 sp=0xc0005aff50 pc=0x561606b5e67d Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0005affe8 sp=0xc0005affe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 2 gp=0xc000006c40 m=nil [force gc (idle), 3 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0xc968e6a82af20?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000144fa8 sp=0xc000144f88 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goparkunlock(...) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:430 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.forcegchelper() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:337 +0xb8 fp=0xc000144fe0 sp=0xc000144fa8 pc=0x561606b5e9b8 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc000144fe8 sp=0xc000144fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.init.7 in goroutine 1 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:325 +0x1a Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 3 gp=0xc000007180 m=nil [GC sweep wait]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x1?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000145780 sp=0xc000145760 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goparkunlock(...) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:430 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.bgsweep(0xc00013e080) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgcsweep.go:317 +0xdf fp=0xc0001457c8 sp=0xc000145780 pc=0x561606b4923f Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcenable.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:204 +0x25 fp=0xc0001457e0 sp=0xc0001457c8 pc=0x561606b3daa5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0001457e8 sp=0xc0001457e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcenable in goroutine 1 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:204 +0x66 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 4 gp=0xc000007340 m=nil [GC scavenge wait]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x115a42?, 0xaf49f?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000145f78 sp=0xc000145f58 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goparkunlock(...) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:430 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.(*scavengerState).park(0x5616073c4000) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgcscavenge.go:425 +0x49 fp=0xc000145fa8 sp=0xc000145f78 pc=0x561606b46c29 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.bgscavenge(0xc00013e080) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgcscavenge.go:658 +0x59 fp=0xc000145fc8 sp=0xc000145fa8 pc=0x561606b471b9 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcenable.gowrap2() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:205 +0x25 fp=0xc000145fe0 sp=0xc000145fc8 pc=0x561606b3da45 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc000145fe8 sp=0xc000145fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcenable in goroutine 1 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:205 +0xa5 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 5 gp=0xc000007c00 m=nil [finalizer wait, 29 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x5616071d4138?, 0x20?, 0x40?, 0x1000000010?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000144620 sp=0xc000144600 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.runfinq() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mfinal.go:193 +0x107 fp=0xc0001447e0 sp=0xc000144620 pc=0x561606b3cb27 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0001447e8 sp=0xc0001447e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.createfing in goroutine 1 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mfinal.go:163 +0x3d Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 6 gp=0xc000007dc0 m=nil [chan receive]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0xc000146760?, 0x561606c487c5?, 0x70?, 0xa2?, 0x5616071dce00?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000146718 sp=0xc0001466f8 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.chanrecv(0xc000022150, 0x0, 0x1) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/chan.go:639 +0x41c fp=0xc000146790 sp=0xc000146718 pc=0x561606b2d77c Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.chanrecv1(0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/chan.go:489 +0x12 fp=0xc0001467b8 sp=0xc000146790 pc=0x561606b2d352 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.unique_runtime_registerUniqueMapCleanup.func1(...) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1781 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.unique_runtime_registerUniqueMapCleanup.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1784 +0x2f fp=0xc0001467e0 sp=0xc0001467b8 pc=0x561606b4090f Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0001467e8 sp=0xc0001467e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by unique.runtime_registerUniqueMapCleanup in goroutine 1 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1779 +0x96 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 491 gp=0xc000252000 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0xc00028c0d8?, 0x70?, 0x87?, 0x561606bace33?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0003a8738 sp=0xc0003a8718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0003a87c8 sp=0xc0003a8738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0003a87e0 sp=0xc0003a87c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0003a87e8 sp=0xc0003a87e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 531 gp=0xc0001848c0 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0xc00028c0d8?, 0x70?, 0x5f?, 0x561606bace33?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0001b5f38 sp=0xc0001b5f18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0001b5fc8 sp=0xc0001b5f38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0001b5fe0 sp=0xc0001b5fc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0001b5fe8 sp=0xc0001b5fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 497 gp=0xc000185180 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0xc00028c0d8?, 0x70?, 0xa7?, 0x561606bace33?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0001fa738 sp=0xc0001fa718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0001fa7c8 sp=0xc0001fa738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0001fa7e0 sp=0xc0001fa7c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0001fa7e8 sp=0xc0001fa7e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 533 gp=0xc000185340 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0xc00028c0d8?, 0x70?, 0xaf?, 0x561606bace33?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0001faf38 sp=0xc0001faf18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0001fafc8 sp=0xc0001faf38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0001fafe0 sp=0xc0001fafc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0001fafe8 sp=0xc0001fafe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 534 gp=0xc000398540 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0xc00028c0d8?, 0x70?, 0xcf?, 0x561606bace33?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0003acf38 sp=0xc0003acf18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0003acfc8 sp=0xc0003acf38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0003acfe0 sp=0xc0003acfc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0003acfe8 sp=0xc0003acfe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 492 gp=0xc000185500 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0xc00028c0d8?, 0x70?, 0xb7?, 0x561606bace33?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0001fb738 sp=0xc0001fb718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0001fb7c8 sp=0xc0001fb738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0001fb7e0 sp=0xc0001fb7c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0001fb7e8 sp=0xc0001fb7e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 530 gp=0xc000398700 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0xc00028c0d8?, 0x70?, 0xd7?, 0x561606bace33?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0003ad738 sp=0xc0003ad718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0003ad7c8 sp=0xc0003ad738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0003ad7e0 sp=0xc0003ad7c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0003ad7e8 sp=0xc0003ad7e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 495 gp=0xc0001856c0 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0xc00028c0d8?, 0x70?, 0xbf?, 0x561606bace33?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0001fbf38 sp=0xc0001fbf18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0001fbfc8 sp=0xc0001fbf38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0001fbfe0 sp=0xc0001fbfc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0001fbfe8 sp=0xc0001fbfe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 532 gp=0xc000185880 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0xc00028c0d8?, 0x70?, 0xc7?, 0x561606bace33?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0001fc738 sp=0xc0001fc718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0001fc7c8 sp=0xc0001fc738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0001fc7e0 sp=0xc0001fc7c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0001fc7e8 sp=0xc0001fc7e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 496 gp=0xc0003988c0 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0xc00028c0d8?, 0x70?, 0xdf?, 0x561606bace33?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0003adf38 sp=0xc0003adf18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0003adfc8 sp=0xc0003adf38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0003adfe0 sp=0xc0003adfc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0003adfe8 sp=0xc0003adfe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 494 gp=0xc000398a80 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0xc00028c0d8?, 0x70?, 0xe7?, 0x561606bace33?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0003ae738 sp=0xc0003ae718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0003ae7c8 sp=0xc0003ae738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0003ae7e0 sp=0xc0003ae7c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0003ae7e8 sp=0xc0003ae7e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 493 gp=0xc000398c40 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0xc00028c0d8?, 0x70?, 0xef?, 0x561606bace33?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0003aef38 sp=0xc0003aef18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0003aefc8 sp=0xc0003aef38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0003aefe0 sp=0xc0003aefc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0003aefe8 sp=0xc0003aefe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 490 gp=0xc000398fc0 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0xc00028c0d8?, 0x70?, 0xff?, 0x561606bace33?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0003aff38 sp=0xc0003aff18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0003affc8 sp=0xc0003aff38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0003affe0 sp=0xc0003affc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0003affe8 sp=0xc0003affe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 535 gp=0xc000185a40 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0001fcf38 sp=0xc0001fcf18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0001fcfc8 sp=0xc0001fcf38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0001fcfe0 sp=0xc0001fcfc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0001fcfe8 sp=0xc0001fcfe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 536 gp=0xc000185c00 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0001fd738 sp=0xc0001fd718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0001fd7c8 sp=0xc0001fd738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0001fd7e0 sp=0xc0001fd7c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0001fd7e8 sp=0xc0001fd7e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 537 gp=0xc000185dc0 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0001fdf38 sp=0xc0001fdf18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0001fdfc8 sp=0xc0001fdf38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0001fdfe0 sp=0xc0001fdfc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0001fdfe8 sp=0xc0001fdfe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 538 gp=0xc0004e6000 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004ec738 sp=0xc0004ec718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004ec7c8 sp=0xc0004ec738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004ec7e0 sp=0xc0004ec7c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004ec7e8 sp=0xc0004ec7e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 539 gp=0xc0004e61c0 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004ecf38 sp=0xc0004ecf18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004ecfc8 sp=0xc0004ecf38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004ecfe0 sp=0xc0004ecfc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004ecfe8 sp=0xc0004ecfe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 540 gp=0xc0004e6380 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004ed738 sp=0xc0004ed718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004ed7c8 sp=0xc0004ed738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004ed7e0 sp=0xc0004ed7c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004ed7e8 sp=0xc0004ed7e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 541 gp=0xc0004e6540 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004edf38 sp=0xc0004edf18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004edfc8 sp=0xc0004edf38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004edfe0 sp=0xc0004edfc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004edfe8 sp=0xc0004edfe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 542 gp=0xc0004e6700 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004ee738 sp=0xc0004ee718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004ee7c8 sp=0xc0004ee738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004ee7e0 sp=0xc0004ee7c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004ee7e8 sp=0xc0004ee7e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 543 gp=0xc0004e68c0 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004eef38 sp=0xc0004eef18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004eefc8 sp=0xc0004eef38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004eefe0 sp=0xc0004eefc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004eefe8 sp=0xc0004eefe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 544 gp=0xc0004e6a80 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004ef738 sp=0xc0004ef718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004ef7c8 sp=0xc0004ef738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004ef7e0 sp=0xc0004ef7c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004ef7e8 sp=0xc0004ef7e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 545 gp=0xc0004e6c40 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004eff38 sp=0xc0004eff18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004effc8 sp=0xc0004eff38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004effe0 sp=0xc0004effc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004effe8 sp=0xc0004effe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 546 gp=0xc0004e6e00 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004e8738 sp=0xc0004e8718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004e87c8 sp=0xc0004e8738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004e87e0 sp=0xc0004e87c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004e87e8 sp=0xc0004e87e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 547 gp=0xc0004e6fc0 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004e8f38 sp=0xc0004e8f18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004e8fc8 sp=0xc0004e8f38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004e8fe0 sp=0xc0004e8fc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004e8fe8 sp=0xc0004e8fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 548 gp=0xc0004e7180 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004e9738 sp=0xc0004e9718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004e97c8 sp=0xc0004e9738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004e97e0 sp=0xc0004e97c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004e97e8 sp=0xc0004e97e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 549 gp=0xc0004e7340 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004e9f38 sp=0xc0004e9f18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004e9fc8 sp=0xc0004e9f38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004e9fe0 sp=0xc0004e9fc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004e9fe8 sp=0xc0004e9fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 550 gp=0xc0004e7500 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004ea738 sp=0xc0004ea718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004ea7c8 sp=0xc0004ea738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004ea7e0 sp=0xc0004ea7c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004ea7e8 sp=0xc0004ea7e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 551 gp=0xc0004e76c0 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004eaf38 sp=0xc0004eaf18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004eafc8 sp=0xc0004eaf38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004eafe0 sp=0xc0004eafc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004eafe8 sp=0xc0004eafe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 552 gp=0xc0004e7880 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004eb738 sp=0xc0004eb718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004eb7c8 sp=0xc0004eb738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004eb7e0 sp=0xc0004eb7c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004eb7e8 sp=0xc0004eb7e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 553 gp=0xc0004e7a40 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004ebf38 sp=0xc0004ebf18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004ebfc8 sp=0xc0004ebf38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004ebfe0 sp=0xc0004ebfc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004ebfe8 sp=0xc0004ebfe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 554 gp=0xc0004e7c00 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004f4738 sp=0xc0004f4718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004f47c8 sp=0xc0004f4738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004f47e0 sp=0xc0004f47c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f47e8 sp=0xc0004f47e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 555 gp=0xc0004e7dc0 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004f4f38 sp=0xc0004f4f18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004f4fc8 sp=0xc0004f4f38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004f4fe0 sp=0xc0004f4fc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f4fe8 sp=0xc0004f4fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 556 gp=0xc0004f8000 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004f5738 sp=0xc0004f5718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004f57c8 sp=0xc0004f5738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004f57e0 sp=0xc0004f57c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f57e8 sp=0xc0004f57e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 557 gp=0xc0004f81c0 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004f5f38 sp=0xc0004f5f18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004f5fc8 sp=0xc0004f5f38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004f5fe0 sp=0xc0004f5fc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f5fe8 sp=0xc0004f5fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 558 gp=0xc0004f8380 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004f6738 sp=0xc0004f6718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004f67c8 sp=0xc0004f6738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004f67e0 sp=0xc0004f67c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f67e8 sp=0xc0004f67e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 559 gp=0xc0004f8540 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004f6f38 sp=0xc0004f6f18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004f6fc8 sp=0xc0004f6f38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004f6fe0 sp=0xc0004f6fc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f6fe8 sp=0xc0004f6fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 560 gp=0xc0004f8700 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004f7738 sp=0xc0004f7718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004f77c8 sp=0xc0004f7738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004f77e0 sp=0xc0004f77c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f77e8 sp=0xc0004f77e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 561 gp=0xc0004f88c0 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004f7f38 sp=0xc0004f7f18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004f7fc8 sp=0xc0004f7f38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004f7fe0 sp=0xc0004f7fc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f7fe8 sp=0xc0004f7fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 562 gp=0xc0004f8a80 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004f0738 sp=0xc0004f0718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004f07c8 sp=0xc0004f0738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004f07e0 sp=0xc0004f07c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f07e8 sp=0xc0004f07e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 563 gp=0xc0004f8c40 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004f0f38 sp=0xc0004f0f18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004f0fc8 sp=0xc0004f0f38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004f0fe0 sp=0xc0004f0fc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f0fe8 sp=0xc0004f0fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 564 gp=0xc0004f8e00 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004f1738 sp=0xc0004f1718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004f17c8 sp=0xc0004f1738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004f17e0 sp=0xc0004f17c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f17e8 sp=0xc0004f17e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 565 gp=0xc0004f8fc0 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004f1f38 sp=0xc0004f1f18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004f1fc8 sp=0xc0004f1f38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004f1fe0 sp=0xc0004f1fc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f1fe8 sp=0xc0004f1fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 566 gp=0xc0004f9180 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004f2738 sp=0xc0004f2718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004f27c8 sp=0xc0004f2738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004f27e0 sp=0xc0004f27c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f27e8 sp=0xc0004f27e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 567 gp=0xc0004f9340 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004f2f38 sp=0xc0004f2f18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004f2fc8 sp=0xc0004f2f38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004f2fe0 sp=0xc0004f2fc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f2fe8 sp=0xc0004f2fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 568 gp=0xc0004f9500 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004f3738 sp=0xc0004f3718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004f37c8 sp=0xc0004f3738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004f37e0 sp=0xc0004f37c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f37e8 sp=0xc0004f37e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 569 gp=0xc0004f96c0 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0004f3f38 sp=0xc0004f3f18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0004f3fc8 sp=0xc0004f3f38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0004f3fe0 sp=0xc0004f3fc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0004f3fe8 sp=0xc0004f3fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 570 gp=0xc0004f9880 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000584738 sp=0xc000584718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0005847c8 sp=0xc000584738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0005847e0 sp=0xc0005847c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0005847e8 sp=0xc0005847e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 571 gp=0xc0004f9a40 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000584f38 sp=0xc000584f18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc000584fc8 sp=0xc000584f38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc000584fe0 sp=0xc000584fc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc000584fe8 sp=0xc000584fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 572 gp=0xc0004f9c00 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000585738 sp=0xc000585718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0005857c8 sp=0xc000585738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0005857e0 sp=0xc0005857c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0005857e8 sp=0xc0005857e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 573 gp=0xc0004f9dc0 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000585f38 sp=0xc000585f18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc000585fc8 sp=0xc000585f38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc000585fe0 sp=0xc000585fc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc000585fe8 sp=0xc000585fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 574 gp=0xc0004fa000 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000586738 sp=0xc000586718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0005867c8 sp=0xc000586738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0005867e0 sp=0xc0005867c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0005867e8 sp=0xc0005867e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 575 gp=0xc0004fa1c0 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000586f38 sp=0xc000586f18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc000586fc8 sp=0xc000586f38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc000586fe0 sp=0xc000586fc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc000586fe8 sp=0xc000586fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 576 gp=0xc0004fa380 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000587738 sp=0xc000587718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0005877c8 sp=0xc000587738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0005877e0 sp=0xc0005877c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0005877e8 sp=0xc0005877e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 577 gp=0xc0004fa540 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000587f38 sp=0xc000587f18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc000587fc8 sp=0xc000587f38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc000587fe0 sp=0xc000587fc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc000587fe8 sp=0xc000587fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 578 gp=0xc0004fa700 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000580738 sp=0xc000580718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0005807c8 sp=0xc000580738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0005807e0 sp=0xc0005807c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0005807e8 sp=0xc0005807e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 579 gp=0xc0004fa8c0 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000580f38 sp=0xc000580f18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc000580fc8 sp=0xc000580f38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc000580fe0 sp=0xc000580fc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc000580fe8 sp=0xc000580fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 580 gp=0xc0004faa80 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000581738 sp=0xc000581718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0005817c8 sp=0xc000581738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0005817e0 sp=0xc0005817c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0005817e8 sp=0xc0005817e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 581 gp=0xc0004fac40 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000581f38 sp=0xc000581f18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc000581fc8 sp=0xc000581f38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc000581fe0 sp=0xc000581fc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc000581fe8 sp=0xc000581fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 582 gp=0xc0004fae00 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000582738 sp=0xc000582718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0005827c8 sp=0xc000582738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0005827e0 sp=0xc0005827c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0005827e8 sp=0xc0005827e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 583 gp=0xc0004fafc0 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000582f38 sp=0xc000582f18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc000582fc8 sp=0xc000582f38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc000582fe0 sp=0xc000582fc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc000582fe8 sp=0xc000582fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 584 gp=0xc0004fb180 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000583738 sp=0xc000583718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0005837c8 sp=0xc000583738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0005837e0 sp=0xc0005837c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0005837e8 sp=0xc0005837e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 585 gp=0xc0004fb340 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000583f38 sp=0xc000583f18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc000583fc8 sp=0xc000583f38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc000583fe0 sp=0xc000583fc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc000583fe8 sp=0xc000583fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 586 gp=0xc0004fb500 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc00058c738 sp=0xc00058c718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc00058c7c8 sp=0xc00058c738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc00058c7e0 sp=0xc00058c7c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc00058c7e8 sp=0xc00058c7e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 587 gp=0xc0004fb6c0 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc00058cf38 sp=0xc00058cf18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc00058cfc8 sp=0xc00058cf38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc00058cfe0 sp=0xc00058cfc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc00058cfe8 sp=0xc00058cfe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 588 gp=0xc0004fb880 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc00058d738 sp=0xc00058d718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc00058d7c8 sp=0xc00058d738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc00058d7e0 sp=0xc00058d7c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc00058d7e8 sp=0xc00058d7e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 589 gp=0xc0004fba40 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc00058df38 sp=0xc00058df18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc00058dfc8 sp=0xc00058df38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc00058dfe0 sp=0xc00058dfc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc00058dfe8 sp=0xc00058dfe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 590 gp=0xc0004fbc00 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc00058e738 sp=0xc00058e718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc00058e7c8 sp=0xc00058e738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc00058e7e0 sp=0xc00058e7c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc00058e7e8 sp=0xc00058e7e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 591 gp=0xc0004fbdc0 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc00058ef38 sp=0xc00058ef18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc00058efc8 sp=0xc00058ef38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc00058efe0 sp=0xc00058efc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc00058efe8 sp=0xc00058efe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 592 gp=0xc0004fc000 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc00058f738 sp=0xc00058f718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc00058f7c8 sp=0xc00058f738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc00058f7e0 sp=0xc00058f7c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc00058f7e8 sp=0xc00058f7e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 593 gp=0xc0004fc1c0 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc00058ff38 sp=0xc00058ff18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc00058ffc8 sp=0xc00058ff38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc00058ffe0 sp=0xc00058ffc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc00058ffe8 sp=0xc00058ffe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 594 gp=0xc0004fc380 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000588738 sp=0xc000588718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0005887c8 sp=0xc000588738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0005887e0 sp=0xc0005887c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0005887e8 sp=0xc0005887e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 595 gp=0xc0004fc540 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000588f38 sp=0xc000588f18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc000588fc8 sp=0xc000588f38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc000588fe0 sp=0xc000588fc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc000588fe8 sp=0xc000588fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 596 gp=0xc0004fc700 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000589738 sp=0xc000589718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0005897c8 sp=0xc000589738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0005897e0 sp=0xc0005897c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0005897e8 sp=0xc0005897e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 597 gp=0xc0004fc8c0 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000589f38 sp=0xc000589f18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc000589fc8 sp=0xc000589f38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc000589fe0 sp=0xc000589fc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc000589fe8 sp=0xc000589fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 598 gp=0xc0004fca80 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc00058a738 sp=0xc00058a718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc00058a7c8 sp=0xc00058a738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc00058a7e0 sp=0xc00058a7c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc00058a7e8 sp=0xc00058a7e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 599 gp=0xc0004fcc40 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc00058af38 sp=0xc00058af18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc00058afc8 sp=0xc00058af38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc00058afe0 sp=0xc00058afc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc00058afe8 sp=0xc00058afe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 600 gp=0xc0004fce00 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc00058b738 sp=0xc00058b718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc00058b7c8 sp=0xc00058b738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc00058b7e0 sp=0xc00058b7c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc00058b7e8 sp=0xc00058b7e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 601 gp=0xc0004fcfc0 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc00058bf38 sp=0xc00058bf18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc00058bfc8 sp=0xc00058bf38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc00058bfe0 sp=0xc00058bfc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc00058bfe8 sp=0xc00058bfe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 602 gp=0xc0004fd180 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000594738 sp=0xc000594718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0005947c8 sp=0xc000594738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0005947e0 sp=0xc0005947c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0005947e8 sp=0xc0005947e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 603 gp=0xc0004fd340 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000594f38 sp=0xc000594f18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc000594fc8 sp=0xc000594f38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc000594fe0 sp=0xc000594fc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc000594fe8 sp=0xc000594fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 604 gp=0xc0004fd500 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000595738 sp=0xc000595718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0005957c8 sp=0xc000595738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0005957e0 sp=0xc0005957c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0005957e8 sp=0xc0005957e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 605 gp=0xc0004fd6c0 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000595f38 sp=0xc000595f18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc000595fc8 sp=0xc000595f38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc000595fe0 sp=0xc000595fc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc000595fe8 sp=0xc000595fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 606 gp=0xc0004fd880 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000596738 sp=0xc000596718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0005967c8 sp=0xc000596738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0005967e0 sp=0xc0005967c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0005967e8 sp=0xc0005967e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 607 gp=0xc0004fda40 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000596f38 sp=0xc000596f18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc000596fc8 sp=0xc000596f38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc000596fe0 sp=0xc000596fc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc000596fe8 sp=0xc000596fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 608 gp=0xc0004fdc00 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000597738 sp=0xc000597718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0005977c8 sp=0xc000597738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0005977e0 sp=0xc0005977c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0005977e8 sp=0xc0005977e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 609 gp=0xc0004fddc0 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000597f38 sp=0xc000597f18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc000597fc8 sp=0xc000597f38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc000597fe0 sp=0xc000597fc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc000597fe8 sp=0xc000597fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 610 gp=0xc0004fe000 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000590738 sp=0xc000590718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0005907c8 sp=0xc000590738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0005907e0 sp=0xc0005907c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0005907e8 sp=0xc0005907e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 611 gp=0xc0004fe1c0 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000590f38 sp=0xc000590f18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc000590fc8 sp=0xc000590f38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc000590fe0 sp=0xc000590fc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc000590fe8 sp=0xc000590fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 612 gp=0xc0004fe380 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000591738 sp=0xc000591718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0005917c8 sp=0xc000591738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0005917e0 sp=0xc0005917c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0005917e8 sp=0xc0005917e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 613 gp=0xc0004fe540 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000591f38 sp=0xc000591f18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc000591fc8 sp=0xc000591f38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc000591fe0 sp=0xc000591fc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc000591fe8 sp=0xc000591fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 614 gp=0xc0004fe700 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000592738 sp=0xc000592718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0005927c8 sp=0xc000592738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0005927e0 sp=0xc0005927c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0005927e8 sp=0xc0005927e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 615 gp=0xc0004fe8c0 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000592f38 sp=0xc000592f18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc000592fc8 sp=0xc000592f38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc000592fe0 sp=0xc000592fc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc000592fe8 sp=0xc000592fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 616 gp=0xc0004fea80 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000593738 sp=0xc000593718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0005937c8 sp=0xc000593738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0005937e0 sp=0xc0005937c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0005937e8 sp=0xc0005937e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 617 gp=0xc0004fec40 m=nil [GC worker (idle), 246 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000593f38 sp=0xc000593f18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc000593fc8 sp=0xc000593f38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc000593fe0 sp=0xc000593fc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc000593fe8 sp=0xc000593fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 618 gp=0xc0004fee00 m=nil [GC worker (idle)]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x56160746a660?, 0x1?, 0x9a?, 0x99?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc00059c738 sp=0xc00059c718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc00059c7c8 sp=0xc00059c738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc00059c7e0 sp=0xc00059c7c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc00059c7e8 sp=0xc00059c7e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 619 gp=0xc0004fefc0 m=nil [GC worker (idle), 3 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0xc968e6a8f9be1?, 0x1?, 0x71?, 0x9a?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc00059cf38 sp=0xc00059cf18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc00059cfc8 sp=0xc00059cf38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc00059cfe0 sp=0xc00059cfc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc00059cfe8 sp=0xc00059cfe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 620 gp=0xc0004ff180 m=nil [GC worker (idle), 3 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0xc968e6a8fa303?, 0x1?, 0xc6?, 0xd3?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc00059d738 sp=0xc00059d718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc00059d7c8 sp=0xc00059d738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc00059d7e0 sp=0xc00059d7c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc00059d7e8 sp=0xc00059d7e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 621 gp=0xc0004ff340 m=nil [GC worker (idle), 19 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x56160746a660?, 0x1?, 0x2f?, 0x47?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc00059df38 sp=0xc00059df18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc00059dfc8 sp=0xc00059df38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc00059dfe0 sp=0xc00059dfc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc00059dfe8 sp=0xc00059dfe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 622 gp=0xc0004ff500 m=nil [GC worker (idle), 7 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0xc96369905d0bb?, 0x1?, 0x2b?, 0x49?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc00059e738 sp=0xc00059e718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc00059e7c8 sp=0xc00059e738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc00059e7e0 sp=0xc00059e7c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc00059e7e8 sp=0xc00059e7e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 623 gp=0xc0004ff6c0 m=nil [GC worker (idle)]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0xc968e6a8fb1a6?, 0x1?, 0x15?, 0xbf?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc00059ef38 sp=0xc00059ef18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc00059efc8 sp=0xc00059ef38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc00059efe0 sp=0xc00059efc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc00059efe8 sp=0xc00059efe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 624 gp=0xc0004ff880 m=nil [GC worker (idle)]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0xc968e6a8f97cc?, 0x1?, 0x7a?, 0xa5?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc00059f738 sp=0xc00059f718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc00059f7c8 sp=0xc00059f738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc00059f7e0 sp=0xc00059f7c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc00059f7e8 sp=0xc00059f7e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 625 gp=0xc0004ffa40 m=nil [GC worker (idle), 3 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0xc966e7a5c5362?, 0x1?, 0x49?, 0x66?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc00059ff38 sp=0xc00059ff18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc00059ffc8 sp=0xc00059ff38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc00059ffe0 sp=0xc00059ffc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc00059ffe8 sp=0xc00059ffe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 626 gp=0xc0004ffc00 m=nil [GC worker (idle)]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x56160746a660?, 0x1?, 0x62?, 0xbf?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000598738 sp=0xc000598718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0005987c8 sp=0xc000598738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0005987e0 sp=0xc0005987c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0005987e8 sp=0xc0005987e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 627 gp=0xc0004ffdc0 m=nil [GC worker (idle)]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x56160746a660?, 0x1?, 0x81?, 0xa5?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000598f38 sp=0xc000598f18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc000598fc8 sp=0xc000598f38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc000598fe0 sp=0xc000598fc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc000598fe8 sp=0xc000598fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 628 gp=0xc0005a0000 m=nil [GC worker (idle), 3 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x56160746a660?, 0x1?, 0xbd?, 0x79?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000599738 sp=0xc000599718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc0005997c8 sp=0xc000599738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc0005997e0 sp=0xc0005997c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0005997e8 sp=0xc0005997e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 629 gp=0xc0005a01c0 m=nil [GC worker (idle), 5 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x56160746a660?, 0x1?, 0xfe?, 0xb2?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc000599f38 sp=0xc000599f18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc000599fc8 sp=0xc000599f38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc000599fe0 sp=0xc000599fc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc000599fe8 sp=0xc000599fe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 630 gp=0xc0005a0380 m=nil [GC worker (idle)]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0xc968e6a8f93cb?, 0x1?, 0xeb?, 0x26?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc00059a738 sp=0xc00059a718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc00059a7c8 sp=0xc00059a738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc00059a7e0 sp=0xc00059a7c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc00059a7e8 sp=0xc00059a7e0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 631 gp=0xc0005a0540 m=nil [GC worker (idle), 3 minutes]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0x56160746a660?, 0x1?, 0x36?, 0x1a?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc00059af38 sp=0xc00059af18 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc00059afc8 sp=0xc00059af38 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc00059afe0 sp=0xc00059afc8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc00059afe8 sp=0xc00059afe0 pc=0x561606b99f61 Jan 15 06:53:08 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:08 inspur11 ollama[2013775]: goroutine 632 gp=0xc0005a0700 m=nil [GC worker (idle)]: Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gopark(0xc968e6a8f4b59?, 0x1?, 0x71?, 0xaa?, 0x0?) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc00059b738 sp=0xc00059b718 pc=0x561606b9232e Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc00059b7c8 sp=0xc00059b738 pc=0x561606b3fc09 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:08 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc00059b7e0 sp=0xc00059b7c8 pc=0x561606b3fae5 Jan 15 06:53:08 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:09 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc00059b7e8 sp=0xc00059b7e0 pc=0x561606b99f61 Jan 15 06:53:09 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:09 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:09 inspur11 ollama[2013775]: goroutine 633 gp=0xc0005a08c0 m=nil [GC worker (idle), 107 minutes]: Jan 15 06:53:09 inspur11 ollama[2013775]: runtime.gopark(0x56160746a660?, 0x1?, 0x9e?, 0xb4?, 0x0?) Jan 15 06:53:09 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc00059bf38 sp=0xc00059bf18 pc=0x561606b9232e Jan 15 06:53:09 inspur11 ollama[2013775]: runtime.gcBgMarkWorker(0xc00048f110) Jan 15 06:53:09 inspur11 ollama[2013775]: runtime/mgc.go:1412 +0xe9 fp=0xc00059bfc8 sp=0xc00059bf38 pc=0x561606b3fc09 Jan 15 06:53:09 inspur11 ollama[2013775]: runtime.gcBgMarkStartWorkers.gowrap1() Jan 15 06:53:09 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x25 fp=0xc00059bfe0 sp=0xc00059bfc8 pc=0x561606b3fae5 Jan 15 06:53:09 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:09 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc00059bfe8 sp=0xc00059bfe0 pc=0x561606b99f61 Jan 15 06:53:09 inspur11 ollama[2013775]: created by runtime.gcBgMarkStartWorkers in goroutine 18 Jan 15 06:53:09 inspur11 ollama[2013775]: runtime/mgc.go:1328 +0x105 Jan 15 06:53:09 inspur11 ollama[2013775]: goroutine 659 gp=0xc000421500 m=nil [select]: Jan 15 06:53:09 inspur11 ollama[2013775]: runtime.gopark(0xc0005b1a68?, 0x2?, 0x4d?, 0x27?, 0xc0005b1834?) Jan 15 06:53:09 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0005b16a0 sp=0xc0005b1680 pc=0x561606b9232e Jan 15 06:53:09 inspur11 ollama[2013775]: runtime.selectgo(0xc0005b1a68, 0xc0005b1830, 0xc0001c8080?, 0x0, 0x1?, 0x1) Jan 15 06:53:09 inspur11 ollama[2013775]: runtime/select.go:335 +0x7a5 fp=0xc0005b17c8 sp=0xc0005b16a0 pc=0x561606b70585 Jan 15 06:53:09 inspur11 ollama[2013775]: github.com/ollama/ollama/llama/runner.(*Server).completion(0xc0002181b0, {0x5616071d8cb8, 0xc0002a00e0}, 0xc000002140) Jan 15 06:53:09 inspur11 ollama[2013775]: github.com/ollama/ollama/llama/runner/runner.go:687 +0xa86 fp=0xc0005b1ac0 sp=0xc0005b17c8 pc=0x561606dd4246 Jan 15 06:53:09 inspur11 ollama[2013775]: github.com/ollama/ollama/llama/runner.(*Server).completion-fm({0x5616071d8cb8?, 0xc0002a00e0?}, 0x561606da5847?) Jan 15 06:53:09 inspur11 ollama[2013775]: <autogenerated>:1 +0x36 fp=0xc0005b1af0 sp=0xc0005b1ac0 pc=0x561606dd76f6 Jan 15 06:53:09 inspur11 ollama[2013775]: net/http.HandlerFunc.ServeHTTP(0xc0002300e0?, {0x5616071d8cb8?, 0xc0002a00e0?}, 0x0?) Jan 15 06:53:09 inspur11 ollama[2013775]: net/http/server.go:2220 +0x29 fp=0xc0005b1b18 sp=0xc0005b1af0 pc=0x561606d9e409 Jan 15 06:53:09 inspur11 ollama[2013775]: net/http.(*ServeMux).ServeHTTP(0x561606b33fa5?, {0x5616071d8cb8, 0xc0002a00e0}, 0xc000002140) Jan 15 06:53:09 inspur11 ollama[2013775]: net/http/server.go:2747 +0x1ca fp=0xc0005b1b68 sp=0xc0005b1b18 pc=0x561606da02aa Jan 15 06:53:09 inspur11 ollama[2013775]: net/http.serverHandler.ServeHTTP({0x5616071d7d70?}, {0x5616071d8cb8?, 0xc0002a00e0?}, 0x6?) Jan 15 06:53:09 inspur11 ollama[2013775]: net/http/server.go:3210 +0x8e fp=0xc0005b1b98 sp=0xc0005b1b68 pc=0x561606da71ae Jan 15 06:53:09 inspur11 ollama[2013775]: net/http.(*conn).serve(0xc000218240, {0x5616071d90e8, 0xc00020af60}) Jan 15 06:53:09 inspur11 ollama[2013775]: net/http/server.go:2092 +0x5d0 fp=0xc0005b1fb8 sp=0xc0005b1b98 pc=0x561606d9d030 Jan 15 06:53:09 inspur11 ollama[2013775]: net/http.(*Server).Serve.gowrap3() Jan 15 06:53:09 inspur11 ollama[2013775]: net/http/server.go:3360 +0x28 fp=0xc0005b1fe0 sp=0xc0005b1fb8 pc=0x561606da1948 Jan 15 06:53:09 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:09 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0005b1fe8 sp=0xc0005b1fe0 pc=0x561606b99f61 Jan 15 06:53:09 inspur11 ollama[2013775]: created by net/http.(*Server).Serve in goroutine 1 Jan 15 06:53:09 inspur11 ollama[2013775]: net/http/server.go:3360 +0x485 Jan 15 06:53:09 inspur11 ollama[2013775]: goroutine 661 gp=0xc000421880 m=nil [IO wait, 3 minutes]: Jan 15 06:53:09 inspur11 ollama[2013775]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0xb?) Jan 15 06:53:09 inspur11 ollama[2013775]: runtime/proc.go:424 +0xce fp=0xc0003a8da8 sp=0xc0003a8d88 pc=0x561606b9232e Jan 15 06:53:09 inspur11 ollama[2013775]: runtime.netpollblock(0x561606bcdb58?, 0x6b2ab86?, 0x16?) Jan 15 06:53:09 inspur11 ollama[2013775]: runtime/netpoll.go:575 +0xf7 fp=0xc0003a8de0 sp=0xc0003a8da8 pc=0x561606b57097 Jan 15 06:53:09 inspur11 ollama[2013775]: internal/poll.runtime_pollWait(0x7f9a4d0e65a0, 0x72) Jan 15 06:53:09 inspur11 ollama[2013775]: runtime/netpoll.go:351 +0x85 fp=0xc0003a8e00 sp=0xc0003a8de0 pc=0x561606b91625 Jan 15 06:53:09 inspur11 ollama[2013775]: internal/poll.(*pollDesc).wait(0xc00024e080?, 0xc00039e101?, 0x0) Jan 15 06:53:09 inspur11 ollama[2013775]: internal/poll/fd_poll_runtime.go:84 +0x27 fp=0xc0003a8e28 sp=0xc0003a8e00 pc=0x561606be7467 Jan 15 06:53:09 inspur11 ollama[2013775]: internal/poll.(*pollDesc).waitRead(...) Jan 15 06:53:09 inspur11 ollama[2013775]: internal/poll/fd_poll_runtime.go:89 Jan 15 06:53:09 inspur11 ollama[2013775]: internal/poll.(*FD).Read(0xc00024e080, {0xc00039e101, 0x1, 0x1}) Jan 15 06:53:09 inspur11 ollama[2013775]: internal/poll/fd_unix.go:165 +0x27a fp=0xc0003a8ec0 sp=0xc0003a8e28 pc=0x561606be7fba Jan 15 06:53:09 inspur11 ollama[2013775]: net.(*netFD).Read(0xc00024e080, {0xc00039e101?, 0x0?, 0x0?}) Jan 15 06:53:09 inspur11 ollama[2013775]: net/fd_posix.go:55 +0x25 fp=0xc0003a8f08 sp=0xc0003a8ec0 pc=0x561606c601c5 Jan 15 06:53:09 inspur11 ollama[2013775]: net.(*conn).Read(0xc000288010, {0xc00039e101?, 0x0?, 0x0?}) Jan 15 06:53:09 inspur11 ollama[2013775]: net/net.go:189 +0x45 fp=0xc0003a8f50 sp=0xc0003a8f08 pc=0x561606c69bc5 Jan 15 06:53:09 inspur11 ollama[2013775]: net.(*TCPConn).Read(0x0?, {0xc00039e101?, 0x0?, 0x0?}) Jan 15 06:53:09 inspur11 ollama[2013775]: <autogenerated>:1 +0x25 fp=0xc0003a8f80 sp=0xc0003a8f50 pc=0x561606c76c65 Jan 15 06:53:09 inspur11 ollama[2013775]: net/http.(*connReader).backgroundRead(0xc00039e0f0) Jan 15 06:53:09 inspur11 ollama[2013775]: net/http/server.go:690 +0x37 fp=0xc0003a8fc8 sp=0xc0003a8f80 pc=0x561606d979b7 Jan 15 06:53:09 inspur11 ollama[2013775]: net/http.(*connReader).startBackgroundRead.gowrap2() Jan 15 06:53:09 inspur11 ollama[2013775]: net/http/server.go:686 +0x25 fp=0xc0003a8fe0 sp=0xc0003a8fc8 pc=0x561606d978e5 Jan 15 06:53:09 inspur11 ollama[2013775]: runtime.goexit({}) Jan 15 06:53:09 inspur11 ollama[2013775]: runtime/asm_amd64.s:1700 +0x1 fp=0xc0003a8fe8 sp=0xc0003a8fe0 pc=0x561606b99f61 Jan 15 06:53:09 inspur11 ollama[2013775]: created by net/http.(*connReader).startBackgroundRead in goroutine 659 Jan 15 06:53:09 inspur11 ollama[2013775]: net/http/server.go:686 +0xb6 Jan 15 06:53:09 inspur11 ollama[2013775]: rax 0x0 Jan 15 06:53:09 inspur11 ollama[2013775]: rbx 0x7f9a943ae080 Jan 15 06:53:09 inspur11 ollama[2013775]: rcx 0x7f9a944459fc Jan 15 06:53:09 inspur11 ollama[2013775]: rdx 0x6 Jan 15 06:53:09 inspur11 ollama[2013775]: rdi 0x26b7b6 Jan 15 06:53:09 inspur11 ollama[2013775]: rsi 0x26b7b6 Jan 15 06:53:09 inspur11 ollama[2013775]: rbp 0x26b7b6 Jan 15 06:53:09 inspur11 ollama[2013775]: rsp 0x7ffddc25f7d0 Jan 15 06:53:09 inspur11 ollama[2013775]: r8 0x7ffddc25f8a0 Jan 15 06:53:09 inspur11 ollama[2013775]: r9 0x5 Jan 15 06:53:09 inspur11 ollama[2013775]: r10 0x8 Jan 15 06:53:09 inspur11 ollama[2013775]: r11 0x246 Jan 15 06:53:09 inspur11 ollama[2013775]: r12 0x6 Jan 15 06:53:09 inspur11 ollama[2013775]: r13 0x16 Jan 15 06:53:09 inspur11 ollama[2013775]: r14 0x1 Jan 15 06:53:09 inspur11 ollama[2013775]: r15 0x7f9a300063f0 Jan 15 06:53:09 inspur11 ollama[2013775]: rip 0x7f9a944459fc Jan 15 06:53:09 inspur11 ollama[2013775]: rflags 0x246 Jan 15 06:53:09 inspur11 ollama[2013775]: cs 0x33 Jan 15 06:53:09 inspur11 ollama[2013775]: fs 0x0 Jan 15 06:53:09 inspur11 ollama[2013775]: gs 0x0 ```
Author
Owner

@zengqingfu1442 commented on GitHub (Jan 15, 2025):

@rick-github Can i set a larger input prompt size for ollama? The default size 2048 sometimes is too small.

<!-- gh-comment-id:2591838791 --> @zengqingfu1442 commented on GitHub (Jan 15, 2025): @rick-github Can i set a larger input prompt size for ollama? The default size 2048 sometimes is too small.
Author
Owner

@rick-github commented on GitHub (Jan 15, 2025):

Jan 15 06:53:02 inspur11 ollama[2013775]: llama.cpp:11968: The current context does not support K-shift

https://github.com/ollama/ollama/issues/5975

The workaround increases the context size so allows a large prompt.

<!-- gh-comment-id:2591877207 --> @rick-github commented on GitHub (Jan 15, 2025): ``` Jan 15 06:53:02 inspur11 ollama[2013775]: llama.cpp:11968: The current context does not support K-shift ``` https://github.com/ollama/ollama/issues/5975 The workaround increases the context size so allows a large prompt.
Author
Owner

@zengqingfu1442 commented on GitHub (Jan 15, 2025):

  1. Ok, it seems i need to set the PARAMETER num_ctx 24576 in modelfile and then recreate the deepseek-v3 model.
  2. Another question, it seems the ollma only use at most 50% cpu to run model inference, is there a parameter to set to use 100% cpu?
<!-- gh-comment-id:2591945292 --> @zengqingfu1442 commented on GitHub (Jan 15, 2025): 1. Ok, it seems i need to set the `PARAMETER num_ctx 24576` in modelfile and then recreate the deepseek-v3 model. 2. Another question, it seems the ollma only use at most 50% cpu to run model inference, is there a parameter to set to use 100% cpu?
Author
Owner

@rick-github commented on GitHub (Jan 15, 2025):

Set num_predict too. The K-shift happens when the total input and output tokens exceeds the context window.

ollama will use 100% of the GPU if 100% of the model fits in VRAM. If it doesn't fit all in VRAM part of it will be loaded in system RAM, and then CPU is used for inference computation.

If you find that 100% of the model is loaded in VRAM and only 50% of the GPU is being used, open a new ticket and include full system logs.

<!-- gh-comment-id:2591984460 --> @rick-github commented on GitHub (Jan 15, 2025): Set `num_predict` too. The K-shift happens when the total input and output tokens exceeds the context window. ollama will use 100% of the GPU if 100% of the model fits in VRAM. If it doesn't fit all in VRAM part of it will be loaded in system RAM, and then CPU is used for inference computation. If you find that 100% of the model is loaded in VRAM and only 50% of the GPU is being used, open a new ticket and include full system logs.
Author
Owner

@zengqingfu1442 commented on GitHub (Jan 15, 2025):

There is no GPU on my machine. So i expect ollama to use 100% CPU for model inference.

<!-- gh-comment-id:2592053026 --> @zengqingfu1442 commented on GitHub (Jan 15, 2025): There is no GPU on my machine. So i expect ollama to use 100% CPU for model inference.
Author
Owner

@rick-github commented on GitHub (Jan 15, 2025):

I'm sorry, I misread. Set num_thread in the API call or Modelfile.

<!-- gh-comment-id:2592064853 --> @rick-github commented on GitHub (Jan 15, 2025): I'm sorry, I misread. Set `num_thread` in the API call or Modelfile.
Author
Owner

@zengqingfu1442 commented on GitHub (Jan 15, 2025):

Architecture:             x86_64
  CPU op-mode(s):         32-bit, 64-bit
  Address sizes:          46 bits physical, 57 bits virtual
  Byte Order:             Little Endian
CPU(s):                   112
  On-line CPU(s) list:    0-111
Vendor ID:                GenuineIntel
  Model name:             Intel(R) Xeon(R) Gold 6348 CPU @ 2.60GHz
    CPU family:           6
    Model:                106
    Thread(s) per core:   2
    Core(s) per socket:   28
    Socket(s):            2
    Stepping:             6
    CPU max MHz:          3500.0000
    CPU min MHz:          800.0000
    BogoMIPS:             5200.00

The above is my cpu info. So i need to set PARAMETER num_thread 112 in my modelfile before creating the model?

<!-- gh-comment-id:2592109510 --> @zengqingfu1442 commented on GitHub (Jan 15, 2025): ``` Architecture: x86_64 CPU op-mode(s): 32-bit, 64-bit Address sizes: 46 bits physical, 57 bits virtual Byte Order: Little Endian CPU(s): 112 On-line CPU(s) list: 0-111 Vendor ID: GenuineIntel Model name: Intel(R) Xeon(R) Gold 6348 CPU @ 2.60GHz CPU family: 6 Model: 106 Thread(s) per core: 2 Core(s) per socket: 28 Socket(s): 2 Stepping: 6 CPU max MHz: 3500.0000 CPU min MHz: 800.0000 BogoMIPS: 5200.00 ``` The above is my cpu info. So i need to set `PARAMETER num_thread 112` in my modelfile before creating the model?
Author
Owner

@zengqingfu1442 commented on GitHub (Jan 15, 2025):

i can't find the parameter num_thread in this doc https://github.com/ollama/ollama/blob/main/docs/modelfile.md#parameter

<!-- gh-comment-id:2592113845 --> @zengqingfu1442 commented on GitHub (Jan 15, 2025): i can't find the parameter `num_thread` in this doc https://github.com/ollama/ollama/blob/main/docs/modelfile.md#parameter
Author
Owner

@zengqingfu1442 commented on GitHub (Jan 15, 2025):

FROM /datamnt/deepseek-v3/deepseek-v3.gguf
PARAMETER num_ctx 32768
PARAMETER num_predict 8192
PARAMETER num_thread 112

i set these above parameters but when creating the model, it reports Error: model requires more system memory (870.2 GiB) than is available (746.7 GiB). Can i change the modelfile and then re-apply the new modelfile? don't want to recreate the model cause i need to downgrade ollama to 0.5.4 and then upgrade it to 0.5.5 to run the model.

<!-- gh-comment-id:2592211152 --> @zengqingfu1442 commented on GitHub (Jan 15, 2025): ``` FROM /datamnt/deepseek-v3/deepseek-v3.gguf PARAMETER num_ctx 32768 PARAMETER num_predict 8192 PARAMETER num_thread 112 ``` i set these above parameters but when creating the model, it reports `Error: model requires more system memory (870.2 GiB) than is available (746.7 GiB)`. Can i change the modelfile and then re-apply the new modelfile? don't want to recreate the model cause i need to downgrade ollama to 0.5.4 and then upgrade it to 0.5.5 to run the model.
Author
Owner

@zengqingfu1442 commented on GitHub (Jan 15, 2025):

Set num_predict too. The K-shift happens when the total input and output tokens exceeds the context window.

ollama will use 100% of the GPU if 100% of the model fits in VRAM. If it doesn't fit all in VRAM part of it will be loaded in system RAM, and then CPU is used for inference computation.

If you find that 100% of the model is loaded in VRAM and only 50% of the GPU is being used, open a new ticket and include full system logs.

After i set the num_thread to 112(total cores of cpu on my machine), i call the openai api and no response returned after 15 minutes.

<!-- gh-comment-id:2592533672 --> @zengqingfu1442 commented on GitHub (Jan 15, 2025): > Set `num_predict` too. The K-shift happens when the total input and output tokens exceeds the context window. > > ollama will use 100% of the GPU if 100% of the model fits in VRAM. If it doesn't fit all in VRAM part of it will be loaded in system RAM, and then CPU is used for inference computation. > > If you find that 100% of the model is loaded in VRAM and only 50% of the GPU is being used, open a new ticket and include full system logs. After i set the `num_thread` to 112(total cores of cpu on my machine), i call the openai api and no response returned after 15 minutes.
Author
Owner

@corticalstack commented on GitHub (Jan 15, 2025):

Could the Ollama team also make the Q3 quant of DeepSeek V3 available please?

<!-- gh-comment-id:2593218817 --> @corticalstack commented on GitHub (Jan 15, 2025): Could the Ollama team also make the Q3 quant of DeepSeek V3 available please?
Author
Owner

@Yooki-K commented on GitHub (Feb 6, 2025):

I had configured 4 GPUs instead of 8.
I’m getting the same error when running SIGJNF/deepseek-r1-671b-1.58bit. And I only have 4 A6000(48G)

<!-- gh-comment-id:2639550920 --> @Yooki-K commented on GitHub (Feb 6, 2025): > I had configured 4 GPUs instead of 8. I’m getting the same error when running SIGJNF/deepseek-r1-671b-1.58bit. And I only have 4 A6000(48G)
Author
Owner

@Hugh-yw commented on GitHub (Feb 11, 2025):

GPU:H100 *8 Memory:640GB
@rick-github Hello, I would like to ask why an exception occurs when running ollama run 671b. The model is downloaded through ollama pull.

root@ollama-8cd499f48-6cwdz:/# ollama --version
ollama version is 0.5.1
root@ollama-8cd499f48-6cwdz:/# 
root@ollama-8cd499f48-6cwdz:/# ollama ps
NAME    ID    SIZE    PROCESSOR    UNTIL 
root@ollama-8cd499f48-6cwdz:/# ollama run deepseek-r1:671b --verbose
Error: llama runner process has terminated: GGML_ASSERT(hparams.n_expert <= LLAMA_MAX_EXPERTS) failed
root@ollama-8cd499f48-6cwdz:/# 
root@ollama-8cd499f48-6cwdz:/# ollama list
NAME                ID              SIZE      MODIFIED       
deepseek-r1:671b    739e1b229ad7    404 GB    20 minutes ago    
<!-- gh-comment-id:2649613503 --> @Hugh-yw commented on GitHub (Feb 11, 2025): GPU:H100 *8 Memory:640GB @rick-github Hello, I would like to ask why an exception occurs when running ollama run 671b. The model is downloaded through ollama pull. ``` root@ollama-8cd499f48-6cwdz:/# ollama --version ollama version is 0.5.1 root@ollama-8cd499f48-6cwdz:/# root@ollama-8cd499f48-6cwdz:/# ollama ps NAME ID SIZE PROCESSOR UNTIL root@ollama-8cd499f48-6cwdz:/# ollama run deepseek-r1:671b --verbose Error: llama runner process has terminated: GGML_ASSERT(hparams.n_expert <= LLAMA_MAX_EXPERTS) failed root@ollama-8cd499f48-6cwdz:/# root@ollama-8cd499f48-6cwdz:/# ollama list NAME ID SIZE MODIFIED deepseek-r1:671b 739e1b229ad7 404 GB 20 minutes ago ```
Author
Owner

@moroboshiai commented on GitHub (Feb 11, 2025):

I had configured 4 GPUs instead of 8.

hello,I miss the same error. And I can't find the config file. how to set it?

<!-- gh-comment-id:2649689301 --> @moroboshiai commented on GitHub (Feb 11, 2025): > I had configured 4 GPUs instead of 8. hello,I miss the same error. And I can't find the config file. how to set it?
Author
Owner

@moroboshiai commented on GitHub (Feb 11, 2025):

GPU环境:H100 *8 显存容量:640GB @rick-github 你好,请问下ollama run 671b 时出现异常,模型是通过ollama pull 下载下来的。

root@ollama-8cd499f48-6cwdz:/# ollama --version
ollama version is 0.5.1
root@ollama-8cd499f48-6cwdz:/# 
root@ollama-8cd499f48-6cwdz:/# ollama ps
NAME    ID    SIZE    PROCESSOR    UNTIL 
root@ollama-8cd499f48-6cwdz:/# ollama run deepseek-r1:671b --verbose
Error: llama runner process has terminated: GGML_ASSERT(hparams.n_expert <= LLAMA_MAX_EXPERTS) failed
root@ollama-8cd499f48-6cwdz:/# 
root@ollama-8cd499f48-6cwdz:/# ollama list
NAME                ID              SIZE      MODIFIED       
deepseek-r1:671b    739e1b229ad7    404 GB    20 minutes ago    

the same error...

<!-- gh-comment-id:2649690201 --> @moroboshiai commented on GitHub (Feb 11, 2025): > GPU环境:H100 *8 显存容量:640GB [@rick-github](https://github.com/rick-github) 你好,请问下ollama run 671b 时出现异常,模型是通过ollama pull 下载下来的。 > > ``` > root@ollama-8cd499f48-6cwdz:/# ollama --version > ollama version is 0.5.1 > root@ollama-8cd499f48-6cwdz:/# > root@ollama-8cd499f48-6cwdz:/# ollama ps > NAME ID SIZE PROCESSOR UNTIL > root@ollama-8cd499f48-6cwdz:/# ollama run deepseek-r1:671b --verbose > Error: llama runner process has terminated: GGML_ASSERT(hparams.n_expert <= LLAMA_MAX_EXPERTS) failed > root@ollama-8cd499f48-6cwdz:/# > root@ollama-8cd499f48-6cwdz:/# ollama list > NAME ID SIZE MODIFIED > deepseek-r1:671b 739e1b229ad7 404 GB 20 minutes ago > ``` the same error...
Author
Owner

@Hugh-yw commented on GitHub (Feb 11, 2025):

GPU:H100 *8 Memory:640GB @rick-github Hello, I would like to ask why an exception occurs when running ollama run 671b. The model is downloaded through ollama pull.

root@ollama-8cd499f48-6cwdz:/# ollama --version
ollama version is 0.5.1
root@ollama-8cd499f48-6cwdz:/# 
root@ollama-8cd499f48-6cwdz:/# ollama ps
NAME    ID    SIZE    PROCESSOR    UNTIL 
root@ollama-8cd499f48-6cwdz:/# ollama run deepseek-r1:671b --verbose
Error: llama runner process has terminated: GGML_ASSERT(hparams.n_expert <= LLAMA_MAX_EXPERTS) failed
root@ollama-8cd499f48-6cwdz:/# 
root@ollama-8cd499f48-6cwdz:/# ollama list
NAME                ID              SIZE      MODIFIED       
deepseek-r1:671b    739e1b229ad7    404 GB    20 minutes ago    

Upgrade the ollama version to the latest 0.5.8 and you can run

root@ollama-b4c49fb7c-7vqm2:/# ollama ps
NAME                ID              SIZE      PROCESSOR    UNTIL              
deepseek-r1:671b    739e1b229ad7    482 GB    100% GPU     4 minutes from now   

But after running for a while, it crashed

llama.cpp:11942: The current context does not support K-shift
SIGSEGV: segmentation violation
PC=0x7ff52224ec57 m=10 sigcode=1 addr=0x228803fa4
signal arrived during cgo execution

goroutine 6 gp=0xc0004fba40 m=10 mp=0xc000680008 [syscall]:
runtime.cgocall(0x558853ebe120, 0xc000228ba0)
        runtime/cgocall.go:167 +0x4b fp=0xc000228b78 sp=0xc000228b40 pc=0x558853316aab
github.com/ollama/ollama/llama._Cfunc_llama_decode(0x7ff1cd8bdfa0, {0x1, 0x7ff1cdd26f50, 0x0, 0x0, 0x7ff1ce3dec30, 0x7ff1ce3e0c40, 0x7ff1cded3650, 0x7ff15d1fb7a0})
        _cgo_gotypes.go:545 +0x4f fp=0xc000228ba0 sp=0xc000228b78 pc=0x5588536cb94f
github.com/ollama/ollama/llama.(*Context).Decode.func1(0x5588536da94b?, 0x7ff1cd8bdfa0?)
        github.com/ollama/ollama/llama/llama.go:163 +0xf5 fp=0xc000228c90 sp=0xc000228ba0 pc=0x5588536ce675
github.com/ollama/ollama/llama.(*Context).Decode(0x558854d42c20?, 0x0?)
        github.com/ollama/ollama/llama/llama.go:163 +0x13 fp=0xc000228cd8 sp=0xc000228c90 pc=0x5588536ce4f3
github.com/ollama/ollama/llama/runner.(*Server).processBatch(0xc00032d290, 0xc000246240, 0xc000228f20)
        github.com/ollama/ollama/llama/runner/runner.go:434 +0x23f fp=0xc000228ee0 sp=0xc000228cd8 pc=0x5588536d973f
github.com/ollama/ollama/llama/runner.(*Server).run(0xc00032d290, {0x5588544e9fa0, 0xc0006b00a0})
        github.com/ollama/ollama/llama/runner/runner.go:342 +0x1d5 fp=0xc000228fb8 sp=0xc000228ee0 pc=0x5588536d9175
github.com/ollama/ollama/llama/runner.Execute.gowrap2()
        github.com/ollama/ollama/llama/runner/runner.go:975 +0x28 fp=0xc000228fe0 sp=0xc000228fb8 pc=0x5588536de068
runtime.goexit({})
        runtime/asm_amd64.s:1700 +0x1 fp=0xc000228fe8 sp=0xc000228fe0 pc=0x558853325581
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]:
runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
        runtime/proc.go:424 +0xce fp=0xc0002755e8 sp=0xc0002755c8 pc=0x55885331d1ae
runtime.netpollblock(0xc000275638?, 0x532b3fc6?, 0x88?)
        runtime/netpoll.go:575 +0xf7 fp=0xc000275620 sp=0xc0002755e8 pc=0x5588532e0e17
internal/poll.runtime_pollWait(0x7ff558781e30, 0x72)
        runtime/netpoll.go:351 +0x85 fp=0xc000275640 sp=0xc000275620 pc=0x55885331c4a5
internal/poll.(*pollDesc).wait(0xc00026c200?, 0x900000036?, 0x0)
        internal/poll/fd_poll_runtime.go:84 +0x27 fp=0xc000275668 sp=0xc000275640 pc=0x5588533a3c67
internal/poll.(*pollDesc).waitRead(...)
        internal/poll/fd_poll_runtime.go:89
internal/poll.(*FD).Accept(0xc00026c200)
        internal/poll/fd_unix.go:620 +0x295 fp=0xc000275710 sp=0xc000275668 pc=0x5588533a9035
net.(*netFD).accept(0xc00026c200)
        net/fd_unix.go:172 +0x29 fp=0xc0002757c8 sp=0xc000275710 pc=0x558853412129
net.(*TCPListener).accept(0xc00026a040)
        net/tcpsock_posix.go:159 +0x1e fp=0xc000275818 sp=0xc0002757c8 pc=0x558853427d9e
net.(*TCPListener).Accept(0xc00026a040)
        net/tcpsock.go:372 +0x30 fp=0xc000275848 sp=0xc000275818 pc=0x558853426c50
net/http.(*onceCloseListener).Accept(0xc00071a000?)
        <autogenerated>:1 +0x24 fp=0xc000275860 sp=0xc000275848 pc=0x558853670ec4
net/http.(*Server).Serve(0xc0007525a0, {0x5588544e7c50, 0xc00026a040})
        net/http/server.go:3330 +0x30c fp=0xc000275990 sp=0xc000275860 pc=0x558853648e4c
github.com/ollama/ollama/llama/runner.Execute({0xc0002b6010?, 0x0?, 0x0?})
        github.com/ollama/ollama/llama/runner/runner.go:996 +0x11a9 fp=0xc000275d30 sp=0xc000275990 pc=0x5588536ddd49
github.com/ollama/ollama/cmd.NewCLI.func2(0xc00026e500?, {0x5588540aa01a?, 0x4?, 0x5588540aa01e?})
        github.com/ollama/ollama/cmd/cmd.go:1277 +0x45 fp=0xc000275d58 sp=0xc000275d30 pc=0x558853ebd685
github.com/spf13/cobra.(*Command).execute(0xc0006f6308, {0xc00026e700, 0x10, 0x10})
        github.com/spf13/cobra@v1.7.0/command.go:940 +0x862 fp=0xc000275e78 sp=0xc000275d58 pc=0x55885348ae62
github.com/spf13/cobra.(*Command).ExecuteC(0xc000641b08)
        github.com/spf13/cobra@v1.7.0/command.go:1068 +0x3a5 fp=0xc000275f30 sp=0xc000275e78 pc=0x55885348b6a5
github.com/spf13/cobra.(*Command).Execute(...)
        github.com/spf13/cobra@v1.7.0/command.go:992
github.com/spf13/cobra.(*Command).ExecuteContext(...)
        github.com/spf13/cobra@v1.7.0/command.go:985
main.main()
        github.com/ollama/ollama/main.go:12 +0x4d fp=0xc000275f50 sp=0xc000275f30 pc=0x558853ebda0d
runtime.main()
        runtime/proc.go:272 +0x29d fp=0xc000275fe0 sp=0xc000275f50 pc=0x5588532e84bd
runtime.goexit({})
        runtime/asm_amd64.s:1700 +0x1 fp=0xc000275fe8 sp=0xc000275fe0 pc=0x558853325581
<!-- gh-comment-id:2649722359 --> @Hugh-yw commented on GitHub (Feb 11, 2025): > GPU:H100 *8 Memory:640GB [@rick-github](https://github.com/rick-github) Hello, I would like to ask why an exception occurs when running ollama run 671b. The model is downloaded through ollama pull. > > ``` > root@ollama-8cd499f48-6cwdz:/# ollama --version > ollama version is 0.5.1 > root@ollama-8cd499f48-6cwdz:/# > root@ollama-8cd499f48-6cwdz:/# ollama ps > NAME ID SIZE PROCESSOR UNTIL > root@ollama-8cd499f48-6cwdz:/# ollama run deepseek-r1:671b --verbose > Error: llama runner process has terminated: GGML_ASSERT(hparams.n_expert <= LLAMA_MAX_EXPERTS) failed > root@ollama-8cd499f48-6cwdz:/# > root@ollama-8cd499f48-6cwdz:/# ollama list > NAME ID SIZE MODIFIED > deepseek-r1:671b 739e1b229ad7 404 GB 20 minutes ago > ``` Upgrade the ollama version to the latest 0.5.8 and you can run ``` root@ollama-b4c49fb7c-7vqm2:/# ollama ps NAME ID SIZE PROCESSOR UNTIL deepseek-r1:671b 739e1b229ad7 482 GB 100% GPU 4 minutes from now ``` But after running for a while, it crashed ``` llama.cpp:11942: The current context does not support K-shift SIGSEGV: segmentation violation PC=0x7ff52224ec57 m=10 sigcode=1 addr=0x228803fa4 signal arrived during cgo execution goroutine 6 gp=0xc0004fba40 m=10 mp=0xc000680008 [syscall]: runtime.cgocall(0x558853ebe120, 0xc000228ba0) runtime/cgocall.go:167 +0x4b fp=0xc000228b78 sp=0xc000228b40 pc=0x558853316aab github.com/ollama/ollama/llama._Cfunc_llama_decode(0x7ff1cd8bdfa0, {0x1, 0x7ff1cdd26f50, 0x0, 0x0, 0x7ff1ce3dec30, 0x7ff1ce3e0c40, 0x7ff1cded3650, 0x7ff15d1fb7a0}) _cgo_gotypes.go:545 +0x4f fp=0xc000228ba0 sp=0xc000228b78 pc=0x5588536cb94f github.com/ollama/ollama/llama.(*Context).Decode.func1(0x5588536da94b?, 0x7ff1cd8bdfa0?) github.com/ollama/ollama/llama/llama.go:163 +0xf5 fp=0xc000228c90 sp=0xc000228ba0 pc=0x5588536ce675 github.com/ollama/ollama/llama.(*Context).Decode(0x558854d42c20?, 0x0?) github.com/ollama/ollama/llama/llama.go:163 +0x13 fp=0xc000228cd8 sp=0xc000228c90 pc=0x5588536ce4f3 github.com/ollama/ollama/llama/runner.(*Server).processBatch(0xc00032d290, 0xc000246240, 0xc000228f20) github.com/ollama/ollama/llama/runner/runner.go:434 +0x23f fp=0xc000228ee0 sp=0xc000228cd8 pc=0x5588536d973f github.com/ollama/ollama/llama/runner.(*Server).run(0xc00032d290, {0x5588544e9fa0, 0xc0006b00a0}) github.com/ollama/ollama/llama/runner/runner.go:342 +0x1d5 fp=0xc000228fb8 sp=0xc000228ee0 pc=0x5588536d9175 github.com/ollama/ollama/llama/runner.Execute.gowrap2() github.com/ollama/ollama/llama/runner/runner.go:975 +0x28 fp=0xc000228fe0 sp=0xc000228fb8 pc=0x5588536de068 runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc000228fe8 sp=0xc000228fe0 pc=0x558853325581 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]: runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?) runtime/proc.go:424 +0xce fp=0xc0002755e8 sp=0xc0002755c8 pc=0x55885331d1ae runtime.netpollblock(0xc000275638?, 0x532b3fc6?, 0x88?) runtime/netpoll.go:575 +0xf7 fp=0xc000275620 sp=0xc0002755e8 pc=0x5588532e0e17 internal/poll.runtime_pollWait(0x7ff558781e30, 0x72) runtime/netpoll.go:351 +0x85 fp=0xc000275640 sp=0xc000275620 pc=0x55885331c4a5 internal/poll.(*pollDesc).wait(0xc00026c200?, 0x900000036?, 0x0) internal/poll/fd_poll_runtime.go:84 +0x27 fp=0xc000275668 sp=0xc000275640 pc=0x5588533a3c67 internal/poll.(*pollDesc).waitRead(...) internal/poll/fd_poll_runtime.go:89 internal/poll.(*FD).Accept(0xc00026c200) internal/poll/fd_unix.go:620 +0x295 fp=0xc000275710 sp=0xc000275668 pc=0x5588533a9035 net.(*netFD).accept(0xc00026c200) net/fd_unix.go:172 +0x29 fp=0xc0002757c8 sp=0xc000275710 pc=0x558853412129 net.(*TCPListener).accept(0xc00026a040) net/tcpsock_posix.go:159 +0x1e fp=0xc000275818 sp=0xc0002757c8 pc=0x558853427d9e net.(*TCPListener).Accept(0xc00026a040) net/tcpsock.go:372 +0x30 fp=0xc000275848 sp=0xc000275818 pc=0x558853426c50 net/http.(*onceCloseListener).Accept(0xc00071a000?) <autogenerated>:1 +0x24 fp=0xc000275860 sp=0xc000275848 pc=0x558853670ec4 net/http.(*Server).Serve(0xc0007525a0, {0x5588544e7c50, 0xc00026a040}) net/http/server.go:3330 +0x30c fp=0xc000275990 sp=0xc000275860 pc=0x558853648e4c github.com/ollama/ollama/llama/runner.Execute({0xc0002b6010?, 0x0?, 0x0?}) github.com/ollama/ollama/llama/runner/runner.go:996 +0x11a9 fp=0xc000275d30 sp=0xc000275990 pc=0x5588536ddd49 github.com/ollama/ollama/cmd.NewCLI.func2(0xc00026e500?, {0x5588540aa01a?, 0x4?, 0x5588540aa01e?}) github.com/ollama/ollama/cmd/cmd.go:1277 +0x45 fp=0xc000275d58 sp=0xc000275d30 pc=0x558853ebd685 github.com/spf13/cobra.(*Command).execute(0xc0006f6308, {0xc00026e700, 0x10, 0x10}) github.com/spf13/cobra@v1.7.0/command.go:940 +0x862 fp=0xc000275e78 sp=0xc000275d58 pc=0x55885348ae62 github.com/spf13/cobra.(*Command).ExecuteC(0xc000641b08) github.com/spf13/cobra@v1.7.0/command.go:1068 +0x3a5 fp=0xc000275f30 sp=0xc000275e78 pc=0x55885348b6a5 github.com/spf13/cobra.(*Command).Execute(...) github.com/spf13/cobra@v1.7.0/command.go:992 github.com/spf13/cobra.(*Command).ExecuteContext(...) github.com/spf13/cobra@v1.7.0/command.go:985 main.main() github.com/ollama/ollama/main.go:12 +0x4d fp=0xc000275f50 sp=0xc000275f30 pc=0x558853ebda0d runtime.main() runtime/proc.go:272 +0x29d fp=0xc000275fe0 sp=0xc000275f50 pc=0x5588532e84bd runtime.goexit({}) runtime/asm_amd64.s:1700 +0x1 fp=0xc000275fe8 sp=0xc000275fe0 pc=0x558853325581 ```
Author
Owner

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

llama.cpp:11942: The current context does not support K-shift

https://github.com/ollama/ollama/issues/5975

<!-- gh-comment-id:2650315709 --> @rick-github commented on GitHub (Feb 11, 2025): ``` llama.cpp:11942: The current context does not support K-shift ``` https://github.com/ollama/ollama/issues/5975
Author
Owner

@zengqingfu1442 commented on GitHub (Feb 13, 2025):

@rick-github If i want to use only number 4,5,6,7 GPUs on my machine, can i set CUDA_VISIBLE_DEVICES in /etc/systemd/system/ollama.service like this?

[Service]
ExecStart=/usr/local/bin/ollama serve
User=ollama
Group=ollama
Restart=always
RestartSec=3
...
Environment="CUDA_VISIBLE_DEVICES=4,5,6,7"
<!-- gh-comment-id:2655427187 --> @zengqingfu1442 commented on GitHub (Feb 13, 2025): @rick-github If i want to use only number 4,5,6,7 GPUs on my machine, can i set `CUDA_VISIBLE_DEVICES` in /etc/systemd/system/ollama.service like this? ``` [Service] ExecStart=/usr/local/bin/ollama serve User=ollama Group=ollama Restart=always RestartSec=3 ... Environment="CUDA_VISIBLE_DEVICES=4,5,6,7" ```
Author
Owner

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

Yes.

<!-- gh-comment-id:2655977937 --> @rick-github commented on GitHub (Feb 13, 2025): Yes.
Author
Owner

@zengqingfu1442 commented on GitHub (Feb 13, 2025):

@rick-github Image

I use ollama 0.5.7 to run DeepSeek-R1-Q4_K_M from https://huggingface.co/unsloth/DeepSeek-R1-GGUF/tree/main/DeepSeek-R1-Q4_K_M, and put 12 layers onto GPU, the others on the CPU. When runing the inference, the CPU leverage rate is near 50%, but the GPU is only 0%-1%. And the generating speed is only about 3.7 tokens/s. So, how can i improve the speed?Thanks

<!-- gh-comment-id:2656052403 --> @zengqingfu1442 commented on GitHub (Feb 13, 2025): @rick-github ![Image](https://github.com/user-attachments/assets/8e924ea8-bb9c-40fd-9933-9bf8eb5b000e) I use ollama 0.5.7 to run DeepSeek-R1-Q4_K_M from https://huggingface.co/unsloth/DeepSeek-R1-GGUF/tree/main/DeepSeek-R1-Q4_K_M, and put 12 layers onto GPU, the others on the CPU. When runing the inference, the CPU leverage rate is near 50%, but the GPU is only 0%-1%. And the generating speed is only about 3.7 tokens/s. So, how can i improve the speed?Thanks
Author
Owner

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

So, how can i improve the speed?

From your screenshot, not all of VRAM is being used. What parameters have you set?

<!-- gh-comment-id:2656065214 --> @rick-github commented on GitHub (Feb 13, 2025): > So, how can i improve the speed? From your screenshot, not all of VRAM is being used. What parameters have you set?
Author
Owner

@zengqingfu1442 commented on GitHub (Feb 13, 2025):

So, how can i improve the speed?

From your screenshot, not all of VRAM is being used. What parameters have you set?

Here is the modelfile.

FROM /root/deepseek-r1/DeepSeek-R1-Q4_K_M.gguf
PARAMETER num_gpu 12
PARAMETER num_ctx 2048
PARAMETER num_predict 8192
PARAMETER temperature 0.6
TEMPLATE "<|User|>{{ .System }} {{ .Prompt }}<|Assistant|>"
<!-- gh-comment-id:2656105640 --> @zengqingfu1442 commented on GitHub (Feb 13, 2025): > > So, how can i improve the speed? > > From your screenshot, not all of VRAM is being used. What parameters have you set? Here is the modelfile. ``` FROM /root/deepseek-r1/DeepSeek-R1-Q4_K_M.gguf PARAMETER num_gpu 12 PARAMETER num_ctx 2048 PARAMETER num_predict 8192 PARAMETER temperature 0.6 TEMPLATE "<|User|>{{ .System }} {{ .Prompt }}<|Assistant|>" ```
Author
Owner

@zengqingfu1442 commented on GitHub (Feb 13, 2025):

And the /etc/systemd/system/ollama.serivce file is

[Unit]
Description=Ollama Service
After=network-online.target

[Service]
ExecStart=/usr/local/bin/ollama serve
User=ollama
Group=ollama
Restart=always
RestartSec=3
Environment="PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/anaconda3/bin"
Environment="OLLAMA_HOST=0.0.0.0"
Environment="OLLAMA_MODELS=/root/ollama-models"
Environment="OLLAMA_KEEP_ALIVE=-1"
Environment="OLLAMA_FLASH_ATTENTION=1"
Environment="CUDA_VISIBLE_DEVICES=2,3,4,5,6,7"

[Install]
WantedBy=default.target
<!-- gh-comment-id:2656109422 --> @zengqingfu1442 commented on GitHub (Feb 13, 2025): And the `/etc/systemd/system/ollama.serivce` file is ``` [Unit] Description=Ollama Service After=network-online.target [Service] ExecStart=/usr/local/bin/ollama serve User=ollama Group=ollama Restart=always RestartSec=3 Environment="PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/anaconda3/bin" Environment="OLLAMA_HOST=0.0.0.0" Environment="OLLAMA_MODELS=/root/ollama-models" Environment="OLLAMA_KEEP_ALIVE=-1" Environment="OLLAMA_FLASH_ATTENTION=1" Environment="CUDA_VISIBLE_DEVICES=2,3,4,5,6,7" [Install] WantedBy=default.target ```
Author
Owner

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

You can increase speed by putting more layers in VRAM.

<!-- gh-comment-id:2656110892 --> @rick-github commented on GitHub (Feb 13, 2025): You can increase speed by putting more layers in VRAM.
Author
Owner

@zengqingfu1442 commented on GitHub (Feb 13, 2025):

You can increase speed by putting more layers in VRAM.

But one RTX 4090 GPU can only be put on up to 2 layers.

<!-- gh-comment-id:2656114469 --> @zengqingfu1442 commented on GitHub (Feb 13, 2025): > You can increase speed by putting more layers in VRAM. But one RTX 4090 GPU can only be put on up to 2 layers.
Author
Owner

@zengqingfu1442 commented on GitHub (Feb 13, 2025):

Six 4090 GPU is 12 layers at most.

<!-- gh-comment-id:2656121316 --> @zengqingfu1442 commented on GitHub (Feb 13, 2025): Six 4090 GPU is 12 layers at most.
Author
Owner

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

Then you need more VRAM or a smaller model to increase speed.

<!-- gh-comment-id:2656124140 --> @rick-github commented on GitHub (Feb 13, 2025): Then you need more VRAM or a smaller model to increase speed.
Author
Owner

@zengqingfu1442 commented on GitHub (Feb 13, 2025):

https://github.com/ollama/ollama/blob/main/docs/faq.md#how-can-i-set-the-quantization-type-for-the-kv-cache Would this OLLAMA_KV_CACHE_TYPE parameter in ollama increase the speed if i quant the KV cache as 4 bit q4_0?

<!-- gh-comment-id:2656129699 --> @zengqingfu1442 commented on GitHub (Feb 13, 2025): https://github.com/ollama/ollama/blob/main/docs/faq.md#how-can-i-set-the-quantization-type-for-the-kv-cache Would this `OLLAMA_KV_CACHE_TYPE` parameter in ollama increase the speed if i quant the KV cache as 4 bit `q4_0`?
Author
Owner

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

Currently, KV quantization in ollama needs flash attention. Flash attention is not supported for deepseek architecture.

<!-- gh-comment-id:2656138696 --> @rick-github commented on GitHub (Feb 13, 2025): Currently, KV quantization in ollama needs flash attention. Flash attention is not supported for deepseek architecture.
Author
Owner

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

Try this: set GGML_CUDA_ENABLE_UNIFIED_MEMORY=1 in server environment. Then try offloading 3 layers per GPU. See here for explanation.

<!-- gh-comment-id:2656145188 --> @rick-github commented on GitHub (Feb 13, 2025): Try this: set `GGML_CUDA_ENABLE_UNIFIED_MEMORY=1` in server environment. Then try offloading 3 layers per GPU. See [here](https://github.com/ollama/ollama/issues/7584#issuecomment-2466715900) for explanation.
Author
Owner

@zengqingfu1442 commented on GitHub (Feb 13, 2025):

Try this: set GGML_CUDA_ENABLE_UNIFIED_MEMORY=1 in server environment. Then try offloading 3 layers per GPU. See here for explanation.

You mean i can offload 3 layers per 4090 GPU after setting GGML_CUDA_ENABLE_UNIFIED_MEMORY=1 in ollama server environment?

<!-- gh-comment-id:2656225534 --> @zengqingfu1442 commented on GitHub (Feb 13, 2025): > Try this: set `GGML_CUDA_ENABLE_UNIFIED_MEMORY=1` in server environment. Then try offloading 3 layers per GPU. See [here](https://github.com/ollama/ollama/issues/7584#issuecomment-2466715900) for explanation. You mean i can offload 3 layers per 4090 GPU after setting GGML_CUDA_ENABLE_UNIFIED_MEMORY=1 in ollama server environment?
Author
Owner

@zengqingfu1442 commented on GitHub (Feb 13, 2025):

Why cannot see the logs of ollama 0.5.7? i remember i can see the logs of ollama when is is 0.5.5.

(py311) qingfu.zeng@inspur18:~/deepseek-r1$ journalctl -u ollama
Hint: You are currently not seeing messages from other users and the system.
      Users in groups 'adm', 'systemd-journal' can see all messages.
      Pass -q to turn off this notice.
-- Logs begin at Thu 2025-01-02 07:41:20 UTC, end at Thu 2025-02-13 10:48:51 UTC. --
-- No entries --
<!-- gh-comment-id:2656319540 --> @zengqingfu1442 commented on GitHub (Feb 13, 2025): Why cannot see the logs of ollama 0.5.7? i remember i can see the logs of ollama when is is 0.5.5. ``` (py311) qingfu.zeng@inspur18:~/deepseek-r1$ journalctl -u ollama Hint: You are currently not seeing messages from other users and the system. Users in groups 'adm', 'systemd-journal' can see all messages. Pass -q to turn off this notice. -- Logs begin at Thu 2025-01-02 07:41:20 UTC, end at Thu 2025-02-13 10:48:51 UTC. -- -- No entries -- ```
Author
Owner

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

Try this: set GGML_CUDA_ENABLE_UNIFIED_MEMORY=1 in server environment. Then try offloading 3 layers per GPU. See here for explanation.

I use ktransformers 0.2.0+14090+CPU, and the speed is about 5-8 token/s, larger than ollama 0.5.7+64090+cpu which is about 3.7 token/s. Same model, same machine. @rick-github

<!-- gh-comment-id:2664821274 --> @zengqingfu1442 commented on GitHub (Feb 18, 2025): > Try this: set `GGML_CUDA_ENABLE_UNIFIED_MEMORY=1` in server environment. Then try offloading 3 layers per GPU. See [here](https://github.com/ollama/ollama/issues/7584#issuecomment-2466715900) for explanation. I use ktransformers 0.2.0+1*4090+CPU, and the speed is about 5-8 token/s, larger than ollama 0.5.7+6*4090+cpu which is about 3.7 token/s. Same model, same machine. @rick-github
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/ollama#67326