Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
8e3b4073
Commit
8e3b4073
authored
Sep 19, 2016
by
Hongchao Deng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
stop etcd watcher when watch chan is closed
parent
4b7f0c83
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
6 deletions
+16
-6
watcher.go
pkg/storage/etcd3/watcher.go
+16
-6
No files found.
pkg/storage/etcd3/watcher.go
View file @
8e3b4073
...
...
@@ -99,7 +99,8 @@ func (w *watcher) createWatchChan(ctx context.Context, key string, rev int64, re
}
func
(
wc
*
watchChan
)
run
()
{
go
wc
.
startWatching
()
watchClosedCh
:=
make
(
chan
struct
{})
go
wc
.
startWatching
(
watchClosedCh
)
var
resultChanWG
sync
.
WaitGroup
resultChanWG
.
Add
(
1
)
...
...
@@ -108,7 +109,6 @@ func (wc *watchChan) run() {
select
{
case
err
:=
<-
wc
.
errChan
:
if
err
==
context
.
Canceled
{
wc
.
cancel
()
// just in case
break
}
errResult
:=
parseError
(
err
)
...
...
@@ -119,10 +119,15 @@ func (wc *watchChan) run() {
case
<-
wc
.
ctx
.
Done
()
:
// user has given up all results
}
}
wc
.
cancel
()
case
<-
wc
.
ctx
.
Done
()
:
case
<-
watchClosedCh
:
case
<-
wc
.
ctx
.
Done
()
:
// user cancel
}
// we need to wait until resultChan wouldn't be sent to anymore
// We use wc.ctx to reap all goroutines. Under whatever condition, we should stop them all.
// It's fine to double cancel.
wc
.
cancel
()
// we need to wait until resultChan wouldn't be used anymore
resultChanWG
.
Wait
()
close
(
wc
.
resultChan
)
}
...
...
@@ -157,7 +162,7 @@ func (wc *watchChan) sync() error {
// startWatching does:
// - get current objects if initialRev=0; set initialRev to current rev
// - watch on given key and send events to process.
func
(
wc
*
watchChan
)
startWatching
()
{
func
(
wc
*
watchChan
)
startWatching
(
watchClosedCh
chan
struct
{}
)
{
if
wc
.
initialRev
==
0
{
if
err
:=
wc
.
sync
();
err
!=
nil
{
glog
.
Errorf
(
"failed to sync with latest state: %v"
,
err
)
...
...
@@ -182,6 +187,11 @@ func (wc *watchChan) startWatching() {
wc
.
sendEvent
(
parseEvent
(
e
))
}
}
// When we come to this point, it's only possible that client side ends the watch.
// e.g. cancel the context, close the client.
// If this watch chan is broken and context isn't cancelled, other goroutines will still hang.
// We should notify the main thread that this goroutine has exited.
close
(
watchClosedCh
)
}
// processEvent processes events from etcd watcher and sends results to resultChan.
...
...
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