-
Notifications
You must be signed in to change notification settings - Fork 97
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
bb69450
commit 5aa6be7
Showing
15 changed files
with
887 additions
and
225 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
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.