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

Handler_read_rnd 증가 #9

Open
dongwook-chan opened this issue Jul 22, 2023 · 1 comment
Open

Handler_read_rnd 증가 #9

dongwook-chan opened this issue Jul 22, 2023 · 1 comment
Assignees
Labels
enhancement New feature or request

Comments

@dongwook-chan
Copy link

dongwook-chan commented Jul 22, 2023

시나리오

MySQL로부터 이벤트를 받아오기 위해 다음 코드를 실행했습니다.

from pymysqlreplication import BinLogStreamReader

stream = BinLogStreamReader(connection_settings=MYSQL_SETTINGS,
                                blocking=True,
                                )

for binlogevent in stream:
    pass

MySQL의 특성

이슈가 발생한 MySQL은 다음과 같은 특성이 있습니다.

  • binary log가 빈번히 rotate됨
  • 테이블 개수가 많으며, 테이블 당 컬럼 개수가 많음
  • DML이 빈번히 발생 중 (특정 테이블에 몰리지 않고, 전체 테이블에 골고루 DML 발생)

이슈

코드가 실행된 후에 MySQL의 Handler_read_rnd 값이 급증한 후 유지되고 있습니다.
Handler_read_rnd의 급증으로 인해 MySQL에 다음과 같은 영향이 있을 것으로 예상됩니다.

  • Disk IO 증대
  • 사용자의 쿼리에 대한 응답 시간 증대

요구 사항

위 코드를 실행한 후에도 Handler_read_rnd값이 실행 이전과 동일하도록 본 패키지 코드를 수정해주세요.

@dongwook-chan dongwook-chan added the enhancement New feature or request label Jul 26, 2023
@davinc71998 davinc71998 self-assigned this Aug 9, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

4 participants