René's URL Explorer Experiment


Title: Extremely low speed of ReadBufferDataHandle · Issue #467 · scijava/scijava-common · GitHub

Open Graph Title: Extremely low speed of ReadBufferDataHandle · Issue #467 · scijava/scijava-common

X Title: Extremely low speed of ReadBufferDataHandle · Issue #467 · scijava/scijava-common

Description: I tried to use ReadBufferDataHandle to speed up parsing TIFF, instead of simple FileHandle in my analog of TiffParser. And I was very surprised that the speed did not increase. Then I've created the following very simple test, which read...

Open Graph Description: I tried to use ReadBufferDataHandle to speed up parsing TIFF, instead of simple FileHandle in my analog of TiffParser. And I was very surprised that the speed did not increase. Then I've created th...

X Description: I tried to use ReadBufferDataHandle to speed up parsing TIFF, instead of simple FileHandle in my analog of TiffParser. And I was very surprised that the speed did not increase. Then I've create...

Opengraph URL: https://github.com/scijava/scijava-common/issues/467

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Extremely low speed of ReadBufferDataHandle","articleBody":"I tried to use ReadBufferDataHandle to speed up parsing TIFF, instead of simple FileHandle in my analog of TiffParser. And I was very surprised that the speed did not increase.\r\n\r\nThen I've created the following very simple test, which reads first 250000 of 4-byte integer values from some test file:\r\n\r\n```java\r\npublic class ReadArraySpeed {\r\n    public static void main(String[] args) throws IOException, FormatException {\r\n        if (args.length \u003c 1) {\r\n            System.out.println(\"Usage:\");\r\n            System.out.println(\"    \" + ReadArraySpeed.class.getName() + \" any_file\");\r\n            return;\r\n        }\r\n\r\n        final Location location = new FileLocation(new File(args[0]));\r\n        for (int test = 1; test \u003c= 5; test++) { // - helps to warm JVM\r\n            System.out.printf(\"Test #%d...%n\", test);\r\n            try (Context context = new Context();\r\n                DataHandle\u003cLocation\u003e in = context.getService(DataHandleService.class).create(location);\r\n                 DataHandle\u003cLocation\u003e inBuffer = context.getService(DataHandleService.class).readBuffer(location)) {\r\n                final int elementSize = 4;\r\n                final int size = (int) (Math.min(in.length(), 1_000_000) / elementSize);\r\n                int[] a = new int[size];\r\n                int[] b = new int[size];\r\n                long t1 = System.nanoTime();\r\n                in.seek(0);\r\n                for (int k = 0; k \u003c a.length; k++) {\r\n                    a[k] = in.readInt();\r\n                }\r\n                long t2 = System.nanoTime();\r\n                inBuffer.seek(0);\r\n                for (int k = 0; k \u003c b.length; k++) {\r\n                    b[k] = inBuffer.readInt();\r\n                }\r\n                long t3 = System.nanoTime();\r\n                System.out.printf(Locale.US, \"Reading %d 32-bit integers, %s: %.3f ms, %.3f MB/s%n\",\r\n                        size, in.getClass(),\r\n                        (t2 - t1) * 1e-6, (size * elementSize) / 1048576.0 / ((t2 - t1) * 1e-9));\r\n                System.out.printf(Locale.US, \"Reading %d 32-bit integers, %s: %.3f ms, %.3f MB/s%n\",\r\n                        size, inBuffer.getClass(),\r\n                        (t3 - t2) * 1e-6, (size * elementSize) / 1048576.0 / ((t3 - t2) * 1e-9));\r\n            }\r\n        }\r\n    }\r\n}\r\n```\r\nOn my computer, results are following:\r\nTest #1...\r\nReading 250000 32-bit integers, class org.scijava.io.handle.FileHandle: 317.620 ms, 3.003 MB/s\r\nReading 250000 32-bit integers, class org.scijava.io.handle.ReadBufferDataHandle: 2609.762 ms, 0.365 MB/s\r\nTest #2...\r\nReading 250000 32-bit integers, class org.scijava.io.handle.FileHandle: 336.619 ms, 2.833 MB/s\r\nReading 250000 32-bit integers, class org.scijava.io.handle.ReadBufferDataHandle: 2769.079 ms, 0.344 MB/s\r\nTest #3...\r\nReading 250000 32-bit integers, class org.scijava.io.handle.FileHandle: 302.576 ms, 3.152 MB/s\r\nReading 250000 32-bit integers, class org.scijava.io.handle.ReadBufferDataHandle: 2784.298 ms, 0.343 MB/s\r\nTest #4...\r\nReading 250000 32-bit integers, class org.scijava.io.handle.FileHandle: 307.343 ms, 3.103 MB/s\r\nReading 250000 32-bit integers, class org.scijava.io.handle.ReadBufferDataHandle: 2815.823 ms, 0.339 MB/s\r\nTest #5...\r\nReading 250000 32-bit integers, class org.scijava.io.handle.FileHandle: 317.017 ms, 3.008 MB/s\r\nReading 250000 32-bit integers, class org.scijava.io.handle.ReadBufferDataHandle: 3378.953 ms, 0.282 MB/s\r\n\r\nYou see that ReadBufferDataHandle works... not only not faster, but much slower than the  simple DataHandle.\r\nDebugger shows that it performs a lot of calls of methods of low-level RandomAccessFile class, like exists(), length(). Maybe it is the reason.\r\n\r\nCould you cleanup ReadBufferDataHandle to make it really quick while the simple sequential reading?\r\n\r\nFor comparison, if you will replace \"readInt()\" call with \"readByte()\", you will see the expected result: ReadBufferDataHandle works much faster. This method is implemented in much more simple way and is really efficient. But reading single byte is a rare case, usually we need to read some other types or short buffers.\r\n\r\n\r\n","author":{"url":"https://github.com/Daniel-Alievsky","@type":"Person","name":"Daniel-Alievsky"},"datePublished":"2023-08-04T10:49:24.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":6},"url":"https://github.com/467/scijava-common/issues/467"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:d1703d59-74a6-7a0a-6cb0-ef6abebcc219
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idBD34:283961:3238598:41DEB0E:696D0538
html-safe-nonce78171334257f12291fe66ffa74a23925d5289f7327363b61f0bbdc1eccf55ad2
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCRDM0OjI4Mzk2MTozMjM4NTk4OjQxREVCMEU6Njk2RDA1MzgiLCJ2aXNpdG9yX2lkIjoiMjQ3MTIwNTk5OTI3MjA2ODQwOCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmacd4459740abe81d38ae8e10d868e1cf14f846182330e95322b6eb7ea2ab060387
hovercard-subject-tagissue:1836514118
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/scijava/scijava-common/467/issue_layout
twitter:imagehttps://opengraph.githubassets.com/747f698dd56956f286ceeeff7e68eef7cff5ed33c1810767523522a3f494baf9/scijava/scijava-common/issues/467
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/747f698dd56956f286ceeeff7e68eef7cff5ed33c1810767523522a3f494baf9/scijava/scijava-common/issues/467
og:image:altI tried to use ReadBufferDataHandle to speed up parsing TIFF, instead of simple FileHandle in my analog of TiffParser. And I was very surprised that the speed did not increase. Then I've created th...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameDaniel-Alievsky
hostnamegithub.com
expected-hostnamegithub.com
None31994babd8463b50f2371f63aab0826561f4efe3981ac0ebc4c33e6c41032dbd
turbo-cache-controlno-preview
go-importgithub.com/scijava/scijava-common git https://github.com/scijava/scijava-common.git
octolytics-dimension-user_id1262770
octolytics-dimension-user_loginscijava
octolytics-dimension-repository_id3594497
octolytics-dimension-repository_nwoscijava/scijava-common
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id3594497
octolytics-dimension-repository_network_root_nwoscijava/scijava-common
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releasef5a202c3c4aefc9cf00c8c78951a1e72eaebebeb
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/scijava/scijava-common/issues/467#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fscijava%2Fscijava-common%2Fissues%2F467
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fscijava%2Fscijava-common%2Fissues%2F467
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=scijava%2Fscijava-common
Reloadhttps://github.com/scijava/scijava-common/issues/467
Reloadhttps://github.com/scijava/scijava-common/issues/467
Reloadhttps://github.com/scijava/scijava-common/issues/467
scijava https://github.com/scijava
scijava-commonhttps://github.com/scijava/scijava-common
Notifications https://github.com/login?return_to=%2Fscijava%2Fscijava-common
Fork 53 https://github.com/login?return_to=%2Fscijava%2Fscijava-common
Star 90 https://github.com/login?return_to=%2Fscijava%2Fscijava-common
Code https://github.com/scijava/scijava-common
Issues 169 https://github.com/scijava/scijava-common/issues
Pull requests 16 https://github.com/scijava/scijava-common/pulls
Actions https://github.com/scijava/scijava-common/actions
Projects 0 https://github.com/scijava/scijava-common/projects
Wiki https://github.com/scijava/scijava-common/wiki
Security Uh oh! There was an error while loading. Please reload this page. https://github.com/scijava/scijava-common/security
Please reload this pagehttps://github.com/scijava/scijava-common/issues/467
Insights https://github.com/scijava/scijava-common/pulse
Code https://github.com/scijava/scijava-common
Issues https://github.com/scijava/scijava-common/issues
Pull requests https://github.com/scijava/scijava-common/pulls
Actions https://github.com/scijava/scijava-common/actions
Projects https://github.com/scijava/scijava-common/projects
Wiki https://github.com/scijava/scijava-common/wiki
Security https://github.com/scijava/scijava-common/security
Insights https://github.com/scijava/scijava-common/pulse
New issuehttps://github.com/login?return_to=https://github.com/scijava/scijava-common/issues/467
New issuehttps://github.com/login?return_to=https://github.com/scijava/scijava-common/issues/467
Extremely low speed of ReadBufferDataHandlehttps://github.com/scijava/scijava-common/issues/467#top
https://github.com/Daniel-Alievsky
https://github.com/Daniel-Alievsky
Daniel-Alievskyhttps://github.com/Daniel-Alievsky
on Aug 4, 2023https://github.com/scijava/scijava-common/issues/467#issue-1836514118
#1https://github.com/scijava/scijava-common/pull/1
#2https://github.com/scijava/scijava-common/pull/2
#3https://github.com/scijava/scijava-common/pull/3
#4https://github.com/scijava/scijava-common/pull/4
#5https://github.com/scijava/scijava-common/pull/5
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.