Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
scheduler
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Odysseus
scheduler
Commits
e81211b2
Commit
e81211b2
authored
Feb 19, 2024
by
vicotor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add retry for connect kafka
parent
5086d64a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
4 deletions
+13
-4
node.go
server/node.go
+13
-4
No files found.
server/node.go
View file @
e81211b2
...
...
@@ -82,11 +82,20 @@ func (n *Node) Loop(idx int) {
// monitor kafka
taskCh
:=
make
(
chan
*
odysseus
.
TaskContent
,
1000
)
ctx
,
cancel
:=
context
.
WithCancel
(
context
.
Background
())
client
,
err
:=
n
.
attachKafkaConsumer
(
ctx
,
taskCh
)
if
err
!=
nil
{
log
.
WithError
(
err
)
.
Error
(
"attach kafka consumer failed"
)
return
var
client
sarama
.
ConsumerGroup
var
err
error
for
{
client
,
err
=
n
.
attachKafkaConsumer
(
ctx
,
taskCh
)
if
err
!=
nil
{
log
.
WithError
(
err
)
.
Error
(
"attach kafka consumer failed try again later"
)
time
.
Sleep
(
time
.
Second
)
continue
}
break
}
log
.
WithField
(
"routine"
,
idx
)
.
Info
(
"attach kafka consumer success"
)
postResult
:=
func
(
task
*
odysseus
.
TaskContent
,
result
*
odysseus
.
TaskResponse
)
error
{
d
,
_
:=
proto
.
Marshal
(
result
)
err
:=
utils
.
Post
(
task
.
TaskCallback
,
d
)
...
...
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