-
Notifications
You must be signed in to change notification settings - Fork 277
SearchServer
Executive Summary: Interfaces with SOLR to provide the GAE Search API.
Google App Engine applications need to be able to search structured documents.
It provides a Python web server which takes protocol buffers from the Application Servers. These requests are mapped to SOLR requests. The responses are in protocol buffers. This server is in charge of the mapping to-and-fro.
It is started if the "search" role is configured. It is then started when AppScale is started.
On the "search" role node.
SearchServer code is written in Python and runs on port 53423. SOLR listens to port 8983. The AppController starts the server through Monit. The logs for the server are at /var/log/appscale/search-53423.log and for SOLR at /var/log/appscale/solr-8983.log.
Tests are written with test/unit and flexmock. They can be found in appscale/SearchServer/test/unit. You can go into this directory and run "nosetests" to run just the tests for this component.