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

Auto-configure a bootstrapExecutor bean to be used by Framework's background bean initialization #32551

Closed

Conversation

ballista01
Copy link

Summary:
This pull request introduces the ability to auto-configure a bootstrapExecutor bean for background bean initialization in the Spring Framework. It provides an @BootstrapExecutor annotation to configure the properties of the ThreadPoolTaskExecutor used for background initialization.

Related Issues:
spring-projects/spring-boot#39791
#13410 (comment)

Changes:

  • Added @BootstrapExecutor annotation in org.springframework.context.annotation package to configure the bootstrap executor.
  • Modified ConfigurationClassPostProcessor to detect the presence of @BootstrapExecutor annotation on configuration classes and register a ThreadPoolTaskExecutor bean with the configured properties.
  • Added BootstrapExecutorBeanDefinitionParser to parse the <context:bootstrap-executor> XML element and register the ThreadPoolTaskExecutor bean. (Note: This is currently not functional and the logic is temporarily handled in ConfigurationClassPostProcessor.)
  • Updated ContextNamespaceHandler to register the BootstrapExecutorBeanDefinitionParser.
  • Added test cases in ConfigurationClassPostProcessorTests to verify the parallel bean initialization using the @BootstrapExecutor annotation.

Usage:
To use the bootstrapExecutor for background bean initialization:

  1. Add the @BootstrapExecutor annotation to one of your @Configuration classes.
  2. Configure the desired properties of the ThreadPoolTaskExecutor using the annotation attributes.
  3. Use @Bean(bootstrap = BACKGROUND) on the beans that should be initialized in the background.

Example:

@BootstrapExecutor(threadNamePrefix = "bootstrap-", corePoolSize = 2)
@Configuration
public class AppConfig {
    @Bean(bootstrap = BACKGROUND)
    public SlowInitBean slowBean() {
        return new SlowInitBean();
    }
}

Known Issues:

  • The BootstrapExecutorBeanDefinitionParser is currently not functional due to a parsing issue. The logic is temporarily handled in the processConfigBeanDefinitions method of ConfigurationClassPostProcessor.

Next Steps:

  • Investigate and resolve the issue with BootstrapExecutorBeanDefinitionParser to properly parse the <context:bootstrap-executor> XML element.
  • Consider automatically configuring a bootstrapExecutor based on the number of @Bean(bootstrap=BACKGROUND) annotations if @BootstrapExecutor is not found.

@pivotal-cla
Copy link

@ballista01 Please sign the Contributor License Agreement!

Click here to manually synchronize the status of this Pull Request.

See the FAQ for frequently asked questions.

@pivotal-cla
Copy link

@ballista01 Thank you for signing the Contributor License Agreement!

@spring-projects-issues spring-projects-issues added the status: waiting-for-triage An issue we've not yet triaged or decided on label Mar 28, 2024
@ballista01
Copy link
Author

ballista01 commented Mar 28, 2024

@wilkinsona Thanks for notifying me the Springboot upgrade progress in spring-projects/spring-boot#39791 (comment). I found that I could try to solve the issue spring-projects/spring-boot#39791 in Spring Framework first. The @BootstrapExecutor() annotation is working, but we could add other improvements. Do you think that I'm on the right track?

@ballista01 ballista01 marked this pull request as draft March 28, 2024 21:38
@snicoll
Copy link
Member

snicoll commented Mar 29, 2024

The change you're referring to must happen on the Spring Boot side of things. Andy was telling you we can't really work on the feature until Spring Boot switches to Spring Framework 6.2. He also gave you the timeline.

@snicoll snicoll closed this Mar 29, 2024
@snicoll snicoll added status: invalid An issue that we don't feel is valid and removed status: waiting-for-triage An issue we've not yet triaged or decided on labels Mar 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
status: invalid An issue that we don't feel is valid
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants