-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
implementing maxProducersByConnection and maxConsumerByConnection (#188)
* implementing maxProducersByConnection and maxConsumerByConnection * fixing indexes issue in client * improving connection management in superstream_consumer * adding a sleep before reconnecting * fixing bug in available slot algorithm * fixing bug in available slot algorithm * bumping version for releasing
- Loading branch information
1 parent
35b8328
commit da80481
Showing
8 changed files
with
112 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,19 @@ | ||
{ | ||
"RabbitMQ": { | ||
"Host": "localhost", | ||
"Username": "guest", | ||
"Password": "guest", | ||
"Host": "34.147.210.193", | ||
"Username": "default_user_4RVgi_YtwKGw7xlGPIi", | ||
"Password": "3urSCJfSnaZal6d_VsCSJRrUwar_iTOA", | ||
"Port": 5552, | ||
"Virtualhost": "/", | ||
"LoadBalancer": true, | ||
"SuperStream": false, | ||
"SuperStream": true, | ||
"MaxPublishersByConnection": 256, | ||
"MaxSubscribersByConnection": 256, | ||
"Producers": 3, | ||
"Consumers": 3, | ||
"DelayDuringSendMs":0, | ||
"MessagesToSend": 100000, | ||
"StreamName": "PythonClientTest", | ||
"MessagesToSend": 10000000, | ||
"StreamName": "invoices", | ||
"Logging": "" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "rstream" | ||
version = "0.18.0" | ||
version = "0.19.0" | ||
description = "A python client for RabbitMQ Streams" | ||
authors = ["George Fortunatov <[email protected]>", "Daniele Palaia <[email protected]>"] | ||
readme = "README.md" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.