This is an automated email from the ASF dual-hosted git repository.
atri pushed a commit to branch chronicle_hack
in repository https://gitbox.apache.org/repos/asf/pinot.git
The following commit(s) were added to refs/heads/chronicle_hack by this push:
new ac1059f7c3 Update POM exclusion
ac1059f7c3 is described below
commit ac1059f7c3699b03a06004ef363605c29e88d13b
Author: Atri Sharma <[email protected]>
AuthorDate: Fri Sep 1 15:56:09 2023 +0530
Update POM exclusion
---
pinot-segment-local/pom.xml | 11 +++++++++++
.../upsert/ConcurrentMapPartitionUpsertMetadataManager.java | 2 --
2 files changed, 11 insertions(+), 2 deletions(-)
diff --git a/pinot-segment-local/pom.xml b/pinot-segment-local/pom.xml
index a6b0484fe6..00f0dce2f7 100644
--- a/pinot-segment-local/pom.xml
+++ b/pinot-segment-local/pom.xml
@@ -98,6 +98,17 @@
<groupId>net.openhft</groupId>
<artifactId>chronicle-map</artifactId>
<version>3.20.84</version>
+ <exclusions>
+ <exclusion>
+ <groupId>net.openhft</groupId>
+ <artifactId>chronicle-bytes</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>net.openhft</groupId>
+ <artifactId>chronicle-bytes</artifactId>
+ <version>2.24ea17</version>
</dependency>
<dependency>
<groupId>com.tdunning</groupId>
diff --git
a/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/upsert/ConcurrentMapPartitionUpsertMetadataManager.java
b/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/upsert/ConcurrentMapPartitionUpsertMetadataManager.java
index 7ab7565898..eef0f1e3af 100644
---
a/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/upsert/ConcurrentMapPartitionUpsertMetadataManager.java
+++
b/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/upsert/ConcurrentMapPartitionUpsertMetadataManager.java
@@ -21,7 +21,6 @@ package org.apache.pinot.segment.local.upsert;
import com.google.common.annotations.VisibleForTesting;
import java.io.File;
import java.io.IOException;
-import java.io.Serializable;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
@@ -318,7 +317,6 @@ public class ConcurrentMapPartitionUpsertMetadataManager
extends BasePartitionUp
.averageKeySize(1000)
.entries(10_000_000)
.createPersistedTo(new File("my-map"));
-
} catch (IOException ioe) {
throw new RuntimeException(ioe);
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]