Field input/output (FIT) transformer API

Steps to use the field input/output transformer API as an option to the input/output transformer support in Solr.

Use the field input/output transformer API as an option to the input/output transformer support in Solr. An Introduction to DSE Field Transformers provides details on the transformer classes.

DSE Search includes the released version of a plugin API for Solr updates and a plugin to the CassandraDocumentReader. The plugin API transforms data from the secondary indexing API before data is submitted to Solr. The plugin to the CassandraDocumentReader transforms the results data from Cassandra to Solr.

Using the API, applications can tweak a Solr Document before it is mapped and indexed according to the schema.xml. The API is a counterpart to the input/output transformer support in Solr.

The field input transformer (FIT) requires:
  • name="dse"
  • A trailing Z for date field values

Procedure

To use the API:

  1. Define the plugin in the top level <config> element in the solrconfig.xml for a Cassandra table (search core).
    <config>
    ...
    <fieldInputTransformer name="dse" 
        class="com.datastax.bdp.cassandra.index.solr.functional.
        BinaryFieldInputTransformer">
    </fieldInputTransformer>
    
    <fieldOutputTransformer name="dse" class="
        com.datastax.bdp.cassandra.index.solr.functional.
        BinaryFieldOutputTransformer">
    </fieldOutputTransformer>
    ...
    </config>
  2. Write a transformer class something like this reference implementation to tweak the data in some way.
  3. Export the class to a JAR file. You must place the JAR file in this location:
    • Installer-No Services and Tarball installations: install-location/resources/solr/lib
    • Installer-Services and Package installations: /usr/share/dse/solr/lib
    The JAR is added to the CLASSPATH automatically.
  4. Test your implementation using something like the reference implementation.