You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@druid.apache.org by GitBox <gi...@apache.org> on 2020/06/18 12:51:02 UTC

[GitHub] [druid] liran-funaro edited a comment on issue #9967: Optimizing incremental-index ingestion using off-heap key/value map (OakMap)

liran-funaro edited a comment on issue #9967:
URL: https://github.com/apache/druid/issues/9967#issuecomment-645992485


   @yuanlihan I found the reason for the NPE. It due to a bug in the Oak library.
   For now, until we update this PR, you can solve it by upgrading Oak version.
   Simply modify Oak's version in `druid/processing/pom.xml` file as follows, then recompile using maven.
   Note: If maven repository is not automatically updated for you, run the `mvn` command with `-U` flag.
   ```diff
   diff --git a/processing/pom.xml b/processing/pom.xml
   index 50ccc9eb6a..ebe850e480 100644
   --- a/processing/pom.xml
   +++ b/processing/pom.xml
   @@ -35,7 +35,7 @@
            <dependency>
                <groupId>com.yahoo.oak</groupId>
                <artifactId>oak</artifactId>
   -            <version>0.2.1</version>
   +            <version>0.2.2</version>
            </dependency>
            <dependency>
                <groupId>org.apache.druid</groupId>
   ```


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org