Integrate uwsgi with django 63/37963/2
authorYun Huang <yun.huang@windriver.com>
Fri, 23 Mar 2018 16:28:34 +0000 (00:28 +0800)
committerYun Huang <yun.huang@windriver.com>
Fri, 23 Mar 2018 16:28:34 +0000 (00:28 +0800)
To enable parallel processing of framework services

Change-Id: I3142c2ea742918027e7f397b6fe9aece329788a5
Issue-ID: MULTICLOUD-187
Signed-off-by: Yun Huang <yun.huang@windriver.com>
multivimbroker/requirements.txt
multivimbroker/run.sh
multivimbroker/stop.sh

index 1d8330c..5aadc57 100644 (file)
@@ -32,3 +32,7 @@ oslo.concurrency>=3.21.0
 oslo.config>=4.11.0
 oslo.service>=1.25.0
 eventlet>=0.20.0
 oslo.config>=4.11.0
 oslo.service>=1.25.0
 eventlet>=0.20.0
+
+# uwsgi for parallel processing
+uwsgi
+
index e73496f..8270deb 100755 (executable)
@@ -30,7 +30,8 @@ if [ "$WEB_FRAMEWORK" == "pecan" ]
 then
     python multivimbroker/scripts/api.py
 else
 then
     python multivimbroker/scripts/api.py
 else
-    nohup python manage.py runserver 0.0.0.0:9001 2>&1 &
+    # nohup python manage.py runserver 0.0.0.0:9001 2>&1 &
+    nohup uwsgi --http :9001 --module multivimbroker.wsgi --master --processes 4 &
 
     while [ ! -f $logDir/multivimbroker.log ]; do
         sleep 1
 
     while [ ! -f $logDir/multivimbroker.log ]; do
         sleep 1
index 4a2e5c3..ba0a2c8 100755 (executable)
@@ -11,4 +11,5 @@
 # distributed under the License is distributed on an "AS IS" BASIS,
 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
 # distributed under the License is distributed on an "AS IS" BASIS,
 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
-ps auxww | grep 'manage.py runserver 0.0.0.0:9001' | awk '{print $2}' | xargs kill -9
+# ps auxww | grep 'manage.py runserver 0.0.0.0:9001' | awk '{print $2}' | xargs kill -9
+ps auxww |grep 'uwsgi --http :9001 --module multivimbroker.wsgi --master' |awk '{print $2}' |xargs kill -9