Davide Angelocola

Results 37 comments of Davide Angelocola

- [ ] base64 - [ ] md5 - [ ] sha1 - [ ] sha2

without a pipeline it works as expected: ``` hosh> benchmark 5 { echo a } | enumerate 1 a 2 a 3 a 4 a 5 a 6 5 PT0.000038943S...

`com.sun.nio.file.ExtendedWatchEventModifier.FILE_TREE` modifier is not supported on MacOS

https://gist.github.com/fabriziofortino/83eb36c7b48e9b900c1da1d8508245cd pros: * implements recursive watching * no deps besides JDK

https://github.com/gmethvin/directory-watcher pros: - implements recursive watching - replaces macosx polling with JNA based implementation of `WatchService` cons: - requires SLF4J

This fix could be to just remove the usage of` getInCheck()`.

@TheSmithSoftware @adamretter I'm able to reproduce the issue on both linux and windows 10 with JDK17 and RocksDB 9.0.0, 6.29.5 and some intermediate versions like 7.0.0.

@adamretter please have a look: ```java package com.sixgroup; import org.rocksdb.Checkpoint; import org.rocksdb.CompressionType; import org.rocksdb.Options; import org.rocksdb.RocksDB; import java.nio.charset.StandardCharsets; import java.nio.file.Files; import java.nio.file.Path; public class Minimal { public static void main(String[]...

@rhubner thanks for the updates! Data is there because opening the same checkpoint in readwrite, works and the checkpoint has the blob file.

@rhubner thanks for the feedback! Maybe this is useful: only if the checkpoint is created on the main instance, the next read fails! Proof: ```java package com.sixgroup; import org.rocksdb.Checkpoint; import...