-
Notifications
You must be signed in to change notification settings - Fork 37
RRE Server
The RRE console is a SpringBoot application which provides real-time information about evaluation results. Each time a build happens (better, an RRE Maven Plugin happens), the Maven Reporting Plugin sends the evaluation result to a RESTFul endpoint provided by RRE Server.
The web console is an AngularJS app which gets refreshed with that incoming data. In the picture below you can see the RRE domain model on the left (e.g. corpus, topics, query groups and queries) and on the right, each column is composed by many sub-columns (one for each version). Within each version cell there's the metric value. Note that the console also provides information about trend/delta: beside the version columns there's a delta column which shows the difference, in terms of gain or loss, between subsequent versions.
The delta column provides coloured cells (red=bad, green=good, yellow=no difference) so you can immediately see if changes introduces in a given version actually produced an improvement or a loss, for a given metric.
There's more. Metrics, numbers and colours are great, but especially during the internal iteration phases, you may want to have a look at the results which produced those numbers.
Without the feature we're going to describe such analysis would be very hard: imagine what it could mean if you have 5 versions. You should start a standalone Apache Solr instance, create a core for each version, load the data in all cores, execute the query and check the results.
Fortunately, RRE collects, in the evaluation data at query / version level, the top n search results. In the web console, under each query, there’s a little arrow which allows to open / hide the section which contains those results.
In this way you can get immediately the meaning of each metric and its values between different versions. In the example above, you can immediately see why there’s a loss of precision (first metric) between v1.0, v1.1, which got fixed in v1.2.
Shortly the v1.0 will be pushed out. Prior to that, other than cloning the project and build it, you can download the executable jar from here. Once you get the RRE Server jar, just execute the following command:
> java -jar rre-server-1.0.jar
Then, open a web browser and go to the following address: http://127.0.0.1:8080
Note that at the very beginning the RRE Server won't have any evaluation data, and as consequence of that the console will be empty. Only after a build The console will start displaying useful data (like in the screenshot above)
1. What is it?
2. Quick Start
3. Project Structure
4. Evaluation Measures
5. How does it work?
5.1 Domain Model
5.2 What we need to provide
5.3 Where we need to provide
5.4 The Evaluation Process
5.5 The Evaluation Output
5.6 Persisting evaluation outputs
6. RRE Server
7. Apache Maven
7.1 Maven Plugin
7.2 Maven Reporting Plugin
7.3 Maven Archetype
8. Search Platform Framework
8.1 Supported platforms
8.2 Customising the Search Platform
9. FAQ