GithubHelp home page GithubHelp logo

Comments (16)

alcarraz avatar alcarraz commented on July 29, 2024

Does anyone have this same performance problem with java 8 in linux?

I believe I could never (or almost since a long time ago) perform a full test in linux without interrupting it, because of binlog module, may be java 8 in linux did always flush to disk

from jpos-ee.

jameshilliard avatar jameshilliard commented on July 29, 2024

I believe I could never (or almost since a long time ago) perform a full test in linux without interrupting it, because of binlog module

Is this an issue you are seeing for all java versions or just java 8?

may be java 8 in linux did always flush to disk

That was always my assumption, the change between java 8 and java 9 only seems to only be an issue on OSX.

from jpos-ee.

alcarraz avatar alcarraz commented on July 29, 2024

Is this an issue you are seeing for all java versions or just java 8?

In java 11 too, and it also takes travis a while:

> Task :modules:binlog:test
Finished generating test XML results (0.002 secs) into: /home/travis/build/jpos/jPOS-EE/modules/binlog/build/test-results/test
Generating HTML test report...
Finished generating test html results (0.02 secs) into: /home/travis/build/jpos/jPOS-EE/modules/binlog/build/reports/tests/test
Stored cache entry for task ':modules:binlog:test' with cache key f211c7caf11e0727c8dfc2d69a79c412
:modules:binlog:test (Thread[Execution worker for ':',5,main]) completed. Took 3 mins 15.599 secs.

In my machine takes a lot longer, don't know if travis performs the test in an in memory filesystem or ssd disk:

JAVA_HOME=/usr/lib/jvm/java-1.11.0-openjdk-amd64/ gradle test
Starting a Gradle Daemon, 2 stopped Daemons could not be reused, use --status for details

> Configure project :modules:qi-core
Using Gradle Vaadin Plugin 2.0.0.beta2
<===========--> 85% EXECUTING [6m 51s]
> :modules:binlog:test > 0 tests completed
> :modules:binlog:test > Executing test org.jpos.binlog.BinLogTest

7 minutes and counting ...

from jpos-ee.

jameshilliard avatar jameshilliard commented on July 29, 2024

Hmm, what type of hard disk is your Linux system using? Also what distribution and kernel version is it?

from jpos-ee.

alcarraz avatar alcarraz commented on July 29, 2024

It's a standard magnetic hard drive. Kernel and system programs are in an SSD.

Kernel version is 5.4.0, distribution Ubuntu 20.04

Still running:

<===========--> 85% EXECUTING [54m 7s]
> :modules:binlog:test > 0 tests completed
> :modules:binlog:test > Executing test org.jpos.binlog.BinLogTest

from jpos-ee.

alcarraz avatar alcarraz commented on July 29, 2024

I tried debugging it once, it was not stuck just advancing really slow.

from jpos-ee.

jameshilliard avatar jameshilliard commented on July 29, 2024

Hmm, what does sudo hdparm -I /dev/sda with /dev/sda being the magnetic disk path show?

from jpos-ee.

alcarraz avatar alcarraz commented on July 29, 2024

Not sure which part of the output are you interested in, I don't have any other problem with this setup.

from jpos-ee.

jameshilliard avatar jameshilliard commented on July 29, 2024

Looking for the output of that(model might be enough) to rule out it being a bad drive.

from jpos-ee.

alcarraz avatar alcarraz commented on July 29, 2024

I really don't think is the harddrive, I could not be using this machine for developing and as a daily driver if that was the case but since you insist:

 sudo hdparm -I /dev/sda

/dev/sda:

ATA device, with non-removable media
	Model Number:       ST1000LM035-1RK172                      
	Serial Number:      WDERAMBJ
	Firmware Revision:  LCM2    
	Transport:          Serial, ATA8-AST, SATA 1.0a, SATA II Extensions, SATA Rev 2.5, SATA Rev 2.6, SATA Rev 3.0

I'm starting to think the problem is some kind of a deadlock with ext4 filesystem, building on the SSD disk and the same thing happens. It's being happening at least for the last year, so there were several kernel and OS upgrades.

Will have to create some partition to test with another FS, would love to hear from someone running linux with ext4 FS that can run this test without problem.

from jpos-ee.

alcarraz avatar alcarraz commented on July 29, 2024

My bad, in fact it's using same the tmp dir in both cases 🤦, but it's just writing very slowly to the tmp file.

/tmp/binlog-5932872186016472376/00000001.dat

from jpos-ee.

jameshilliard avatar jameshilliard commented on July 29, 2024

I really don't think is the harddrive, I could not be using this machine for developing and as a daily driver if that was the case but since you insist

Most daily development doesn't involve forced flushing of dirty pages to the disk so your page cache will compensate for poor drive performance if you have enough ram.

Model Number: ST1000LM035-1RK172

Yeah, this is a DM-SMR drive(according to this at least) which means it will have terrible random write performance to the point where say rebuilding a ZFS array would likely fail due to it being so slow that the filesystem driver would think the drive died. This test forces a flush of dirty pages to the disk on Linux from my understanding while most writes in general just end up in the page cache and are written to disk periodically. A number of storage vendors recently got caught swapping out CMR drives for DM-SMR drives without telling people.

My bad, in fact it's using same the tmp dir in both cases 🤦, but it's just writing very slowly to the tmp file.

Weird, I suspect the fsync operation is somehow hitting the DM-SMR drive and slowing down the test somehow, maybe the way the call is being done is forcing a full fsync for all disks including those that the file isn't being written to? Should probably check the codepaths called by FileChannel.force in Linux or try seeing what's going on in strace.

from jpos-ee.

alcarraz avatar alcarraz commented on July 29, 2024

Yes, I didn't this was related to random access, clearly a magnetic drive is not good for that.

In that case this test has no point to be run on developers machines since not everyone has tmp mounted in a SSD drive.

I run it in my raspberry pi, that has tmp in the sdcard and at least it finished (in 22m)

I would suggest to disable this test in the normal run and just running it on purpose.

But more importantly we need to define if this is the expected behavior of the module in a magnetic drive or we need to fine tune it, and keep the test out until we do that

from jpos-ee.

jameshilliard avatar jameshilliard commented on July 29, 2024

clearly a magnetic drive is not good for that

Well it's more than just that, DM-SMR drives are far worse than even a typical low end magnetic drive from 10 years ago. It's kind of crazy that vendors are putting them in normal laptops/desktops when they are really only suitable as non-RAID infrequent access file archive drives.

But more importantly we need to define if this is the expected behavior of the module in a magnetic drive or we need to fine tune it, and keep the test out until we do that

Well I'm assuming the flushing to disk behavior is intentional to ensure data integrity.

from jpos-ee.

jameshilliard avatar jameshilliard commented on July 29, 2024

I refactored binlog to use the new nio file api's in #160, I'm assuming it probably won't make much difference for this particular issue but might be worth trying out as it should in theory have some performance advantages.

from jpos-ee.

jameshilliard avatar jameshilliard commented on July 29, 2024

Updated #160 again with some more changes to use the AsynchronousFileChannel api instead of the regular FileChannel api.

from jpos-ee.

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.