memphis.py icon indicating copy to clipboard operation
memphis.py copied to clipboard

Python client for Memphis. Memphis is an event processing platform

Results 16 memphis.py issues
Sort by recently updated
recently updated
newest added

### Describe the bug Hey, I was trying to produce a protobuf dict to a station without schema attached and received the following error: ``` $ python3 producer-protobuf.py memphis: Unsupported...

bug
good first issue

I have created a stopConsume method with self parameter, refefered in the issue #139 ``` def stopConsume(self): if self.t_consume is not None: self.t_consume.cancel() self.t_consume = None ``` **__In this code...

We want users to make use of the consumer.consume function, will be able to stop the automatic consumption. So we need a new function consumer.stopConsume which will be responsible to...

Currently, to destroy a consumer, you first have to create a consumer object.: ```python print("Create consumer") consumer = await memphis.consumer(station_name=STATION, consumer_name="test-consumer-2", consumer_group="", start_consume_from_sequence=1) await consumer.destroy() ``` This can be problematic...

Feature Request

Currently, producers and consumers all share a single connection to the Memphis broker. The user creates a `Memphis` object and calls `connect()` to establish a connection. When producers and consumers...

Feature Request

The [current implementation](https://github.com/memphisdev/memphis.py/blob/master/memphis/producer.py#L154) for asynchronous production of messages doesn't provide an error handling mechanism. We could provide a callback function through the [`add_done_callback()`](https://docs.python.org/3/library/asyncio-task.html#asyncio.Task.add_done_callback) method to the tasks that checks the...

Feature Request

Running Pylint on master generates the following error: ``` memphis/memphis.py:450:23: E1101: Module 'google.protobuf.descriptor_pb2' has no 'FileDescriptorSet' member (no-member) ``` We should fix this or disable it on a per-line basis...

Hey guys, (memphis-py==0.2.7) I just finished deploying docker-compose demo, played with schema, produced and consumed messages. I would like to contribute and learn project more. Are there any priorities or...