Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ Highly resilient, distributed architecture, cloud-native, and run on any Kuberne
$ pip3 install memphis-py
```

Notice: you may receive an error about the "mmh3" package, to solve it please install python3-devel
```sh
$ sudo yum install python3-devel
```

## Importing

```python
Expand Down
2 changes: 1 addition & 1 deletion memphis/memphis.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
class Memphis:
MAX_BATCH_SIZE = 5000
MEMPHIS_GLOBAL_ACCOUNT_NAME = "$memphis"
SEED = 1234
SEED = 31

def __init__(self):
self.is_connection_active = False
Expand Down