Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
ollama
Commits
c9f98622
"docs/vscode:/vscode.git/clone" did not exist on "69220e0c97c70d93345fb875f176c5743cb568cd"
Unverified
Commit
c9f98622
authored
May 06, 2024
by
Jeffrey Morgan
Committed by
GitHub
May 06, 2024
Browse files
Skip scheduling cancelled requests, always reload unloaded runners (#4189)
parent
aa93423f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
server/sched.go
server/sched.go
+10
-0
No files found.
server/sched.go
View file @
c9f98622
...
...
@@ -100,6 +100,12 @@ func (s *Scheduler) processPending(ctx context.Context) {
return
case
pending
:=
<-
s
.
pendingReqCh
:
// Block other requests until we get this pending request running
if
pending
.
ctx
.
Err
()
!=
nil
{
slog
.
Debug
(
"pending request cancelled or timed out, skipping scheduling"
)
continue
}
for
{
var
runnerToExpire
*
runnerRef
s
.
loadedMu
.
Lock
()
...
...
@@ -435,6 +441,10 @@ func (runner *runnerRef) needsReload(ctx context.Context, req *LlmRequest) bool
timeout
=
2
*
time
.
Minute
// Initial load can take a long time for big models on slow systems...
}
if
runner
.
Options
==
nil
{
return
true
}
// Don't reload runner if num_gpu=-1 was provided
optsExisting
:=
runner
.
Options
.
Runner
optsNew
:=
req
.
opts
.
Runner
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment