-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support EventHubGroup as an alias over multiple eventhub peers
To support multiple subscriptions and namespaces we will allow a new peer type called EventHubGroup. ```sql CREATE PEER customer_1 FROM EVENTHUB WITH ( subscription_id = 'my-sub-id', resource_group = 'my-rg', namespace = 'my-ns', location = 'eastus' ); CREATE PEER customer_2 FROM EVENTHUB WITH ( ... ); CREATE PEER eventhub_group_1 FROM EVENTHUBGROUP WITH ( metadata_db = '...', customer_1 = true, customer_2 = true ) ``` After this change mirrors ought to be created with this event hub group peer. Fixes #441
- Loading branch information
1 parent
bdba9ae
commit 0ed16b4
Showing
18 changed files
with
950 additions
and
252 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ jobs: | |
build: | ||
strategy: | ||
matrix: | ||
runner: [ubuntu-latest, ubicloud] | ||
runner: [ubicloud-standard-8] | ||
runs-on: ${{ matrix.runner }} | ||
timeout-minutes: 30 | ||
services: | ||
|
@@ -46,15 +46,15 @@ jobs: | |
with: | ||
name: "bq_service_account.json" | ||
json: ${{ secrets.GCP_GH_CI_PKEY }} | ||
dir: 'nexus/server/tests/assets/' | ||
dir: "nexus/server/tests/assets/" | ||
|
||
- name: setup snowflake credentials | ||
id: sf-credentials | ||
uses: jsdaniell/[email protected] | ||
with: | ||
name: "snowflake_creds.json" | ||
json: ${{ secrets.SNOWFLAKE_GH_CI_PKEY }} | ||
dir: 'nexus/server/tests/assets/' | ||
dir: "nexus/server/tests/assets/" | ||
|
||
- name: cargo check | ||
run: cargo check | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.