github / maven-plugins

Official GitHub Maven Plugins
MIT License
584 stars 198 forks source link

site-maven-plugin is 10 times more slow then plain git command line with ssh #27

Open carrot-garden opened 11 years ago

carrot-garden commented 11 years ago

site-maven-plugin is 10 times more slow then plain git command line with ssh

I suggest to convert plugin transport to direct git invocations

yegor256 commented 10 years ago

+1

opoo commented 10 years ago

+1

I found that this plugin calls method org.eclipse.egit.github.core.service.DataService#createBlob() for every file, and this method will post file binary content to GitHub API server every time.

I rewrite the plugin. It will be faster when I call createBlob() in multi-thread, but many 502 errors occured. Less threads less errors, more threads more errors, and sometimes works well without any errors. It's weird.

ryancarlson commented 10 years ago

+1

StefanLiebenberg commented 8 years ago

+1

bguerin commented 8 years ago

See #90...

edrdo commented 7 years ago

+1

WolfgangFahl commented 5 years ago

5 years and not even an assignee or a milestone ...

rsadasiv commented 3 years ago

+100

luzhichao commented 2 years ago

同意