Jump to: navigation, search

Difference between revisions of "Large Scale Configuration Guidelines"

 
Line 1: Line 1:
== Large Scale Configuration Guideline ==
+
Please update your links! The Large Scale SIG documentation has now moved to:
=== Introduction ===
 
=== WSGI ===
 
When running a python app as WSGI, you need to use maximum 1 thread!
 
Example with apache config:
 
  
 +
=== https://docs.openstack.org/large-scale/ ===
  
    $ grep WSGIDaemonProcess /etc/apache2/sites-available/10-cinder_wsgi.conf
+
You can propose changes to the content through the [https://opendev.org/openstack/large-scale openstack/large-scale] git repository.
    WSGIDaemonProcess cinder-api display-name=cinder_wsgi group=cinder processes=8 threads=1 user=cinder
 
 
 
=== Nova ===
 
==== api.max_limit ====
 
Documentation link: https://docs.openstack.org/nova/latest/configuration/config.html#api.max_limit
 
 
 
This settings needs to be tuned in order to make sure that Nova API will give you an expected number of objects..
 
 
 
=== Neutron ===
 

Latest revision as of 09:42, 1 September 2022

Please update your links! The Large Scale SIG documentation has now moved to:

https://docs.openstack.org/large-scale/

You can propose changes to the content through the openstack/large-scale git repository.