|
481 | 481 | # List of enabled Image Import Methods
|
482 | 482 | #
|
483 | 483 | # 'glance-direct', 'copy-image' and 'web-download' are enabled by default.
|
| 484 | +# 'glance-download' is available, but requires federated deployments. |
484 | 485 | #
|
485 | 486 | # Related options:
|
486 | 487 | # * [DEFAULT]/node_staging_uri (list value)
|
|
798 | 799 | # backends should be separated using comma. (dict value)
|
799 | 800 | #enabled_backends = <None>
|
800 | 801 |
|
801 |
| -# |
802 |
| -# The interval in seconds to run periodic job cache_images. |
803 |
| -# |
804 |
| -# The cache_images method will fetch all images which are in queued state |
805 |
| -# for caching in cache directory. The default value is 300. |
806 |
| -# |
807 |
| -# Possible values: |
808 |
| -# * Positive integer |
809 |
| -# |
810 |
| -# Related options: |
811 |
| -# * None |
812 |
| -# (floating point value) |
813 |
| -#cache_prefetcher_interval = 300 |
814 |
| - |
815 | 802 | # This argument is used internally on Windows. Glance passes a pipe handle to
|
816 | 803 | # child processes, which is then used for inter-process communication. (string
|
817 | 804 | # value)
|
|
5120 | 5107 | #auth_section = <None>
|
5121 | 5108 |
|
5122 | 5109 |
|
| 5110 | +[os_brick] |
| 5111 | + |
| 5112 | +# |
| 5113 | +# From os_brick |
| 5114 | +# |
| 5115 | + |
| 5116 | +# Directory to use for os-brick lock files. Defaults to |
| 5117 | +# oslo_concurrency.lock_path which is a sensible default for compute nodes, but |
| 5118 | +# not for HCI deployments or controllers where Glance uses Cinder as a backend, |
| 5119 | +# as locks should use the same directory. (string value) |
| 5120 | +#lock_path = <None> |
| 5121 | + |
| 5122 | + |
5123 | 5123 | [oslo_concurrency]
|
5124 | 5124 |
|
5125 | 5125 | #
|
|
5679 | 5679 | # this option enabled. (boolean value)
|
5680 | 5680 | #rabbit_quorum_queue = false
|
5681 | 5681 |
|
| 5682 | +# Each time a message is redelivered to a consumer, a counter is incremented. |
| 5683 | +# Once the redelivery count exceeds the delivery limit the message gets dropped |
| 5684 | +# or dead-lettered (if a DLX exchange has been configured) Used only when |
| 5685 | +# rabbit_quorum_queue is enabled, Default 0 which means dont set a limit. |
| 5686 | +# (integer value) |
| 5687 | +#rabbit_quorum_delivery_limit = 0 |
| 5688 | + |
| 5689 | +# By default all messages are maintained in memory if a quorum queue grows in |
| 5690 | +# length it can put memory pressure on a cluster. This option can limit the |
| 5691 | +# number of messages in the quorum queue. Used only when rabbit_quorum_queue is |
| 5692 | +# enabled, Default 0 which means dont set a limit. (integer value) |
| 5693 | +#rabbit_quroum_max_memory_length = 0 |
| 5694 | + |
| 5695 | +# By default all messages are maintained in memory if a quorum queue grows in |
| 5696 | +# length it can put memory pressure on a cluster. This option can limit the |
| 5697 | +# number of memory bytes used by the quorum queue. Used only when |
| 5698 | +# rabbit_quorum_queue is enabled, Default 0 which means dont set a limit. |
| 5699 | +# (integer value) |
| 5700 | +#rabbit_quroum_max_memory_bytes = 0 |
| 5701 | + |
5682 | 5702 | # Positive integer representing duration in seconds for queue TTL (x-expires).
|
5683 | 5703 | # Queues which are unused for the duration of the TTL are automatically deleted.
|
5684 | 5704 | # The parameter affects only reply and fanout queues. (integer value)
|
|
0 commit comments