Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/source/reference/bentoml/configurations.rst
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,8 @@ For more information, see :doc:`/build-with-bentoml/runtime-environment`.
class MyService:
# Service implementation

.. _config-traffic:

``traffic``
^^^^^^^^^^^

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ You can enhance concurrency management with an external request queue on BentoCl

If you enable ``external_queue`` in the ``@bentoml.service`` decorator, you must specify a ``concurrency`` value.

It's worth noting that when the external queue is enabled, ``max_concurrency`` will no longer take effect because BentoCloud guarantees the Service will never receive more requests simultaneously than the ``concurrency`` setting allows. Therefore, ``max_concurrency`` is never reached.
It's worth noting that when the external queue is enabled, ``max_concurrency`` will no longer take effect because BentoCloud guarantees the Service will never receive more requests simultaneously than the ``concurrency`` setting allows. Therefore, ``max_concurrency`` is never reached. For more information, see available fields in :ref:`config-traffic`.

Autoscaling policies
--------------------
Expand Down