-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add azure storage account export target (#11)
* Add .vscode to .gitignore * Extract data_types, ignore_keys, rename_cols into separate files to prepare for using ConfigMaps * Added azure dependencies * Fixed wrong content for allocation keys * Implement AZURE specific env vars, create new test for azure, added factory pattern for storage backend * Run & fix all pylint issues * aws_s3_storage: change to original upload procedure, azure_storage: use to_parquet * Remove unnecessary print statements * Added new ENV vars + respective tests. Implemented mechanism for conditional adding of query parameters * Adding tests for load_config_file * Added environment variable for json_normalize separator char. * Added new ENV vars to README. Added section for required permissions on Storage Account and S3 * Added short docs on necessary Azure permissions * Change back to original window param * Add files to Dockerfile as per review. * Add 'command' field to allow for changes in Dockerfiles's 'ENTRYPOINT'.
- Loading branch information
1 parent
6ee0c91
commit 1c0e817
Showing
16 changed files
with
550 additions
and
135 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
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 |
---|---|---|
|
@@ -7,3 +7,5 @@ pytz==2023.3.post1 | |
six==1.16.0 | ||
tzdata==2023.4 | ||
pyarrow==14.0.1 | ||
azure-storage-blob==12.19.1 | ||
azure-identity==1.15.0 |
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,39 @@ | ||
{ | ||
"cpuCoreHours": "float", | ||
"cpuCoreRequestAverage": "float", | ||
"cpuCoreUsageAverage": "float", | ||
"cpuCores": "float", | ||
"cpuCost": "float", | ||
"cpuCostAdjustment": "float", | ||
"cpuEfficiency": "float", | ||
"externalCost": "float", | ||
"gpuCost": "float", | ||
"gpuCostAdjustment": "float", | ||
"gpuCount": "float", | ||
"gpuHours": "float", | ||
"loadBalancerCost": "float", | ||
"loadBalancerCostAdjustment": "float", | ||
"networkCost": "float", | ||
"networkCostAdjustment": "float", | ||
"networkCrossRegionCost": "float", | ||
"networkCrossZoneCost": "float", | ||
"networkInternetCost": "float", | ||
"networkReceiveBytes": "float", | ||
"networkTransferBytes": "float", | ||
"pvByteHours": "float", | ||
"pvBytes": "float", | ||
"pvCost": "float", | ||
"pvCostAdjustment": "float", | ||
"ramByteHours": "float", | ||
"ramByteRequestAverage": "float", | ||
"ramByteUsageAverage": "float", | ||
"ramBytes": "float", | ||
"ramCost": "float", | ||
"ramCostAdjustment": "float", | ||
"ramEfficiency": "float", | ||
"running_minutes": "float", | ||
"sharedCost": "float", | ||
"totalCost": "float", | ||
"totalEfficiency": "float" | ||
} | ||
|
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,3 @@ | ||
{ | ||
"keys": ["pvs", "lbAllocations"] | ||
} |
Oops, something went wrong.