Skip to content

Commit

Permalink
chore: skip users default true for warehouse destinations (#1885)
Browse files Browse the repository at this point in the history
  • Loading branch information
achettyiitr authored Jan 30, 2025
1 parent f4247aa commit 364d8db
Show file tree
Hide file tree
Showing 22 changed files with 33 additions and 33 deletions.
2 changes: 1 addition & 1 deletion src/configurations/destinations/azure_datalake/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
},
"skipUsersTable": {
"type": "boolean",
"default": false
"default": true
},
"syncFrequency": {
"type": "string",
Expand Down
4 changes: 2 additions & 2 deletions src/configurations/destinations/azure_datalake/ui-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@
"type": "checkbox",
"label": "Skip User Table",
"value": "skipUsersTable",
"footerNote": "Enable this feature to send event data exclusively to the Identify table, and skip user table. Eliminates the need for merge operation on the user table",
"default": false
"footerNote": "Disable the creation of a Users table. The table stores all unique users, but note that due to merge operations, it can significantly increase warehouse operation time.",
"default": true
},
{
"type": "checkbox",
Expand Down
2 changes: 1 addition & 1 deletion src/configurations/destinations/azure_synapse/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
},
"skipUsersTable": {
"type": "boolean",
"default": false
"default": true
},
"bucketProvider": {
"type": "string",
Expand Down
4 changes: 2 additions & 2 deletions src/configurations/destinations/azure_synapse/ui-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -568,8 +568,8 @@
"type": "checkbox",
"label": "Skip User Table",
"value": "skipUsersTable",
"footerNote": "Enable this feature to send event data exclusively to the Identify table, and skip user table. Eliminates the need for merge operation on the user table",
"default": false
"footerNote": "Disable the creation of a Users table. The table stores all unique users, but note that due to merge operations, it can significantly increase warehouse operation time.",
"default": true
},
{
"type": "checkbox",
Expand Down
2 changes: 1 addition & 1 deletion src/configurations/destinations/bq/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
},
"skipUsersTable": {
"type": "boolean",
"default": false
"default": true
},
"excludeWindow": {
"type": "object",
Expand Down
4 changes: 2 additions & 2 deletions src/configurations/destinations/bq/ui-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,8 @@
"type": "checkbox",
"label": "Skip User Table",
"value": "skipUsersTable",
"footerNote": "Enable this feature to send event data exclusively to the Identify table, and skip user table. Eliminates the need for merge operation on the user table",
"default": false
"footerNote": "Disable the creation of a Users table. The table stores all unique users, but note that due to merge operations, it can significantly increase warehouse operation time.",
"default": true
},
{
"type": "checkbox",
Expand Down
2 changes: 1 addition & 1 deletion src/configurations/destinations/clickhouse/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
},
"skipUsersTable": {
"type": "boolean",
"default": false
"default": true
},
"skipVerify": {
"type": "boolean"
Expand Down
4 changes: 2 additions & 2 deletions src/configurations/destinations/clickhouse/ui-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -576,8 +576,8 @@
"type": "checkbox",
"label": "Skip User Table",
"value": "skipUsersTable",
"footerNote": "Enable this feature to send event data exclusively to the Identify table, and skip user table. Eliminates the need for merge operation on the user table",
"default": false
"footerNote": "Disable the creation of a Users table. The table stores all unique users, but note that due to merge operations, it can significantly increase warehouse operation time.",
"default": true
},
{
"type": "checkbox",
Expand Down
2 changes: 1 addition & 1 deletion src/configurations/destinations/deltalake/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
},
"skipUsersTable": {
"type": "boolean",
"default": false
"default": true
},
"syncFrequency": {
"type": "string",
Expand Down
4 changes: 2 additions & 2 deletions src/configurations/destinations/deltalake/ui-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -543,8 +543,8 @@
"type": "checkbox",
"label": "Skip User Table",
"value": "skipUsersTable",
"footerNote": "Enable this feature to send event data exclusively to the Identify table, and skip user table. Eliminates the need for merge operation on the user table",
"default": false
"footerNote": "Disable the creation of a Users table. The table stores all unique users, but note that due to merge operations, it can significantly increase warehouse operation time.",
"default": true
},
{
"type": "checkbox",
Expand Down
2 changes: 1 addition & 1 deletion src/configurations/destinations/gcs_datalake/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
"skipUsersTable": {
"type": "boolean",
"default": false
"default": true
},
"tableSuffix": {
"type": "string",
Expand Down
4 changes: 2 additions & 2 deletions src/configurations/destinations/gcs_datalake/ui-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,8 @@
"type": "checkbox",
"label": "Skip User Table",
"value": "skipUsersTable",
"footerNote": "Enable this feature to send event data exclusively to the Identify table, and skip user table. Eliminates the need for merge operation on the user table",
"default": false
"footerNote": "Disable the creation of a Users table. The table stores all unique users, but note that due to merge operations, it can significantly increase warehouse operation time.",
"default": true
},
{
"type": "checkbox",
Expand Down
2 changes: 1 addition & 1 deletion src/configurations/destinations/mssql/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
},
"skipUsersTable": {
"type": "boolean",
"default": false
"default": true
},
"port": {
"type": "string",
Expand Down
4 changes: 2 additions & 2 deletions src/configurations/destinations/mssql/ui-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -568,8 +568,8 @@
"type": "checkbox",
"label": "Skip User Table",
"value": "skipUsersTable",
"footerNote": "Enable this feature to send event data exclusively to the Identify table, and skip user table. Eliminates the need for merge operation on the user table",
"default": false
"footerNote": "Disable the creation of a Users table. The table stores all unique users, but note that due to merge operations, it can significantly increase warehouse operation time.",
"default": true
},
{
"type": "checkbox",
Expand Down
2 changes: 1 addition & 1 deletion src/configurations/destinations/postgres/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
},
"skipUsersTable": {
"type": "boolean",
"default": false
"default": true
},
"namespace": {
"type": "string",
Expand Down
4 changes: 2 additions & 2 deletions src/configurations/destinations/postgres/ui-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -660,8 +660,8 @@
"type": "checkbox",
"label": "Skip User Table",
"value": "skipUsersTable",
"footerNote": "Enable this feature to send event data exclusively to the Identify table, and skip user table. Eliminates the need for merge operation on the user table",
"default": false
"footerNote": "Disable the creation of a Users table. The table stores all unique users, but note that due to merge operations, it can significantly increase warehouse operation time.",
"default": true
},
{
"type": "checkbox",
Expand Down
2 changes: 1 addition & 1 deletion src/configurations/destinations/rs/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
"skipUsersTable": {
"type": "boolean",
"default": false
"default": true
},
"useSSH": {
"type": "boolean",
Expand Down
4 changes: 2 additions & 2 deletions src/configurations/destinations/rs/ui-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,8 +443,8 @@
"type": "checkbox",
"label": "Skip User Table",
"value": "skipUsersTable",
"footerNote": "Enable this feature to send event data exclusively to the Identify table, and skip user table. Eliminates the need for merge operation on the user table",
"default": false
"footerNote": "Disable the creation of a Users table. The table stores all unique users, but note that due to merge operations, it can significantly increase warehouse operation time.",
"default": true
},
{
"type": "checkbox",
Expand Down
2 changes: 1 addition & 1 deletion src/configurations/destinations/s3_datalake/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
},
"skipUsersTable": {
"type": "boolean",
"default": false
"default": true
},
"enableSSE": {
"type": "boolean",
Expand Down
4 changes: 2 additions & 2 deletions src/configurations/destinations/s3_datalake/ui-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@
"type": "checkbox",
"label": "Skip User Table",
"value": "skipUsersTable",
"footerNote": "Enable this feature to send event data exclusively to the Identify table, and skip user table. Eliminates the need for merge operation on the user table",
"default": false
"footerNote": "Disable the creation of a Users table. The table stores all unique users, but note that due to merge operations, it can significantly increase warehouse operation time.",
"default": true
},
{
"type": "checkbox",
Expand Down
2 changes: 1 addition & 1 deletion src/configurations/destinations/snowflake/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
},
"skipUsersTable": {
"type": "boolean",
"default": false
"default": true
},
"excludeWindow": {
"type": "object",
Expand Down
4 changes: 2 additions & 2 deletions src/configurations/destinations/snowflake/ui-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -591,8 +591,8 @@
"type": "checkbox",
"label": "Skip User Table",
"value": "skipUsersTable",
"footerNote": "Enable this feature to send event data exclusively to the Identify table, and skip user table. Eliminates the need for merge operation on the user table",
"default": false
"footerNote": "Disable the creation of a Users table. The table stores all unique users, but note that due to merge operations, it can significantly increase warehouse operation time.",
"default": true
},
{
"type": "checkbox",
Expand Down

0 comments on commit 364d8db

Please sign in to comment.