Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
gwcelery
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
emfollow
gwcelery
Commits
a948006c
Commit
a948006c
authored
2 years ago
by
Cody Messick
Browse files
Options
Downloads
Patches
Plain Diff
Fix mistake in kafka bootstep made when rebasing against kafka MR
parent
1f94f450
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gwcelery/kafka/bootsteps.py
+28
-45
28 additions, 45 deletions
gwcelery/kafka/bootsteps.py
with
28 additions
and
45 deletions
gwcelery/kafka/bootsteps.py
+
28
−
45
View file @
a948006c
import
json
from
hop
import
stream
from
celery
import
bootsteps
from
celery.concurrency
import
solo
from
celery.utils.log
import
get_logger
from
hop.models
import
Blob
from
hop
import
stream
from
kombu
import
Consumer
,
Exchange
,
Queue
__all__
=
(
'
Producer
'
,)
...
...
@@ -19,14 +18,22 @@ class KafkaBootStep(bootsteps.ConsumerStep):
``--kafka`` command line option.
"""
def
__init__
(
self
,
parent
,
kafka
=
False
,
**
kwargs
):
self
.
enabled
=
bool
(
kafka
)
def
include_if
(
self
,
consumer
):
"""
Only include this bootstep in workers that are configured to listen
to the ``kafka`` queue.
"""
return
'
kafka
'
in
consumer
.
app
.
amqp
.
queues
def
start
(
self
,
parent
):
super
().
start
(
parent
)
def
create
(
self
,
consumer
):
if
not
isinstance
(
consumer
.
pool
,
solo
.
TaskPool
):
raise
RuntimeError
(
'
The Kafka broker only works with the
"
solo
"
task pool.
'
'
Start the worker with
"
--queues=kafka --pool=solo
"
.
'
)
def
start
(
self
,
consumer
):
log
.
info
(
f
'
Starting
{
self
.
name
}
, topic:
{
self
.
topic_url
}
'
)
def
stop
(
self
,
parent
):
def
stop
(
self
,
consumer
):
log
.
info
(
f
'
Closing connection to topic:
{
self
.
topic_url
}
'
)
...
...
@@ -35,39 +42,15 @@ class Producer(KafkaBootStep):
name
=
'
Kafka Avro producer
'
def
__init__
(
self
,
parent
,
kafka
=
False
,
**
kwargs
):
super
().
__init__
(
parent
,
**
kwargs
)
self
.
topic_url
=
parent
.
app
.
conf
[
'
scimma_broker_url
'
]
+
\
parent
.
app
.
conf
[
'
scimma_topic_name
'
]
def
start
(
self
,
parent
):
super
().
start
(
parent
)
self
.
_s
=
stream
.
open
(
self
.
topic_url
,
'
w
'
)
def
stop
(
self
,
parent
):
super
().
stop
(
parent
)
self
.
_s
.
close
()
def
get_consumers
(
self
,
parent
,
channel
):
queue
=
Queue
(
parent
.
app
.
conf
[
'
kafka_queue_name
'
],
Exchange
(
parent
.
app
.
conf
[
'
kafka_queue_exchange_name
'
]),
parent
.
app
.
conf
[
'
kafka_queue_routing_key
'
])
return
[
Consumer
(
channel
,
queues
=
[
queue
],
on_message
=
self
.
on_message
,
accept
=
[
'
pickle
'
,
'
json
'
])]
def
on_message
(
self
,
message
):
payload
=
message
.
decode
()
log
.
info
(
'
Received message: {0!r} {props!r} rawlen={s}
'
.
format
(
payload
,
props
=
message
.
properties
,
s
=
len
(
message
.
body
),
)
)
log
.
info
(
f
'
Sending message to
{
self
.
topic_url
}
'
)
# FIXME: use the hop client's Avro implementation when it's ready
msg_blob
=
Blob
(
json
.
dumps
(
message
.
payload
))
self
.
_s
.
write
(
msg_blob
)
message
.
ack
()
def
__init__
(
self
,
consumer
,
**
kwargs
):
super
().
__init__
(
consumer
,
**
kwargs
)
self
.
topic_url
=
consumer
.
app
.
conf
[
'
scimma_broker_url
'
]
+
\
consumer
.
app
.
conf
[
'
scimma_topic_name
'
]
def
start
(
self
,
consumer
):
super
().
start
(
consumer
)
consumer
.
app
.
conf
[
'
hop_stream
'
]
=
self
.
_s
=
stream
.
open
(
self
.
topic_url
,
'
w
'
)
def
stop
(
self
,
consumer
):
super
().
stop
(
consumer
)
consumer
.
app
.
conf
[
'
hop_stream
'
].
close
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment