Skip to content

Commit aa224eb

Browse files
authored
Revise deployment approaches in README
1 parent d2c7ada commit aa224eb

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,12 @@ Last updated: 2025-08-27
6262

6363
> Each scenario includes detailed deployment guides that explain different approaches:
6464
65-
1. High-Decay (Writable Approach), click here for [quick deployment guide](./scenario1-high-decay/DEPLOYMENT.md)
66-
2. Optimized (Mounted Package Approach), click here for [quick deployment guide](./scenario2-optimized/DEPLOYMENT.md)
65+
1. [High-Decay](./scenario1-high-decay) (Writable Approach), click here for [quick deployment guide](./scenario1-high-decay/DEPLOYMENT.md)
66+
2. [Optimized](./scenario2-optimized) (Mounted Package Approach), click here for [quick deployment guide](./scenario2-optimized/DEPLOYMENT.md)
6767

6868
### High-Decay (Writable Approach)
6969

70-
> The combination of writable deployment, intensive logging, and full diagnostics causes Azure Functions to generate and buffer a large amount of telemetry and log data in local temp storage. This leads to rapid disk usage growth, temp file accumulation, and eventual disk decay:
70+
> The combination of writable deployment, intensive logging, and full diagnostics causes Azure Functions to generate and buffer a large amount of telemetry and log data in local temp storage. This leads to rapid disk usage growth, temp file accumulation, and eventual disk decay. Click here to go to [High-Decay](./scenario1-high-decay) test approach
7171
7272
- **Deployment Method**: Standard deployment (extracted to wwwroot)
7373
- **File Access**: Files are writable by the Function App
@@ -86,7 +86,7 @@ Last updated: 2025-08-27
8686
8787
### Optimized (Mounted Package Approach):
8888

89-
> The combination of mounted (read-only) deployment, optimized logging, and minimal diagnostics causes Azure Functions to generate and buffer very little telemetry and log data in local temp storage. This prevents disk usage from growing, avoids temp file accumulation, and eliminates disk decay:
89+
> The combination of mounted (read-only) deployment, optimized logging, and minimal diagnostics causes Azure Functions to generate and buffer very little telemetry and log data in local temp storage. This prevents disk usage from growing, avoids temp file accumulation, and eliminates disk decay. Click here to go to [Optimized](./scenario2-optimized) test approach
9090
9191
- **Deployment Method**: ZipDeploy with `WEBSITE_RUN_FROM_PACKAGE=1`
9292
- **File Access**: Files are read-only (mounted from zip)

0 commit comments

Comments
 (0)