Skip to content

Check the number of Queries per Request in a Multi-DataSource environment.

Notifications You must be signed in to change notification settings

Hyeon9mak/multi-datasource-query-counter

Repository files navigation

🖥️ Multi-DataSource Query Counter

한국어 | English

🖥️ 소개

이 프로젝트는 JDBC API(Spring Data JPA(Hibernate), MyBatis, ...) 환경에서 쿼리 개수를 측정하는 간단한 도구입니다.
Multi-DataSource 환경에서도 원활하게 API 요청당 쿼리 개수를 측정할 수 있습니다.

Hibernate: 
    select
        id,
        name
    from
        example 
        
Hibernate: 
    select
        count(id) 
    from
        example
                 
ERROR --- 'GET /examples' - totalQueryCount: 2, totalSpendTime: 7ms

🖥️ 사용 방법

1. 라이브러리 의존성 추가

Important

Spring Boot 3.x는 jakarta.* 패키지를 사용하고 Spring Boot 2.x는 javax.* 패키지를 사용합니다. 프로젝트와 호환되는 라이브러리 버전을 선택해야 합니다.

사용중인 Spring Boot 버전에 따라 적절한 라이브러리 버전을 선택하세요:

Spring Boot Version Library Version
Spring Boot 2.x 2.x.x-spring-boot-2
Spring Boot 3.x 2.x.x-spring-boot-3

Java Gradle(Groovy DSL)

repositories {
    mavenCentral()
    maven { url 'https://jitpack.io' }
}

dependencies {
    // For Spring Boot 2.x
    implementation 'com.github.Hyeon9mak:multi-datasource-query-counter:2.0.2-spring-boot-2'

    // For Spring Boot 3.x
    // implementation 'com.github.Hyeon9mak:multi-datasource-query-counter:2.0.2-spring-boot-3'
}

Kotlin Gradle(Kotlin DSL)

repositories {
    mavenCentral()
    maven { url = uri("https://jitpack.io") }
}

dependencies {
    // For Spring Boot 2.x
    implementation("com.github.Hyeon9mak:multi-datasource-query-counter:2.0.2-spring-boot-2")

    // For Spring Boot 3.x
    // implementation("com.github.Hyeon9mak:multi-datasource-query-counter:2.0.2-spring-boot-3")
}

2. 로깅 옵션 설정

우선순위는 다음과 같습니다: error > warn > info.
enable 의 기본값은 false 이고, count 의 기본값은 1 입니다.

query-counter.logging.level:
  error:
    enable: true
    count: 5
  warn:
    enable: true
    count: 2
  info:
    enable: false

3. 대상 API 지정

@CountQueries 어노테이션을 사용하여 측정하고 싶은 API에 지정하세요.

@CountQueries
@GetMapping("/examples")
public List<Example> getExamples() {
    return repository.getExamples();
}

4. 로깅 결과 확인

애플리케이션을 시작하고 로그를 확인하세요.

ERROR --- 'GET /examples' - totalQueryCount: 2, totalSpendTime: 7ms

이제부터 마음껏 즐기시면 됩니다! 🎉


🖥️ 비동기 환경 지원


🖥️ 핵심 원리

image

JDBC API와 Spring AOP, CGLib 프록시를 기반으로 합니다.
... 이게 전부입니다!


🖥️ 추천 문서

About

Check the number of Queries per Request in a Multi-DataSource environment.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages