Skip to content
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

Merged
merged 5 commits into from
Feb 2, 2019

Conversation

davidpanderson
Copy link
Contributor

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()

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()
@ChristianBeer
Copy link
Member

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.
@ChristianBeer
Copy link
Member

Code looks good. I'll do a final test soon and then merge.

@ChristianBeer
Copy link
Member

We should add a comment in code and in documentation that the purge_trickles.php script needs to be changed when using multiple stages.
I personally also find it more useful to use -1 as an error indicator by default. That makes it easier to look for problematic content.

E.g.:
    purge_trickles.php msg_from_host 2
purges trickle-ups with handled==2
Behavior with no args is unchanged.
@davidpanderson
Copy link
Contributor Author

Done

$n = (int)$argv[2];
$db->do_query("delete from msg_to_host where handled = $n");
} else {
echo "usage\n";
Copy link
Member

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.

@ChristianBeer
Copy link
Member

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.

@TheAspens
Copy link
Member

@ChristianBeer - is the only delay on merging this your note about?

We should add a comment in code and in documentation that the purge_trickles.php script needs to be changed when using multiple stages.

@davidpanderson
Copy link
Contributor Author

Actually you don't need to change the script; see
https://boinc.berkeley.edu/trac/wiki/TrickleApi#Purgingtricklemessages

@ChristianBeer
Copy link
Member

The documentation is fine. What I meant is the error message in purge_trickles.php that is shown when the wrong number of parameters is used. It currently just says "usage" and the user needs to take a look at the code to get the proper information. Since the usage is rather simple the error message should contain what is basically the comment at the top of the file.

// no args: delete both up and down messages with handled != 0
// msg_from_host N
//    delete trickle ups with handled==N
// msg_to_host N
//    same, trickle down

This is what you expect from other programs too.

@TheAspens
Copy link
Member

@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.

@davidpanderson
Copy link
Contributor Author

This is a one-off for CPDN; fine as is.

@TheAspens
Copy link
Member

@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:

} else {
    echo "usage\n";
}

to

} else {
    echo "usage: purge_trickles.php [msg_from_host | msg_to_host]\n";
}

and then I think this will be ready for merge. Thanks!

@AenBleidd
Copy link
Member

@davidpanderson, could you please make the fixes @TheAspens asked for? Thanks

@ChristianBeer ChristianBeer merged commit d2442d1 into master Feb 2, 2019
@ChristianBeer ChristianBeer deleted the dpa_trickle branch February 2, 2019 09:56
ChristianBeer added a commit that referenced this pull request Feb 2, 2019
This slipped through my review of #2630
@AenBleidd AenBleidd added this to the Server Release 1.2.0 milestone Aug 14, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants