-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Azure AD Benchmarking | ||
|
||
This folder contains 3 benchmarking scripts: | ||
|
||
- [msgraphgo](msgraphgo) ... [msgraph.go](https://github.com/yaegashi/msgraph.go) program performing sequential creation/deletion | ||
- Create: `time ./msgraphgo` | ||
- Delete: `time ./msgraphgo -clean` | ||
- [msgraphtf](msgraphtf) ... Terraform script using [msgraph provider](https://github.com/yaegashi/terraform-provider-msgraph) | ||
- Create: `time terraform apply -auto-approve -parallelism N` | ||
- Delete: `time terraform destroy -auto-approve -parallelism N` | ||
- [azureadtf](azureadtf) ... Terraform script using [azuread provider](https://www.terraform.io/docs/providers/azuread/) | ||
- Create: `time terraform apply -auto-approve -parallelism N` | ||
- Delete: `time terraform destroy -auto-approve -parallelism N` | ||
|
||
Each script creates the following resources in Azure AD tenant: | ||
|
||
- 100 users | ||
- 10 groups | ||
- 100 group-user member relationships | ||
- 9 group-group member relationships | ||
|
||
|Script|Parallelism|Create (sec)|Delete (sec)|Notes| | ||
|---|---:|---:|---:|---| | ||
|msgraphgo|1|82.119|42.548|| | ||
|msgraphtf|1|103.473|107.952| | ||
|msgraphtf|10|12.568|12.632|Default parallelism| | ||
|msgraphtf|100|7.550|7.943| | ||
|azureadtf|1|>1000?|?|Not yet measured| | ||
|azureadtf|10|125.191|12.832|Default parallelism| | ||
|azureadtf|100|30.266|10.745|| |