-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
azurerm_data_factory_integration_runtime_azure_ssis
- support for the copy_compute_scale
, pipeline_external_compute_scale
properties
#25281
Merged
katbyte
merged 1 commit into
hashicorp:main
from
ms-henglu:ticket-24769296-data-factory-manged-ir-feature
Mar 21, 2024
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -59,14 +59,18 @@ The following arguments are supported: | |||||||||||||
|
||||||||||||||
* `catalog_info` - (Optional) A `catalog_info` block as defined below. | ||||||||||||||
|
||||||||||||||
* `copy_compute_scale` - (Optional) One `copy_compute_scale` block as defined below. | ||||||||||||||
|
||||||||||||||
* `custom_setup_script` - (Optional) A `custom_setup_script` block as defined below. | ||||||||||||||
|
||||||||||||||
* `express_custom_setup` - (Optional) An `express_custom_setup` block as defined below. | ||||||||||||||
|
||||||||||||||
* `express_vnet_integration` - (Optional) A `express_vnet_integration` block as defined below. | ||||||||||||||
|
||||||||||||||
* `package_store` - (Optional) One or more `package_store` block as defined below. | ||||||||||||||
|
||||||||||||||
|
||||||||||||||
* `pipeline_external_compute_scale` - (Optional) One `pipeline_external_compute_scale` block as defined below. | ||||||||||||||
|
||||||||||||||
* `proxy` - (Optional) A `proxy` block as defined below. | ||||||||||||||
|
||||||||||||||
* `vnet_integration` - (Optional) A `vnet_integration` block as defined below. | ||||||||||||||
|
@@ -91,6 +95,14 @@ A `catalog_info` block supports the following: | |||||||||||||
|
||||||||||||||
--- | ||||||||||||||
|
||||||||||||||
A `copy_compute_scale` block supports the following: | ||||||||||||||
|
||||||||||||||
* `data_integration_unit` - (Optional) Specifies the data integration unit number setting reserved for copy activity execution. Supported values are multiples of 4 in range 4-256. | ||||||||||||||
|
||||||||||||||
* `time_to_live` - (Optional) Specifies the time to live (in minutes) setting of integration runtime which will execute copy activity. Possible values are at least `5`. | ||||||||||||||
|
||||||||||||||
--- | ||||||||||||||
|
||||||||||||||
A `custom_setup_script` block supports the following: | ||||||||||||||
|
||||||||||||||
* `blob_container_uri` - (Required) The blob endpoint for the container which contains a custom setup script that will be run on every node on startup. See [https://docs.microsoft.com/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup](https://docs.microsoft.com/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup) for more information. | ||||||||||||||
|
@@ -171,6 +183,16 @@ A `proxy` block supports the following: | |||||||||||||
|
||||||||||||||
--- | ||||||||||||||
|
||||||||||||||
A `pipeline_external_compute_scale` block supports the following: | ||||||||||||||
|
||||||||||||||
* `number_of_external_nodes` - (Optional) Specifies the number of the external nodes, which should be greater than 0 and less than 11. | ||||||||||||||
|
||||||||||||||
* `number_of_pipeline_nodes` - (Optional) Specifies the number of the pipeline nodes, which should be greater than 0 and less than 11. | ||||||||||||||
Comment on lines
+188
to
+190
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||
|
||||||||||||||
* `time_to_live` - (Optional) Specifies the time to live (in minutes) setting of integration runtime which will execute copy activity. Possible values are at least `5`. | ||||||||||||||
|
||||||||||||||
--- | ||||||||||||||
|
||||||||||||||
A `vnet_integration` block supports the following: | ||||||||||||||
|
||||||||||||||
* `vnet_id` - (Optional) ID of the virtual network to which the nodes of the Azure-SSIS Integration Runtime will be added. | ||||||||||||||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.