-
Notifications
You must be signed in to change notification settings - Fork 322
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(warehouse): added support for bigquery custom partition for workspaceIDs #2679
Conversation
Codecov ReportBase: 45.45% // Head: 45.44% // Decreases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## master #2679 +/- ##
==========================================
- Coverage 45.45% 45.44% -0.02%
==========================================
Files 289 289
Lines 47949 47997 +48
==========================================
+ Hits 21794 21811 +17
- Misses 24768 24796 +28
- Partials 1387 1390 +3
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
83e4b9a
to
359bdc3
Compare
…re.bq-custom-partition-workspaceids
config/load.go
Outdated
if !isSet { | ||
_value = configVal.defaultValue.([]string) | ||
} | ||
if !reflect.DeepEqual(_value, *value) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we do a normal []string comparison instead of reflect?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using slices.Compare(_value, *value) != 0
now.
feat(warehouse): added support for bigquery custom partition for workspaceIDs (#2679) chore: by default enable max concurrent gw request limit. (#2648) doc: create SECURITY.md (#2656) chore: use bugsnag in router and processor goroutines (#2686) test: using arm64 compatible images if necessary (#2670) chore: regulation worker avoid panic in case of timeout (#2657) feat(warehouse): degraded workspace id (#2627) Release-As: 1.4.0
feat(warehouse): added support for bigquery custom partition for workspaceIDs (#2679) chore: by default enable max concurrent gw request limit. (#2648) doc: create SECURITY.md (#2656) chore: use bugsnag in router and processor goroutines (#2686) test: using arm64 compatible images if necessary (#2670) chore: regulation worker avoid panic in case of timeout (#2657) feat(warehouse): degraded workspace id (#2627) Release-As: 1.4.0
Description
customPartitionsEnabled
which is at a workspace level.customPartitionsEnabledWorkspaceIDs
which will take a list of workspace IDs that needs to have Custom Partition enabled.checkAndHotReloadConfig
.Partitioned tracks table looks like this
Error experienced without changes
Notion Ticket
https://www.notion.so/rudderstacks/BQ-custom-partition-fix-for-Multi-tenant-9c3262e69c8c4d4f8ecf6f91207e3352
Security