Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CUBRIDMAN-239] description of the broker parameter, NET_BUF_SIZE #543

Merged
merged 4 commits into from
Sep 12, 2024
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
6 changes: 6 additions & 0 deletions en/admin/config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2564,6 +2564,8 @@ The following table shows the broker parameters available in the broker configur
| | | SSL | string | OFF | |
| | +---------------------------------+--------+------------------------------+-----------+
| | | SOURCE_ENV | string | cubrid.env | |
| | +---------------------------------+--------+------------------------------+-----------+
| | | NET_BUF_SIZE | KB | 16K | |
+---------------------------------+-------------------------+---------------------------------+--------+------------------------------+-----------+

Default Parameters
Expand Down Expand Up @@ -3110,6 +3112,10 @@ Etc

An environment variable, if exists, has priority over **cubrid.conf**. The default value is **cubrid.env**.

**NET_BUF_SIZE**

**NET_BUF_SIZE** is a parameter used to determine the network buffer size used by **CAS** to transmit results to the client. The result sets will be buffered into the **CAS** network buffer, and are sent to the client when the buffer is full. **NET_BUF_SIZE** is the size of the packet that CAS transmits to the client, and it may affect transmission efficiency.

HA Configuration
================

Expand Down
6 changes: 6 additions & 0 deletions ko/admin/config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2534,6 +2534,8 @@ cubrid_broker.conf 설정 파일과 기본 제공 파라미터
| | | SSL | string | OFF | |
| | +---------------------------------+--------+------------------------------+-----------+
| | | SOURCE_ENV | string | cubrid.env | |
| | +---------------------------------+--------+------------------------------+-----------+
| | | NET_BUF_SIZE | KB | 16K | |
+---------------------------------+-------------------------+---------------------------------+--------+------------------------------+-----------+

기본 제공 파라미터
Expand Down Expand Up @@ -3080,6 +3082,10 @@ SHARD 기능을 사용하려면 **cubrid_broker.conf.shard**\ 를 참고하여 *

환경변수가 있으면 **cubrid.conf** 보다 우선한다. 기본값은 **cubrid.env** 이다.

**NET_BUF_SIZE**

**NET_BUF_SIZE** 는 **CAS** 가 클라이언트에게 데이터를 전송하기 위해 사용하는 네트워크 버퍼의 크기이다. **CAS** 가 클라이언트에 보낼 결과셋 (ResultSet)들은 네트워크 버퍼에 저장되며, 네트워크 버퍼가 기득찬 경우 클라이언트에 전송된다. 기본값은 16K이며, 32K/48K/64K 중에 선택 가능하다. **NET_BUF_SIZE** 는 CAS가 클라이언트에게 한번에 전송하는 패킷 크기이며 이 파라미터는 전송 효율에 영향을 줄 수 있다.

HA 설정
=======

Expand Down
Loading