You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have successfully tested Kafka according to the kafka_guide.
But now how do I use the zoo.serving.client to push image data for Kafka, zoo.serving.client.InputQueue superclass API don't implement KafkaProducer.
classAPI:
""" base level of API control select data pipeline here, Redis/Kafka/... interface preserved for API class """def__init__(self, host=None, port=None, name="serving_stream"):
self.name=nameself.host=hostifhostelse"localhost"self.port=portifportelse"6379"self.db=redis.StrictRedis(host=self.host,
port=self.port, db=0)
try:
self.db.xgroup_create(name, "serving")
exceptException:
print("redis group exist, will not create new one")
The text was updated successfully, but these errors were encountered:
There are two new files(FlinkKafkaSink.scalaFlinkKafkaSource.scala) in #4155 (comment). Next, do I need to recompile the source code to replace the original zoo.jar.
Yes, you need to build a jar with these 2 files.
The function is about to merge to BigDL 2.0 in PR intel-analytics/ipex-llm#3277, you could try it in BigDL, the new dev of code would be at BigDL project
Analytics Zoo Version: 0.11.0
I have successfully tested Kafka according to the kafka_guide.
But now how do I use the
zoo.serving.client
to push image data for Kafka,zoo.serving.client.InputQueue
superclassAPI
don't implement KafkaProducer.The text was updated successfully, but these errors were encountered: