.replications [deprecated]

Replications [deprecated]: Configure replication of databases to a main meta database.

Replications are defined under the app_settings.replications key as an array of replication objects. The definition takes the typical form below:

"replications": [
  {
    "fromSuffix": "user-[^\\-]+-meta",
    "toSuffix": "users-meta",
    "text_expression": "",
    "cron": "0 2 * * *"
  }
]
propertydescriptionrequired
fromSuffixThe suffix of the source table(s). Regular expression may be used.yes
toSuffixThe suffix of the target table.yes
text_expressionAny valid text expression. For more information, see LaterJSno if cron provided
cronAny valid Cron expression. For more information, see LaterJSno if text_expression provided