Objective
This guide offers instructions on how to filter data going into your Warehouse destination.
Product
Twilio Segment
Environment
Segment Console
Procedure
Customers on Segment’s Business plan can choose which sources, collections, and properties sync to your data warehouse using Selective Sync.
Selective Sync helps manage the data Segment sends to each warehouse, allowing you to sync different sets of data from the same source to different warehouses.
You can also use the Integrations Object to control whether or not data is sent to a specific warehouse.
Code to not send data to any warehouse
integrations: {
All: true,
Warehouses: {
all: false
}
}
Code to send data to all warehouses
integrations: {
All: false,
Warehouses: {
all: true,
}
}
Code to send data to specific warehouses
integrations: {
All: false,
Warehouses: {
warehouseIds: ["<id1>", "<id2>"]
}
}
Additional Information
More details in our Warehouse docs here.