jira-importer commented on issue #480: URL: https://github.com/apache/maven-deploy-plugin/issues/480#issuecomment-2771544493
**[Matt Nelson](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=mattnelson)** commented How is the scope of this issue changed with the maven-3.5.0 conversion to maven-resolver? I am using parallel builds with the `deployAtEnd` flag on a reactor with 40+ modules. Holding onto all the artifacts until the end there is a huge backlog of IO operations that are taking 33% of the build time. Some of that time could be attributed to the resources on the repository, but there is a huge potential for decreased build times by performing the uploads with any amount of parallelism. For each module there are 6 uploads and 1 download. The `<version>/maven-metadata.xml` appears to be uploaded twice ``` 15:25:19 [INFO] Uploaded: http://repo/com/company/project/my-artifact/0.15-SNAPSHOT/my-artifact-0.15-20170516.202515-32.jar (30689 KB at 7579.2 KB/sec) 15:25:21 [INFO] Uploaded: http://repo/com/company/project/my-artifact/0.15-SNAPSHOT/my-artifact-0.15-20170516.202515-32.pom (10 KB at 5.7 KB/sec) 15:25:21 [INFO] Downloaded: http://repo/com/company/project/my-artifact/maven-metadata.xml (420 B at 3.5 KB/sec) 15:25:22 [INFO] Uploaded: http://repo/com/company/project/my-artifact/0.15-SNAPSHOT/maven-metadata.xml (988 B at 1.4 KB/sec) 15:25:24 [INFO] Uploaded: http://repo/com/company/project/my-artifact/maven-metadata.xml (420 B at 0.2 KB/sec) 15:25:24 [INFO] Uploaded: http://repo/com/company/project/my-artifact/0.15-SNAPSHOT/my-artifact-0.15-20170516.202515-32-sources.jar (85 KB at 187.9 KB/sec) 15:25:25 [INFO] Uploaded: http://repo/com/company/project/my-artifact/0.15-SNAPSHOT/maven-metadata.xml (988 B at 1.7 KB/sec) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org