Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Copy jackrabbit-bundle-mysql-search.xml from the empty webapp overlay, rename it to jackrabbit-bundle-azure-search.xml and place it in WEB-INF/config/repo-conf/.
    The configuration file for mysql can be easily adapted to work for Azure DB.
  2. Use the PersistanceManager class for MSSQL: org.apache.jackrabbit.core.persistence.pool.MSSqlPersistenceManager.
    Since Azure DB is based on Microsoft SQL Server the classes for MSSQL may be used.
  3. Change the schema type from 'mssql' to 'azure'.
    There is a special set of schema DDL files available for Azure DB. The main difference is that it creates clustered indexes, instead of non-clustered indexes.
  4. Configure a JNDI datasource or specify your the driver class and connection parameters directly in the jackrabbit bundle configuration file.

...