Validating the Deployment with the Solr REST API

Validate the deployment by indexing and querying documents with the Solr REST API. Before beginning this process, you must have access to the Solr admin web console, as detailed in Deploying Cloudera Search.

The tutorial provides examples that work with an environment established using a package-based installation. If you installed Cloudera Search using parcels, adjust file paths accordingly.

Indexing Data

Begin by indexing data to be queried later. Sample data is provided in the installed packages. Replace $SOLRHOST in the example below with the name of any host running the Solr process.
$ cd /usr/share/doc/solr-doc*/example/exampledocs
$ java -Durl=http://$SOLRHOST:8983/solr/collection1/update -jar post.jar *.xml

Running Queries

After you have indexed data, you can run a query.

To run a query:

  1. Open the following link in a browser, replacing $SOLRHOST with the name of any host running the Solr process: http://$SOLRHOST:8983/solr.
  2. Click the collection name in the left panel.
  3. Click Query in the Menu and select execute query.

Next Steps

Consider indexing more data using the Solr REST API, or move to batch indexing with MapReduce or NRT indexing with Flume. To learn more about Solr, see the Apache Solr Tutorial.