-
Notifications
You must be signed in to change notification settings - Fork 470
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
server: add the ability to have > 1 stages of trickle handling #2630
Conversation
Some projects (namely CPDN) need to process trickle-up messages with two different daemons. We do this as follows: - daemon 1 enumerates messages with handled==0, and sets handled=1 - daemon 2 enumerates messages with handled==1, and sets handled=2 You can then purge records with handled==2 To implement this, trickle_handler.cpp has two global vars, int handled_enum and int handled_set. By default these are 0 and 1. For daemon 2, set them to 1 and 2 in trickle_handler_init()
While at it, why not fix the problem with rogue xml in the trickle message? See: #1485 |
Add global variable handler_error; if handle_trickle() returns error, set message_from_host.handled to this. Default 1.
Code looks good. I'll do a final test soon and then merge. |
We should add a comment in code and in documentation that the purge_trickles.php script needs to be changed when using multiple stages. |
E.g.: purge_trickles.php msg_from_host 2 purges trickle-ups with handled==2 Behavior with no args is unchanged.
Done |
html/ops/purge_trickles.php
Outdated
$n = (int)$argv[2]; | ||
$db->do_query("delete from msg_to_host where handled = $n"); | ||
} else { | ||
echo "usage\n"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the actual usage message missing? The single word usage
seems not very descriptive. We have to keep in mind that not all projects read the source code of the ops scripts.
A short update on review progress. I want to add some automated tests for this part of the code to the server integration testing which is almost ready. Once the minor documentation issue in purge_trickles.php is fixed I'm going to merge. |
@ChristianBeer - is the only delay on merging this your note about?
|
Actually you don't need to change the script; see |
The documentation is fine. What I meant is the error message in
This is what you expect from other programs too. |
@davidpanderson - I think the only thing holding up @ChristianBeer from merging this pull request is his comment above. If you could review his comment and respond I think Christian will be able to merge. Thanks - I just wanted to nudge this one along so that we can merge it. |
This is a one-off for CPDN; fine as is. |
@davidpanderson - This looks like a useful ops function that we might use as well (we use trickle messages on one of our applications). I suspect that it will be used on more projects than just CPDN. Could you change the usage section from what you have now:
to
and then I think this will be ready for merge. Thanks! |
@davidpanderson, could you please make the fixes @TheAspens asked for? Thanks |
This slipped through my review of #2630
Some projects (namely CPDN) need to process trickle-up messages
with two different daemons.
We do this as follows:
You can then purge records with handled==2
To implement this, trickle_handler.cpp has two global vars,
int handled_enum and int handled_set.
By default these are 0 and 1.
For daemon 2, set them to 1 and 2 in trickle_handler_init()