Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Commit

Permalink
Merge pull request #86 from mocsharp/85-ngc-metadata
Browse files Browse the repository at this point in the history
Update NGC metadata & default watermark
  • Loading branch information
mocsharp authored Aug 5, 2021
2 parents 95b3522 + 6883cd2 commit efb7cbf
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/setup/schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ database:
},
"storage" : {
"temporary" : "/payloads", // storage path used for storing received instances before uploading to Clara Platform.
"watermarkPercent": 85, // storage space usage watermark to stop storing, exporting and retrieving of DICOM instances.
"watermarkPercent": 75, // storage space usage watermark to stop storing, exporting and retrieving of DICOM instances.
"reserveSpaceGB": 5 // minimal storage space required to store, export and retrieve DICOM instances.
}
},
Expand Down
2 changes: 1 addition & 1 deletion docs/setup/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ The default settings enable DICOM *C-STORE SCP* and *C-STORE-SCU* and set listen
},
"storage" : {
"temporary" : "/payloads",
"watermarkPercent": 85,
"watermarkPercent": 75,
"reserveSpaceGB": 5
}
},
Expand Down
2 changes: 1 addition & 1 deletion helm-chart/dicom-adapter/files/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
},
"storage" : {
"temporary" : "/payloads",
"watermarkPercent": 85,
"watermarkPercent": 75,
"reserveSpaceGB": 5
},
"services": {
Expand Down
2 changes: 1 addition & 1 deletion helm-chart/ngc/overview.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Clara DICOM Adapter Helm Chart

This asset requires the Clara Deploy SDK. Follow the instructions on the
[Clara Bootstrap]($NGC_HOST/model-scripts/$NGC_ORG:$NGC_TEAM:clara_bootstrap) page
[Clara Ansible]($NGC_HOST/model-scripts/$NGC_ORG:$NGC_TEAM:clara_ansible) page
to install the Clara Deploy SDK.

## Install via Clara CLI
Expand Down
4 changes: 2 additions & 2 deletions src/Configuration/StorageConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ public StorageConfiguration(IFileSystem fileSystem)
public string Temporary { get; set; } = "./payloads";

/// <summary>
/// Gets or sets the watermark for disk usage with default value of 85%,
/// Gets or sets the watermark for disk usage with default value of 75%,
/// meaning that DICOM Adapter will stop accepting (C-STORE-RQ) assocations,
/// stop exporting and stop retreiving data via DICOMweb when used disk space
/// is above the watermark.
/// </summary>
/// <value></value>
[JsonProperty(PropertyName = "watermarkPercent")]
public uint Watermark { get; set; } = 85;
public uint Watermark { get; set; } = 75;

/// <summary>
/// Gets or sets the reserved disk space for DICOM Adapter with default value of 5GB.
Expand Down

0 comments on commit efb7cbf

Please sign in to comment.