-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#920 Co-authored-by: Yoshiitaka <[email protected]>
- Loading branch information
1 parent
25f0b4a
commit 803b32d
Showing
1 changed file
with
106 additions
and
0 deletions.
There are no files selected for viewing
106 changes: 106 additions & 0 deletions
106
i18n/ja/docusaurus-plugin-content-docs/current/topics/limits.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
--- | ||
sidebar_label: Quotas and Limits | ||
sidebar_position: 7 | ||
title: Momento Topics service quotas | ||
pagination_next: null | ||
description: Examine the namespace, webhook, and message-level quotas in place with Momento Topics and discover the default and tunable values for your workload based on your support plan. | ||
hide_title: true | ||
slug: /topics/limits | ||
--- | ||
# Momento Topics service quotas | ||
|
||
:::info | ||
サービスクォータは、アカウントのサポートプランに直接影響されます。<ins>ソフトリミットとハードリミット</ins>の両方は、プロティアプランとエンタープライズプランで増やすことができます。上限緩和をご希望の場合は、[営業担当までご連絡ください](https://www.gomomento.com/contact-us). | ||
::: | ||
|
||
## Limits | ||
|
||
<table className="customTable"> | ||
<thead> | ||
<tr> | ||
<th>Resource</th> | ||
<th>Entity</th> | ||
<th>Default</th> | ||
<th>Basic support</th> | ||
<th>Pro support</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr className="highlightRow"> | ||
<td colspan="5"><strong>Soft limits</strong></td> | ||
</tr> | ||
<tr> | ||
<td>Operations per second</td> | ||
<td>namespace</td> | ||
<td>100</td> | ||
<td>1,000</td> | ||
<td>10,000</td> | ||
</tr> | ||
<tr> | ||
<td>Concurrent connections</td> | ||
<td>namespace</td> | ||
<td>100</td> | ||
<td>1,000</td> | ||
<td>10,000</td> | ||
</tr> | ||
<tr> | ||
<td>Number of webhooks</td> | ||
<td>namespace</td> | ||
<td>10</td> | ||
<td>100</td> | ||
<td>1,000</td> | ||
</tr> | ||
<tr> | ||
<td>Message delivery per second</td> | ||
<td>webhook</td> | ||
<td>50</td> | ||
<td>500</td> | ||
<td>5,000</td> | ||
</tr> | ||
<tr> | ||
<td>Namespace count</td> | ||
<td>region</td> | ||
<td>3</td> | ||
<td>30</td> | ||
<td>300</td> | ||
</tr> | ||
<tr className="highlightRow"> | ||
<td colspan="5"><strong>Hard limits</strong></td> | ||
</tr> | ||
<tr> | ||
<td>Payload size</td> | ||
<td>message</td> | ||
<td colspan="3">4 KB</td> | ||
</tr> | ||
<tr> | ||
<td>Delivery timeout</td> | ||
<td>webhook</td> | ||
<td colspan="3">5 seconds</td> | ||
</tr> | ||
<tr> | ||
<td>Operations per second</td> | ||
<td>account</td> | ||
<td colspan="3">5</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
|
||
## Operations | ||
|
||
Momento Topicsに公開された各メッセージは、1つの操作としてカウントされます。配信されたメッセージは、すべて追加の操作としてカウントされます。購読者が 9 人いるトピックでは、メッセージが公開されるたびに 10 回の操作が行われることになります。 | ||
|
||
メッセージは1KB単位で課金されます。0.5KBの公開メッセージは1オペレーション課金されます。ただし、1.4 KBのメッセージには2オペレーションが課金されます。 | ||
|
||
## Examples | ||
|
||
**Message broadcast** | ||
|
||
9人の購読者がいるトピックに、1KBのメッセージが公開される。 | ||
|
||
> *1メッセージ公開+9購読者=10オペレーション*。 | ||
**Large direct message** | ||
|
||
4 KBのメッセージは、サブスクライバが1人のトピックに発行される。 | ||
|
||
> *(4KB÷1KBチャンク)×1加入者=4オペレーション*。 |