diff options
author | Eddie Arrage <eddie.arrage@huawei.com> | 2018-06-22 21:25:54 +0000 |
---|---|---|
committer | Eddie Arrage <eddie.arrage@huawei.com> | 2018-08-28 17:23:09 +0000 |
commit | afc4beed0f62ea26b155e0ac6f7b1f84e10bd38b (patch) | |
tree | b0dbe1a6c8b750c5b6bd5b9f392ec3189f38a7f7 /samples/services/nginx/docker/process | |
parent | 1f543c55dd426a34ab3cafa514fa446c22b6fa03 (diff) |
Add file upload/download and configure URL paths
- Compile nginx from source in order to employ additional modules
- Add nginx-upload-module for high performance file upload that
avoids the need for file copies with a web application.
- File upload allows for placement of files for file download
for performance benchmarking.
- File upload can also be used directly for bi-directional throughput
testing having emulated clients upload files while file downloads
simultaneously occur.
- Nginx file upload stores files with hash to avoid conflicting
file names. Upload block in nginx config is configured to send
REST message to clover-controller with file metadata (original
filename, size, etc.) clover-controller will be responsible for
modifying the hashed filename and placing in a target directory
within an nginx server.
- Build also adds nginx-rtmp module to act as streaming media server
L7 loader will be extended to fetch streaming files from RTMP
servers.
- Add ability to create directories in server site root
and create the location directive(s) in nginx configuration
- Separated upload for configuration (download
files in various paths) from upload for testing (upload
to create bi-directional session throughput)
- Upload for testing does not sent upload metadata to
clover-controller
- Added ability to move upload files to file folders in the nginx site
root to use for download
- Delete files in upload folder
- Fixed issue with 426 Upgrade Required error message
when upload module sends upload metadata to clover-controller
- Added server name to metadata sent to clover-controller
Change-Id: Ib4cf6240f92360b82f378c062675f4fdaa19ca93
Signed-off-by: Eddie Arrage <eddie.arrage@huawei.com>
Diffstat (limited to 'samples/services/nginx/docker/process')
-rwxr-xr-x | samples/services/nginx/docker/process/nginx_process.sh | 12 | ||||
-rwxr-xr-x | samples/services/nginx/docker/process/start_process.sh | 3 |
2 files changed, 0 insertions, 15 deletions
diff --git a/samples/services/nginx/docker/process/nginx_process.sh b/samples/services/nginx/docker/process/nginx_process.sh deleted file mode 100755 index 00edc66..0000000 --- a/samples/services/nginx/docker/process/nginx_process.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash -# -# Copyright (c) Authors of Clover -# -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Apache License, Version 2.0 -# which accompanies this distribution, and is available at -# http://www.apache.org/licenses/LICENSE-2.0 -# - -service nginx restart - diff --git a/samples/services/nginx/docker/process/start_process.sh b/samples/services/nginx/docker/process/start_process.sh index b84d2d6..47d164b 100755 --- a/samples/services/nginx/docker/process/start_process.sh +++ b/samples/services/nginx/docker/process/start_process.sh @@ -8,8 +8,5 @@ # http://www.apache.org/licenses/LICENSE-2.0 # -# Start the nginx process -./process/nginx_process.sh - # Start the grpc server ./process/grpc_process.sh $1 -D |