Ignore Rules

Ignore rules allow you to exclude certain tables from data cloning. They are configured at the twin level and apply to all clones of that pair — both manual and scheduled.

Why Exclude Tables?

Some tables are not useful to clone:

  • Analytics tablesanalytics_events, page_views — often very large and unnecessary for staging
  • Log tablesaudit_logs, error_logs — ephemeral data
  • Temporary tablestmp_*, staging_* — working data
  • Sensitive tables — if you do not want to copy certain data to the target

Excluding these tables reduces clone time and the amount of data transferred.

Configuring Rules

  1. Go to Dashboard > [your twin]
  2. In the Ignore Rules section, click Add Rule
  3. Select the table to exclude
  4. Save

Rule Scope

AspectBehavior
SchemaThe table structure is still cloned (CREATE TABLE)
DataThe rows of this table are NOT cloned
Manual clonesThe rule applies
Scheduled clonesThe rule applies
Other componentsNot affected (functions, triggers, etc. are still cloned normally)

Note: Ignore rules only apply to data cloning. The table structure (schema) is always cloned to maintain the integrity of relationships and dependencies.

Editing or Removing a Rule

  1. Go to the twin page
  2. Find the rule in the Ignore Rules section
  3. Click Remove to delete it

The removal takes effect immediately and will apply to the next clone.

Common Examples

Excluded TableReason
analytics_eventsMillions of rows, unnecessary in staging
audit_logsAudit trail data, not needed
email_queueRisk of sending emails from staging
sessionsEphemeral user sessions
cacheTemporary data that is recreated automatically

Next Steps