DSRP - Relational Database Storage Resource Provider

About DSRP

When AEM Communities is configured to use a relational database as its common store, user generated content (UGC) is accessible from all author and publish instances without the need for synchronization nor replication.

See also Characteristics of SRP Options and Recommended Topologies.

Requirements

NOTE

The default storage configuration is now stored in conf path(/conf/global/settings/community/srpc/defaultconfiguration) instead of etc path (/etc/socialconfig/srpc/defaultconfiguration). You are advised to follow the migration steps to make defaultsrp work as expected.

Relational Database Configuration

MySQL Configuration

A MySQL installation may be shared between enablement features and common store (DSRP) within the same connections pool by using different database (schema) names and also different connections (server:port).

For installation and configuration details, see MySQL Configuration for DSRP.

Solr Configuration

A Solr installation may be shared between the node store (Oak) and common store (SRP) by using different collections.

If both the Oak and SRP collections are used intensively, a second Solr may be installed for performance reasons.

For production environments, SolrCloud mode provides improved performance over standalone mode (a single, local Solr setup).

For installation and configuration details, see Solr Configuration for SRP.

Select DSRP

The Storage Configuration console allows for the selection of the default storage configuration, which identifies which implementation of SRP to use.

On author, to access the Storage Configuration console

  • Sign in with administrator privileges

  • From the main menu

    • Select Tools (from the left hand pane)

    • Select Communities

    • Select Storage Configuration

      NOTE

      The default storage configuration is now stored in conf path(/conf/global/settings/community/srpc/defaultconfiguration) instead of etc path (/etc/socialconfig/srpc/defaultconfiguration). You are advised to follow the migration steps to make defaultsrp work as expected.

    dsrp-config

  • Select Database Storage Resource Provider (DSRP)

  • Database Configuration

    • JDBC datasource name

      Name given to MySQL connection must be the same as entered in JDBC OSGi configuration

      default: communities

    • Database name

      Name given to schema in init_schema.sql script

      default: communities

  • SolrConfiguration

    • Zookeeper Host

      Leave this value blank if running Solr using the internal ZooKeeper. Else, when running in SolrCloud mode with an external ZooKeeper, set this value to the URI for the ZooKeeper, such as my.server.com:80

      default: <blank>

    • Solr URL

      default: https://127.0.0.1:8983/solr/

    • Solr Collection

      default: collection1

  • Select Submit.

Zero downtime migration steps for defaultsrp

Follow these steps to ensure that the defaultsrp page http://localhost:4502/communities/admin/defaultsrp works as expected:

  1. Rename the path at /etc/socialconfig to /etc/socialconfig_old, so that system configuration falls back to jsrp(default).
  2. Go to defaultsrp page http://localhost:4502/communities/admin/defaultsrp, where jsrp is configured. Click the submit button so that new default configuration node is created at /conf/global/settings/community/srpc.
  3. Delete the created default configuration /conf/global/settings/community/srpc/defaultconfiguration.
  4. Copy the old configuration /etc/socialconfig_old/srpc/defaultconfiguration in place of the deleted node (/conf/global/settings/community/srpc/defaultconfiguration) in the previous step.
  5. Delete the old etc node /etc/socialconfig_old.

Publishing the Configuration

DSRP must be identified as the common store on all author and publish instances.

To make the identical configuration available in the publish environment:

  • On author:

    • Navigate from main menu to Tools > Operations > Replication

    • Double-click Activate Tree

    • Start Path:

      • Browse to /etc/socialconfig/srpc/
    • Ensure Only Modified is not selected.

    • Select Activate.

Managing User Data

For information regarding users, user profiles and user groups, often entered in the publish environment, visit:

Reindexing Solr for DSRP

To reindex DSRP Solr, follow the documentation for reindexing MSRP, however when reindexing for DSRP, use this URL instead: /services/social/datastore/rdb/reindex

For example, a curl command to re-index DSRP would look like this:

curl -u admin:password -X POST -F path=/ https://host:port/services/social/datastore/rdb/reindex

On this page