GithubHelp home page GithubHelp logo

Comments (15)

johncarl81 avatar johncarl81 commented on May 19, 2024

This is interesting. Could you give me a ballpark of how any parcel annotated classes you're working with?

from parceler.

doniwinata0309 avatar doniwinata0309 commented on May 19, 2024

Basically something like this: https://github.com/doniwinata0309/build-perf-test/blob/test/parceler/androidAppModule1/src/main/java/com/tes1.java

But some are more complex and extending from few parents, also contains field from custom object.

I just created 300+ dummy parcel class on this project
https://github.com/doniwinata0309/build-perf-test/tree/test/parceler

That will produce this flamegraph

Screen Shot 2020-10-22 at 18 06 29

android_build-6.7-flames.svg.zip

So it seems this process that taking so long
https://github.com/johncarl81/transfuse/blob/master/transfuse-support/src/main/java/org/androidtransfuse/transaction/CodeGenerationScopedTransactionWorker.java#L49

from parceler.

johncarl81 avatar johncarl81 commented on May 19, 2024

Right, ok... looking at it deeper, it looks like it's taking a long time to flush the FileOutputStream to disk. Not sure if we'll be able to do anything about this.

A while ago we implemented incremental processing to the annotation processor - does it take this long every time, or only on the first clean build?

from parceler.

doniwinata0309 avatar doniwinata0309 commented on May 19, 2024

Our Incremental build doing pretty well, we only got issue for clean/full build.

I see, it seems the huge number of input and disk IO speed that made it slower. Especially when there are several workers working in the same time. Normally 1 module may take 2 minute to complete, but when they are compiled in parallel (we set 5 workers can run in parallel) it will takes 4 minutes for each module to complete.

Do you think we can do something with FileOutputStream under JCodeModel library by modifying tranfuse library ? perhaps i can try some approach mentioned here: https://stackoverflow.com/a/20555164 or https://www.oracle.com/technical-resources/articles/javase/perftuning.html

from parceler.

johncarl81 avatar johncarl81 commented on May 19, 2024

Would buffering do the trick then? - maybe just wrap the given OutputStream here with BufferedOutputStream ?

from parceler.

doniwinata0309 avatar doniwinata0309 commented on May 19, 2024

possibly, i will try to modify it a little bit later. thank you for pointing that out.
If you also have some alternative please let me know, i will love to try it

from parceler.

doniwinata0309 avatar doniwinata0309 commented on May 19, 2024

I tried to modify it https://github.com/johncarl81/transfuse/blob/master/transfuse-core/src/main/java/org/androidtransfuse/gen/FilerSourceCodeWriter.java#L53
to this code:
int bufferSize = 8 * 1024;
OutputStream os = new BufferedOutputStream(
resource.openOutputStream(),
bufferSize
);

But the issue not fixed.

From this class:
https://github.com/johncarl81/transfuse/blob/master/transfuse-support/src/main/java/org/androidtransfuse/transaction/CodeGenerationScopedTransactionWorker.java#L49
But how FilerSourceCodeWriter used in that file ? It seems use CodeWriter instead FilerSourceCodeWriter right ?

from parceler.

doniwinata0309 avatar doniwinata0309 commented on May 19, 2024

ah sorry, it does use the FilerSourceCodeWriter, just realise it extending that class and i saw method printed in the flamegraph

from parceler.

doniwinata0309 avatar doniwinata0309 commented on May 19, 2024

Screen Shot 2020-10-27 at 18 08 20

Seems to be the same even i use buffer with size 8kb and 32kb.

from parceler.

johncarl81 avatar johncarl81 commented on May 19, 2024

There may be no way around it. I'll try to fire it up on my machine to see how slow it is on different hardware.

from parceler.

doniwinata0309 avatar doniwinata0309 commented on May 19, 2024

johncarl81/transfuse#233

There is new issue to adress this, we can try to use JavaFileObject.openWriter as alternative. I will try it next week.

from parceler.

doniwinata0309 avatar doniwinata0309 commented on May 19, 2024

hi @johncarl81
johncarl81/transfuse#234
this PR solve my issue and my build is faster now (sorry after few times rerun the scenario on CI and local, seems the build speed is pretty much the same with old parceler). However, the parceler annotation cpu usage now less than dagger and databinding.
Screen Shot 2020-11-02 at 17 04 02

do you mind to check it later ? thanks

from parceler.

johncarl81 avatar johncarl81 commented on May 19, 2024

Can we close @doniwinata0309 ?

from parceler.

doniwinata0309 avatar doniwinata0309 commented on May 19, 2024

yes thank you. is it going to delivered on next release of parceler (1.1.14 i guess) ?

from parceler.

johncarl81 avatar johncarl81 commented on May 19, 2024

Yes

from parceler.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.