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

Very high initial build time when using connectors. #656

Open
GDLMadushanka opened this issue Jan 24, 2025 · 0 comments
Open

Very high initial build time when using connectors. #656

GDLMadushanka opened this issue Jan 24, 2025 · 0 comments

Comments

@GDLMadushanka
Copy link
Contributor

Description

It takes more than 15 mins and download 432MB of dependencies when we build a VSCode project with a connector. ex: CSV module

I manage to reduce the build time to 2.38 mins and download size to 46.7 MB by skipping transitive dependencies of the connector as below.

<dependency>
      <groupId>org.wso2.integration.module</groupId>
      <artifactId>mi-module-csv</artifactId>
      <version>1.0.6</version>
      <type>zip</type>
      <exclusions>
        <exclusion>
          <groupId>*</groupId>
          <artifactId>*</artifactId>
        </exclusion>
      </exclusions>
</dependency>

Steps to Reproduce

Build a project in a clean repo.

Version

latest

Environment Details (with versions)

No response

@GDLMadushanka GDLMadushanka changed the title Very high initial build time when we use connectors. Very high initial build time when using connectors. Jan 24, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants