clintropolis commented on a change in pull request #6794: Query vectorization.
URL: https://github.com/apache/incubator-druid/pull/6794#discussion_r300888952
 
 

 ##########
 File path: 
benchmarks/src/main/java/org/apache/druid/benchmark/datagen/SegmentGenerator.java
 ##########
 @@ -41,34 +42,64 @@
 import org.apache.druid.segment.QueryableIndex;
 import org.apache.druid.segment.QueryableIndexIndexableAdapter;
 import org.apache.druid.segment.TestHelper;
+import org.apache.druid.segment.data.RoaringBitmapSerdeFactory;
 import org.apache.druid.segment.incremental.IncrementalIndexSchema;
 import org.apache.druid.segment.serde.ComplexMetrics;
 import 
org.apache.druid.segment.writeout.OffHeapMemorySegmentWriteOutMediumFactory;
 import org.apache.druid.timeline.DataSegment;
 import org.apache.druid.timeline.SegmentId;
 
+import javax.annotation.Nullable;
 import java.io.Closeable;
 import java.io.File;
 import java.io.IOException;
+import java.nio.charset.StandardCharsets;
 import java.util.ArrayList;
 import java.util.List;
-import java.util.concurrent.atomic.AtomicInteger;
 import java.util.stream.Collectors;
 
 public class SegmentGenerator implements Closeable
 {
   private static final Logger log = new Logger(SegmentGenerator.class);
 
   private static final int MAX_ROWS_IN_MEMORY = 200000;
-  private static final int STARTING_SEED = 9999; // Consistent seed for 
reproducibility
 
-  private final File tempDir;
-  private final AtomicInteger seed;
+  // Setup can take a long time due to the need to generate large segments.
+  // Allow users to specify a cache directory via a JVM property or an 
environment variable.
+  private static final String CACHE_DIR_PROPERTY = "druid.benchmark.cacheDir";
 
 Review comment:
   :+1:

----------------------------------------------------------------
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:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to