DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Beyond Manual Annotation: Engineering Self-Correcting Pseudo-Labeling Pipelines
  • Building Threat Intelligence Pipelines Using Python, APIs, and Elasticsearch
  • Implementing Secure API Gateways for Microservices Architecture
  • Contract-First Integration: Building Scalable Systems With Flyway, OpenAPI, and Kafka

Trending

  • Testing AI-Infused Apps: A Dual-Layer Framework for AI Quality Assurance
  • Building a High-Throughput Distributed Sequence Generator Using the Hi-Lo Algorithm
  • Using LLMs to Automate Data Cleaning and Transformation Pipelines
  • Exactly-Once Processing: Myth vs Reality
  1. DZone
  2. Data Engineering
  3. Databases
  4. Asynchronous API Calls: Spring Boot, Feign, and Spring @Async

Asynchronous API Calls: Spring Boot, Feign, and Spring @Async

Learn how to make asynchronous API calls from Spring Boot using Spring Cloud OpenFeign and Spring @Async to reduce the response time to that of a one-page call.

By 
Mukut Bhattacharjee user avatar
Mukut Bhattacharjee
·
Updated Sep. 28, 22 · Code Snippet
Likes (6)
Comment
Save
Tweet
Share
32.9K Views

Join the DZone community and get the full member experience.

Join For Free

The requirement was to hit an eternal web endpoint and fetch some data and apply some logic to it, but the external API was super slow and the response time grew linearly with the number of records fetched. This called for the need to parallelize the entire API call in chunks/pages and aggregate the data.

Our synchronous FeignClient:

Java
 
@FeignClient(url = "${external.resource.base}", name = "external")
public interface ExternalFeignClient {

    @GetMapping(value = "${external.resource.records}", produces = "application/json")
    ResponseWrapper<Record> getRecords(@RequestHeader Map<String, String> header,
                                            @RequestParam Map<String, String> queryMap,
                                            @RequestParam("limit") Integer limit,
                                            @RequestParam("offset") Integer offset);


}


Let's prepare the configuration for the async framework:

Java
 
@EnableAsync
@Configuration
public class AsyncConfig {
 
	@Bean
	public Executor taskExecutor() {
		ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
		executor.setCorePoolSize(5); // set the core pool size
		executor.setMaxPoolSize(10); // max pool size
		executor.setThreadNamePrefix("ext-async-"); // give an optional name to your threads
		executor.initialize();
		return executor;
	}
  
}  


Now to make the feign clients work in asynchronous mode, we need to wrap them with an async wrapper returning a CompletableFuture.

Java
 
@Service
public class ExternalFeignClientAsync {
  
	@Awtowired
	private ExternalFeignClient externalFeignClient;

	@Async
	CompletableFuture<ResponseWrapper<Record>> getRecordsAsync(Map<String, String> header,
                                            Map<String, String> header,
                                            Integer limit,
                                            Integer offset){
		CompletableFuture.completedFuture(externalFeignClient.getRecords(header,header,limit,offset));
	}

}


Now our async feign client is ready with a paginating option using the limit and offset. Let's suppose we know or we figure out by some means (out of scope for this article), the total number of records available. We can then consider a page size for each call and figure out how many API calls we need to make and fire them in parallel.

Java
 
@Service
public class ExternalService {
  
  @Autowired
  private ExternalFeignClientAsync externalFeignClientAsync;
  
  List<Record> getAllRecords(){
    
    final AtomicInteger offset = new AtomicInteger();
    int pageSize = properties.getPageSize(); // set this as you wish
    int batches = (totalCount / pageSize) + (totalCount % pageSize > 0 ? 1 : 0);
    return IntStream.range(0, batches)
                    .parallel()
                    .mapToObj(i -> {
                        final int os = offset.getAndAdd(pageSize);
                        return externalFeignClientAsync.getRecordsAsync(requestHeader, queryMap, fetchSize, os);
                    })
                    .map(CompletableFuture::join)
                    .map(ResponseWrapper::getItems)
                    .flatMap(List::stream)
                    .toList();
  }
}
  


And voila!

The entire API call is now broken down into pages and fired asynchronously, with the overall response time reduced to the time taken by a one-page call.

API

Opinions expressed by DZone contributors are their own.

Related

  • Beyond Manual Annotation: Engineering Self-Correcting Pseudo-Labeling Pipelines
  • Building Threat Intelligence Pipelines Using Python, APIs, and Elasticsearch
  • Implementing Secure API Gateways for Microservices Architecture
  • Contract-First Integration: Building Scalable Systems With Flyway, OpenAPI, and Kafka

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook