blacelle commented on issue #731: URL: https://github.com/apache/datasketches-java/issues/731#issuecomment-4598839417
> Have you tried any off-heap or file-mapped memory operations using MemorySegments? For now, I'm just considering HLL and KMV. > I am a little unclear about your need to run the library on Java 17 vs Java 21 vs Java 25. Please elaborate. I upgraded given project in JDK25. Hence, I could benefit JPMS in DataSketches in JDK21 for bugfix versions, else AutomatedModules in JDK25 would cover most of my needs. > Also, I don't understand the urgency of providing an Automatic Module Name, which I will be adding, among many other priorities, but what is the urgency? No urgency as, in the meantime, in order to publish our own project, we had to remove the dependency to DataSketches. > If your application declares the DS-java jar in its module-info.java file, the system automatically generates a module name based strictly on the JAR's filename. We integrate DataSketches into a library: automated module-names based on file prevents deployment of the dependant: ``` 00:36:58,040 [INFO] org.apache.maven.cli.event.ExecutionEventLogger - --- compiler:3.15.0:compile (default-compile) @ adhoc-encoding --- 00:36:58,209 [WARNING] org.apache.maven.plugin.compiler.CompilerMojo - *************************************************************************************************************************************************** 00:36:58,212 [WARNING] org.apache.maven.plugin.compiler.CompilerMojo - * Required filename-based automodules detected: [datasketches-java-7.0.1.jar]. Please don't publish this project to a public artifact repository! * 00:36:58,212 [WARNING] org.apache.maven.plugin.compiler.CompilerMojo - *************************************************************************************************************************************************** ``` -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
