What is the processing time of bounce events?
Good insight and starting point was made by Mark Sapiro and Stephen J.Turnbull in this thread <https://mail.python.org/archives/list/mailman-developers@python.org/thread/N...> regarding the status of bounce processing in Mailman3 and how to move ahead on this.
Current problem is I am facing is----
Given a list of registered bounce events in queue for processing. Does their processing time/method affect the other operations ( other runners especially ) of the server. This is important as their dependency or independency will decide the complexity of the process we should adopt for removing the subscriptions.
On 3/13/19 12:36 PM, Aaryan Bhagat wrote:
Given a list of registered bounce events in queue for processing. Does their processing time/method affect the other operations ( other runners especially ) of the server.
Currently there is no processing of registered bounce events. Implementing that process or processes is exactly the scope of this project.
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan
I want to ask whether they are independent or not we can define the complexity of our processing upon its dependence on other processes.
On Thu, 14 Mar 2019, 11:06 Mark Sapiro, <mark@msapiro.net> wrote:
On 3/13/19 12:36 PM, Aaryan Bhagat wrote:
Given a list of registered bounce events in queue for processing. Does
their processing time/method affect the other operations ( other runners especially ) of the server.
Currently there is no processing of registered bounce events. Implementing that process or processes is exactly the scope of this project.
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan
Mailman-Developers mailing list -- mailman-developers@python.org To unsubscribe send an email to mailman-developers-leave@python.org https://mail.python.org/mailman3/lists/mailman-developers.python.org/ Mailman FAQ: https://wiki.list.org/x/AgA3
Security Policy: https://wiki.list.org/x/QIA9
The events when stored. I do not think their processing for removing an address effects the other runners so we can focus on a detailed handling of registered msg.
On Thu, 14 Mar 2019, 11:08 aaryan bhagat, <aaryanbhagat377@gmail.com> wrote:
I want to ask whether they are independent or not we can define the complexity of our processing upon its dependence on other processes.
On Thu, 14 Mar 2019, 11:06 Mark Sapiro, <mark@msapiro.net> wrote:
On 3/13/19 12:36 PM, Aaryan Bhagat wrote:
Given a list of registered bounce events in queue for processing. Does
their processing time/method affect the other operations ( other runners especially ) of the server.
Currently there is no processing of registered bounce events. Implementing that process or processes is exactly the scope of this project.
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan
Mailman-Developers mailing list -- mailman-developers@python.org To unsubscribe send an email to mailman-developers-leave@python.org https://mail.python.org/mailman3/lists/mailman-developers.python.org/ Mailman FAQ: https://wiki.list.org/x/AgA3
Security Policy: https://wiki.list.org/x/QIA9
On 3/13/19 10:41 PM, aaryan bhagat wrote:
The events when stored. I do not think their processing for removing an address effects the other runners so we can focus on a detailed handling of registered msg.
On Thu, 14 Mar 2019, 11:08 aaryan bhagat, <aaryanbhagat377@gmail.com <mailto:aaryanbhagat377@gmail.com>> wrote:
I want to ask whether they are independent or not we can define the complexity of our processing upon its dependence on other processes.
Reread <https://gitlab.com/mailman/mailman/issues/343>. Some possible approaches are outlined there.
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan
Ok, thanks for the clarification
On Thu, 14 Mar 2019, 11:44 Mark Sapiro, <mark@msapiro.net> wrote:
On 3/13/19 10:41 PM, aaryan bhagat wrote:
The events when stored. I do not think their processing for removing an address effects the other runners so we can focus on a detailed handling of registered msg.
On Thu, 14 Mar 2019, 11:08 aaryan bhagat, <aaryanbhagat377@gmail.com <mailto:aaryanbhagat377@gmail.com>> wrote:
I want to ask whether they are independent or not we can define the complexity of our processing upon its dependence on other processes.
Reread <https://gitlab.com/mailman/mailman/issues/343>. Some possible approaches are outlined there.
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan
I beleive I have understood. We can process the events registered and call for the necessary action (unsubscribing , send warning mail etc) it will not affect the other runners.
Am I missing something? Provide some pointers on this please.
On Thu, 14 Mar 2019, 11:45 aaryan bhagat, <aaryanbhagat377@gmail.com> wrote:
Ok, thanks for the clarification
On Thu, 14 Mar 2019, 11:44 Mark Sapiro, <mark@msapiro.net> wrote:
On 3/13/19 10:41 PM, aaryan bhagat wrote:
The events when stored. I do not think their processing for removing an address effects the other runners so we can focus on a detailed handling of registered msg.
On Thu, 14 Mar 2019, 11:08 aaryan bhagat, <aaryanbhagat377@gmail.com <mailto:aaryanbhagat377@gmail.com>> wrote:
I want to ask whether they are independent or not we can define the complexity of our processing upon its dependence on other processes.
Reread <https://gitlab.com/mailman/mailman/issues/343>. Some possible approaches are outlined there.
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan
On 3/13/19 11:18 PM, aaryan bhagat wrote:
I beleive I have understood. We can process the events registered and call for the necessary action (unsubscribing , send warning mail etc) it will not affect the other runners.
Am I missing something? Provide some pointers on this please.
Runners are independent processes that run asynchronously and independently of the other runners and only affect other runners directly by placing entries in their queues and indirectly by committing changes to the database.
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan
participants (3)
-
aaryan bhagat
-
Aaryan Bhagat
-
Mark Sapiro