일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- javascript
- jenkins
- it
- JVM
- ubuntu
- java
- ReactJS
- AWS
- tool
- springboot
- Design Patterns
- devops
- php
- Spring
- 맛집
- Spring Boot
- jsp
- Git
- Gradle
- MySQL
- Spring Batch
- linux
- db
- Web Server
- laravel
- elasticsearch
- IntelliJ
- redis
- Oracle
- 요리
- Today
- Total
아무거나
@Async 를 활용한 비동기 호출 구현 본문
@Async 를 활용한 비동기 호출 구현
예제코드
@Async 를 사용해야 하는 이유
Spring @Async 를 사용하지 않으면 Thread 를 관리할 수 없어서 매우 위험하다. 예를 들어 동시에 1000 개의 호출이 요청된다면 짧은 시간 안에 Thread 를 1000 개를 생성해야 되므로 Thread 를 생성하는 비용은 적지 않기 때문에 프로그램 성능에 악영향을 끼칠 수 있다고 한다.
@Async
@EnableAsync 어노테이션을 설정 클래스에 추가해야 합니다. 이 설정을 통해 스프링은 비동기 작업을 위한 설정을 활성화하고, AsyncTaskExecutor 인터페이스의 구현체를 사용하여 비동기 작업을 처리한다. (@EnableAsync 어노테이션을 통해 스프링이 비동기 처리를 위한 프록시 객체를 생성하고, 이를 통해 실제 메소드 호출을 비동기적으로 처리하기 때문)
기본적으로 스프링은 SimpleAsyncTaskExecutor를 사용하지만, ThreadPoolTaskExecutor와 같은 다른 Executor를 사용하여 성능을 향상시킬 수 있다. 왜냐하면 SimpleAsyncTaskExecutor는 매 요청마다 새로운 스레드를 생성하는 반면, ThreadPoolTaskExecutor는 미리 생성된 스레드 풀을 사용하기 때문에 오버헤드를 줄이고 성능을 향상시킬 수 있다.
Java 비동기 구현에 대한 정의
- 리턴 값이 있는 경우 Future, ListenableFuture, CompletableFuture 을 사용하며 비동기 메소드의 반환 형태를 new AsyncResult() 로 리턴하면 된다.
- Future: Future 인터페이스는 java5 부터 비동기 연산을 위해 추가되었다. 그리고 값을 리턴받기 위해선 future.get() 은 블로킹을 통해 요청 결과가 올 때까지 기다리는 역할을 한다. 그래서 비동기
블로킹 방식이 되어버려 성능이 좋지 않다.
또한 여러 Future 를 조합하는 것도 어렵고 보통 Future는 사용하지 않는다고 한다. 또한 여러 연산을 결합하기 어렵고 예외처리가 힘들어 잘 사용하지 않는다고 한다.... for (int i = 1; i <= 5; i++) { Future<String> future = asyncService.isFeatureReturn(i + ""); log.info("============= isAsyncAnnotationReturn : {}", future.get()); }
... @Async("threadPoolTaskExecutor") public Future<String> isFeatureReturn(String message) throws InterruptedException { log.info("============= Feature Task Start - {}", message); Thread.sleep(3000); return new AsyncResult<>("bkjeon-" + message); }
- ListenableFuture: 콜백을 통해 논블로킹 방식으로 작업을 처리할 수 있고 값을 리턴받을 때 Future 처럼 블로킹 방식으로 받지 않아서 성능에 용이하다. 그러나 콜백 메소드의 단점이 생긴다. 즉, 중첩 구조를 가지기 때문에 코드 가독성이 떨어진다. (
ListenableFuture 는 spring 6 부터 deprecate 되었다고 한다.
)... /** * future.get() 은 블로킹을 통해 요청 결과가 올 때까지 기다리는 역할을 한다. * 그러므로 비동기 블로킹 방식이 되어버려 성능이 좋지 않다. 보통 Future 는 사용하지 않는다. * [결과] * ============= Feature Task Start - 1 * ============= isAsyncAnnotationReturn : bkjeon-1 * ============= Feature Task Start - 2 * ============= isAsyncAnnotationReturn : bkjeon-2 * ============= Feature Task Start - 3 * ============= isAsyncAnnotationReturn : bkjeon-3 * ============= Feature Task Start - 4 * ============= isAsyncAnnotationReturn : bkjeon-4 * ============= Feature Task Start - 5 * ============= isAsyncAnnotationReturn : bkjeon-5 */ for (int i = 1; i <= 5; i++) { ListenableFuture<String> listenableFuture = asyncService.isListenableFutureReturn(i + ""); listenableFuture.addCallback(System.out::println, error -> System.out.println(error.getMessage())); }
... /** * ListenableFuture 은 콜백을 통해 논블로킹 방식으로 작업을 처리할 수 있다. * addCallback() 메소드의 첫 번째 파라미터는 작업 완료 콜백 메소드, 두 번째 파라미터는 작업 실패 콜백 메소드를 정의하면 된다. * 스레드 풀의 core 스레드를 3개로 설정했으므로 "Task Start" 메시지가 처음에 3개 찍힘 * [결과] * ============= Feature Task Start - 1 * ============= Feature Task Start - 2 * ============= Feature Task Start - 3 * bkjeon-2 * bkjeon-1 * bkjeon-3 * ============= Feature Task Start - 4 * ============= Feature Task Start - 5 * bkjeon-5 * bkjeon-4 */ @Async("threadPoolTaskExecutor") public ListenableFuture<String> isListenableFutureReturn(String message) throws InterruptedException { log.info("============= ListenableFuture Task Start - {}", message); Thread.sleep(3000); return new AsyncResult<>("bkjeon-" + message); }
CompletableFuture
: Future, ListenableFuture 을 대신해 해당 클래스를 사용하는것을 권장한다.- 해당 기능의 샘플은 다음 Step 에서 확인하자.
- Future: Future 인터페이스는 java5 부터 비동기 연산을 위해 추가되었다. 그리고 값을 리턴받기 위해선 future.get() 은 블로킹을 통해 요청 결과가 올 때까지 기다리는 역할을 한다. 그래서 비동기
CompletableFuture
CompletableFuture 기본 사용 (여러 메서드가 존재하지만 보편적으로 사용되는 메서드 위주로 설명)
CompletableFuture 는 Java8 에 등장하였으며 Future 와 다르게 Non-blocking 에 여러 연산을 함께 연결/결합 하기가 쉽고 예외처리에 용이하다.
CompletableFuture 는 Future, CompleteStage 인터페이스를 구현하고 있다.
- Future: java5에서 비동기 연산을 위해 추가된 인터페이스
- CompleteStage: 여러 연산을 결합할 수 있도록 연산이 완료되면 다음 단계의 작업을 수행하거나 값을 연산하는 비동기식 연산 단계를 제공하는 인터페이스
먼저 CompletableFuture 클래스의 정적 메서드인 supplyAsync() 메서드를 통해 CompletableFuture 인스턴스를 생성할 수 있다. 또한 Supplier 인수로 upplyAsync() 호출 시 ForkJoinPool.commonPool()에서 전달된 Supplier를 비동기적으로 호출한 뒤 CompleteableFuture 인스턴스를 반환한다.
public void isCompletableFutureReturn(String message) throws ExecutionException, InterruptedException {
CompletableFuture<String> testInfoFuture = CompletableFuture
.supplyAsync(() -> getAsyncTestInfo(message));
log.info("============= CompletableFuture Return - {}", testInfoFuture.get());
}
private String getAsyncTestInfo(String message) {
try {
Thread.sleep(3000);
} catch (InterruptedException ie) {
log.error("InterruptedException", ie);
}
return "bkjeon async";
}
순차적 연산 처리
복잡한 연산을 비동기로 순차적으로 처리해야 할 때 하기 메소드들을 참고
- thenApply()
- 이전 단계의 결괏값을 인수로 사용하고, 전달한 Function 을 다음 연산으로 사용
public void isCompletableFutureReturnThenApply(String message) throws ExecutionException, InterruptedException { CompletableFuture<String> testInfoFuture = CompletableFuture .supplyAsync(() -> getAsyncTestInfo(message)); CompletableFuture<String> testInfoFuture2 = testInfoFuture.thenApply(this::getAsyncTestInfo2); log.info("============= CompletableFuture Then Apply Return - {}", testInfoFuture2.get()); // 이전 연산 완료 후(2초 후) 다음 연산 처리 } private String getAsyncTestInfo(String message) { try { Thread.sleep(3000); } catch (InterruptedException ie) { log.error("InterruptedException", ie); } return "bkjeon async"; } private String getAsyncTestInfo2(String message) { try { Thread.sleep(5000); } catch (InterruptedException ie) { log.error("InterruptedException", ie); } return "bkjeon async2"; }
- 이전 단계의 결괏값을 인수로 사용하고, 전달한 Function 을 다음 연산으로 사용
- thenAccept()
- Consumer를 인자로 받고, 결과를 CompletableFuture<Void>를 반환하며, 리턴 타입이 없는 로직을 호출할 때 사용할 수 있다.
public void isCompletableFutureReturnThenAccept(String message) throws ExecutionException, InterruptedException { CompletableFuture<String> testInfoFuture = CompletableFuture .supplyAsync(() -> getAsyncTestInfo(message)); CompletableFuture<Void> thenAccept = testInfoFuture.thenAccept(this::voidTest); thenAccept.get(); // Completed: bkjeon async } private String getAsyncTestInfo(String message) { try { Thread.sleep(3000); } catch (InterruptedException ie) { log.error("InterruptedException", ie); } return "bkjeon async"; } private void voidTest(String message) { log.info("Completed: " + message); }
- Consumer를 인자로 받고, 결과를 CompletableFuture<Void>를 반환하며, 리턴 타입이 없는 로직을 호출할 때 사용할 수 있다.
- thenRun()
- Runnable를 인자로 받고, thenAccept() 메서드와 동일하게 결과를 CompletableFuture<Void>로 반환된다. 댠, thenAccept() 메서드와 다르게 CompletableFuture<Void>.get() 호출 없이 연산이 실행
public void isCompletableFutureReturnThenRun(String message) { CompletableFuture<String> testInfoFuture = CompletableFuture .supplyAsync(() -> getAsyncTestInfo(message)); testInfoFuture.thenRun(() -> voidTest(message)); // Completed: test thenRun() } private void voidTest(String message) { log.info("Completed: " + message); }
- Runnable를 인자로 받고, thenAccept() 메서드와 동일하게 결과를 CompletableFuture<Void>로 반환된다. 댠, thenAccept() 메서드와 다르게 CompletableFuture<Void>.get() 호출 없이 연산이 실행
연산 결합하기
복잡한 연산을 결합할 때 하기 메소드를 참고
- thenCompose()
- CompletableFuture 인스턴스를 결합하여 연산을 처리 (두 개의 Future를 순차적으로 연결 -> 이전 단계의 결과(CompletionStage)를 다음 CompletableFuture 안에서 사용)
public void isCompletableFutureReturnThenCompose(String message) throws ExecutionException, InterruptedException { CompletableFuture<String> testInfoFuture = CompletableFuture .supplyAsync(() -> getAsyncTestInfo(message)).thenCompose(s -> CompletableFuture.supplyAsync(() -> getAsyncTestInfo2(s))); log.info("============= CompletableFuture Then Compose Return - {}", testInfoFuture.get()); } private String getAsyncTestInfo(String message) { try { Thread.sleep(3000); } catch (InterruptedException ie) { log.error("InterruptedException", ie); } return "bkjeon async"; } private String getAsyncTestInfo2(String message) { try { Thread.sleep(5000); } catch (InterruptedException ie) { log.error("InterruptedException", ie); } return "bkjeon async2"; }
- CompletableFuture 인스턴스를 결합하여 연산을 처리 (두 개의 Future를 순차적으로 연결 -> 이전 단계의 결과(CompletionStage)를 다음 CompletableFuture 안에서 사용)
- thenCombine()
- 두 개의 독립적인 Future를 처리하고 두 결과를 결합하여 추가적인 작업을 수행 (Future와 Functional Interface인 BiFunction를 파라미터로 받아서 두 결과를 결합한 추가적인 처리가 가능)
public void isCompletableFutureReturnThenCombine(String message) throws ExecutionException, InterruptedException { CompletableFuture<String> testInfoFuture = CompletableFuture.supplyAsync(() -> getAsyncTestInfo(message)) .thenCombine(CompletableFuture.supplyAsync(() -> getReturnStr("message1")), this::getCombineReturnStr); // ============= CompletableFuture Then Combine Return - bkjeon async. [옵션] Test!!!! log.info("============= CompletableFuture Then Combine Return - {}", testInfoFuture.get()); } private String getAsyncTestInfo(String message) { try { Thread.sleep(3000); } catch (InterruptedException ie) { log.error("InterruptedException", ie); } return "bkjeon async"; } private String getReturnStr(String message) { return "Test!!!!"; } private String getCombineReturnStr(String message1, String message2) { return message1 + ". [옵션] " + message2; }
- 두 개의 독립적인 Future를 처리하고 두 결과를 결합하여 추가적인 작업을 수행 (Future와 Functional Interface인 BiFunction를 파라미터로 받아서 두 결과를 결합한 추가적인 처리가 가능)
- thenAcceptBoth()
- thenCombine() 메서드와 유사하지만 thenAcceptBoth() 메서드는 결괏값을 전달할 필요가 없으면 간단하게 사용할 수 있다. (주로 thenCombine() 는 데이터 조회 후 추가적인 정제 작업에 쓰이고, thenAcceptBoth() 는 insert, update 와 같은 작업에 유용하다.)
public void isCompletableFutureReturnThenAcceptBoth(String message) { // 결과: bkjeon async. [옵션] Test!!!! CompletableFuture.supplyAsync(() -> getAsyncTestInfo(message)) .thenAcceptBoth(CompletableFuture.supplyAsync(() -> getReturnStr("message1")), this::getUpdateInfo); } private String getAsyncTestInfo(String message) { try { Thread.sleep(3000); } catch (InterruptedException ie) { log.error("InterruptedException", ie); } return "bkjeon async"; } private String getReturnStr(String message) { return "Test!!!!"; } private void getUpdateInfo(String message1, String message2) { log.info(message1 + ". [옵션] " + message2); }
- thenCombine() 메서드와 유사하지만 thenAcceptBoth() 메서드는 결괏값을 전달할 필요가 없으면 간단하게 사용할 수 있다. (주로 thenCombine() 는 데이터 조회 후 추가적인 정제 작업에 쓰이고, thenAcceptBoth() 는 insert, update 와 같은 작업에 유용하다.)
thenApply or thenCompose
보다보면 두 개의 사용기준이 모호한 경우가 있다. 그럴 경우 하기 내용을 참고하자.
- 각 CompletableFuture의 호출 결과가 필요할 경우, thenApply() 메서드를 사용하는 것이 적합
- 각 CompletableFuture의 결과를 결합한 최종 연산 결과만 필요한 경우, thenCompose() 메서드를 사용하는 것이 적합
병렬처리
- allOf()
- 정적 메서드를 사용하면 여러 Future를 병렬로 처리할 수 있다. var-arg로 제공되는 모든 Future의 처리를 대기하다가 모두 완료되면 CompletableFuture<Void>를 반환한다. 단, 병렬 처리는 가능하지만, 모든 Future의 결과를 결합한 결괏값을 반환할 수 없는 한계가 있다. get() 메서드와 유사한 join() 메서드를 활용하면 allOf() 메서드의 한계를 극복할 수 있지만, Future가 정상적으로 완료되지 않을 경우 확인되지 않은 예외가 발생할 수 있는 단점이 있다는 점을 고려해야 한다.
public void isCompletableFutureReturnAllOf(String message) throws ExecutionException, InterruptedException { CompletableFuture<String> testInfoFuture = CompletableFuture.supplyAsync(() -> { log.info("future1: " + Thread.currentThread().getName()); // ForkJoinPool.commonPool-worker-5 return getAsyncTestInfo("message1"); }); CompletableFuture<String> testInfoFuture2 = CompletableFuture.supplyAsync(() -> { log.info("future1: " + Thread.currentThread().getName()); // ForkJoinPool.commonPool-worker-9 return getReturnStr("message2"); }).thenCompose(s -> CompletableFuture.supplyAsync(() -> "testInfoFuture2")); CompletableFuture<String> testInfoFuture3 = CompletableFuture.supplyAsync(() -> { log.info("future1: " + Thread.currentThread().getName()); // ForkJoinPool.commonPool-worker-19 return getReturnStr2("message3"); }).thenCompose(s -> CompletableFuture.supplyAsync(() -> "testInfoFuture3"));; CompletableFuture<Void> combinedFuture = CompletableFuture.allOf(testInfoFuture, testInfoFuture2, testInfoFuture3); combinedFuture.get(); if (testInfoFuture.isDone() && testInfoFuture2.isDone() && testInfoFuture3.isDone()) { String combined = Stream.of(testInfoFuture, testInfoFuture2, testInfoFuture3) .map(CompletableFuture::join) .collect(Collectors.joining(" ")); log.info(combined); } } private String getAsyncTestInfo(String message) { try { Thread.sleep(3000); } catch (InterruptedException ie) { log.error("InterruptedException", ie); } return "bkjeon async"; } private String getReturnStr(String message) { return "Test!!!!"; } private String getReturnStr2(String message) { return "Test2222!!!!"; }
- 정적 메서드를 사용하면 여러 Future를 병렬로 처리할 수 있다. var-arg로 제공되는 모든 Future의 처리를 대기하다가 모두 완료되면 CompletableFuture<Void>를 반환한다. 단, 병렬 처리는 가능하지만, 모든 Future의 결과를 결합한 결괏값을 반환할 수 없는 한계가 있다. get() 메서드와 유사한 join() 메서드를 활용하면 allOf() 메서드의 한계를 극복할 수 있지만, Future가 정상적으로 완료되지 않을 경우 확인되지 않은 예외가 발생할 수 있는 단점이 있다는 점을 고려해야 한다.
예외처리
- handle()
- 예외를 잡는 대신 CompletableFuture 클래스를 사용하여 별도의 메서드에서 예외 처리가 가능하며, 연산 결과(성공적으로 완료된 경우)와 발생한 예외(정상적으로 완료되지 않은 경우)를 매개 변수로 받을 수 있다.
CompletableFuture<String> testInfoFuture = CompletableFuture.supplyAsync(() -> { if (message == null) { throw new IllegalArgumentException("The message must not be null!"); } return getAsyncTestInfo(message); }).handle((s, t) -> { // s: Future 실행 완료 후 결괏값, t: Future 실행 중 발생한 예외 /** * 연산이 성공적으로 완료된 경우 * s = bkjeon async * t = null * * 연산이 정상적으로 완료되지 않고 예외가 발생한 경우 * s = null * t = java.util.concurrent.CompletionException: java.lang.IllegalArgumentException: The message must not * be null! */ return t == null ? s : "Default value"; }); log.info("============= CompletableFuture Handle Return - {}", testInfoFuture.get());
- 예외를 잡는 대신 CompletableFuture 클래스를 사용하여 별도의 메서드에서 예외 처리가 가능하며, 연산 결과(성공적으로 완료된 경우)와 발생한 예외(정상적으로 완료되지 않은 경우)를 매개 변수로 받을 수 있다.
- completeExceptionally()
- 연산이 정상적으로 완료되지 않을 경우 예외를 정의하여 비동기 처리를 완료시킬 수 있다. (특정 상황에 예외가 발생하도록 Future에 예외를 지정할 수 있고, 특정 상황에 맞는 동작을 하도록 지정할 수 있어서 동적으로 행동이나 예외를 지정해야 할 경우 사용하면 된다.)
String testMessage = null; CompletableFuture<String> testInfoFuture = new CompletableFuture<>(); if (testMessage == null) { testInfoFuture.completeExceptionally(new IllegalArgumentException("The testMessage must not be null!")); } if (testMessage != null) { testInfoFuture.complete(getAsyncTestInfo(testMessage)); } try { testInfoFuture.get(); } catch (ExecutionException | InterruptedException ee) { Throwable cause = ee.getCause(); log.error("Exception occurred: {}", cause.getMessage()); }
- 연산이 정상적으로 완료되지 않을 경우 예외를 정의하여 비동기 처리를 완료시킬 수 있다. (특정 상황에 예외가 발생하도록 Future에 예외를 지정할 수 있고, 특정 상황에 맞는 동작을 하도록 지정할 수 있어서 동적으로 행동이나 예외를 지정해야 할 경우 사용하면 된다.)
Timeout
- get(long timeout, TimeUnit unit)
- get() 메서드 호출 시 전달한 timeout 설정보다 실행 시간이 더 오래 걸린다면 TimeoutException 예외를 발생
public void isCompletableFutureReturnCompleteTimeoutGet(String message) { CompletableFuture<String> testInfoFuture = CompletableFuture.supplyAsync(() -> getAsyncTestInfo("TEST")); try { testInfoFuture.get(2000, TimeUnit.MILLISECONDS); } catch (TimeoutException | InterruptedException | ExecutionException e) { log.error("Timeout Exception: " + e); } } private String getAsyncTestInfo(String message) { try { Thread.sleep(4000); } catch (InterruptedException ie) { log.error("InterruptedException", ie); } return "bkjeon async"; }
- get() 메서드 호출 시 전달한 timeout 설정보다 실행 시간이 더 오래 걸린다면 TimeoutException 예외를 발생
- orTimeout()
- 지정된 시간까지 작업이 완료되지 않은 경우, ExecutionException 예외를 발생 (java9 이상부터 사용가능)
public void isCompletableFutureReturnCompleteOrTimeout(String message) { CompletableFuture<String> testInfoFuture = CompletableFuture.supplyAsync(() -> getAsyncTestInfo("TEST")) .orTimeout(2, TimeUnit.SECONDS); try { testInfoFuture.get(); } catch (InterruptedException | ExecutionException e) { log.error("Timeout Exception: " + e); } } private String getAsyncTestInfo(String message) { try { Thread.sleep(4000); } catch (InterruptedException ie) { log.error("InterruptedException", ie); } return "bkjeon async"; }
- 지정된 시간까지 작업이 완료되지 않은 경우, ExecutionException 예외를 발생 (java9 이상부터 사용가능)
- completeOnTimeout
- 지정된 시간까지 작업이 완료되지 않은 경우, 지정된 기본값으로 Future를 완료 (java9 이상부터 사용가능)
public void isCompletableFutureReturnCompleteCompleteOnTimeout(String message) { CompletableFuture<String> testInfoFuture = CompletableFuture.supplyAsync(() -> getAsyncTestInfo("TEST")) .completeOnTimeout("default value", 2, TimeUnit.SECONDS); String result; try { result = testInfoFuture.get(); log.info(">>>>>>>>>>>>>>>>> result: " + result); } catch (InterruptedException | ExecutionException e) { log.error("Timeout Exception: " + e); } } private String getAsyncTestInfo(String message) { try { Thread.sleep(4000); } catch (InterruptedException ie) { log.error("InterruptedException", ie); } return "bkjeon async"; }
- 지정된 시간까지 작업이 완료되지 않은 경우, 지정된 기본값으로 Future를 완료 (java9 이상부터 사용가능)
참고
- https://steady-coding.tistory.com/611
- https://f-lab.kr/insight/understanding-spring-async-annotation-and-thread-pool
- https://velog.io/@brucehan/CompletableFuture-%EC%A0%95%EB%A6%AC
- https://11st-tech.github.io/2024/01/04/completablefuture/
'Java & Kotlin > Spring' 카테고리의 다른 글
[Spring Actuator] Aspect 를 활용한 특정 metric 의 tag 의 여러 value 값 별로 시간단위로 실시간 카운트 저장 (0) | 2023.12.04 |
---|---|
[Spring Actuator] Example 6편 - Timer (1) | 2023.11.30 |
[Spring Actuator] Example 5편 - Gauge (2) | 2023.11.27 |
[Spring Actuator] Example 4편 - Metrics Tags (0) | 2023.11.27 |
[Spring Actuator] Example 3편 - Counter (0) | 2023.11.26 |