Skip to content

Commit 6d5bc29

Browse files
author
markzegarelli
authored
Mention integrations object in Warehouse FAQ (#3659)
* Mention integrations object in Warehouse FAQ * Update src/connections/storage/warehouses/faq.md
1 parent 89eb3c8 commit 6d5bc29

File tree

1 file changed

+35
-0
lines changed
  • src/connections/storage/warehouses

1 file changed

+35
-0
lines changed

src/connections/storage/warehouses/faq.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,41 @@ Selective Sync helps manage the data Segment sends to each warehouse, allowing y
1111

1212
When you disable a source, collection or property, Segment no longer syncs data from that source. Segment won't delete any historical data from your warehouse. When you re-enable a source, Segment syncs all events since the last sync. This doesn't apply when a collection or property is re-enabled. Only new data generated after re-enabling a collection or property will sync to your warehouse.
1313

14+
You can also use the [Integration Object](/docs/guides/filtering-data/#filtering-with-the-integrations-object) to control whether or not data is sent to a specific warehouse.
15+
16+
### Don't send data to any Warehouse
17+
18+
```js
19+
integrations: {
20+
All: true,
21+
Warehouses: {
22+
all: false
23+
}
24+
}
25+
```
26+
27+
### Send data to all Warehouses
28+
29+
```js
30+
integrations: {
31+
All: false,
32+
Warehouses: {
33+
all: true,
34+
}
35+
}
36+
```
37+
38+
### Send data to specific Warehouses
39+
40+
```js
41+
integrations: {
42+
All: false,
43+
Warehouses: {
44+
warehouseIds: ["<id1>", "<id2>"]
45+
}
46+
}
47+
```
48+
1449
## Can we add, tweak, or delete some of the tables?
1550

1651
You have full admin access to your Segment Warehouse. However, don't tweak or delete Segment generated tables, as this may cause problems for the systems that upload new data.

0 commit comments

Comments
 (0)