jihoonson commented on a change in pull request #8570: Auto compaction based on 
parallel indexing
URL: https://github.com/apache/incubator-druid/pull/8570#discussion_r332990352
 
 

 ##########
 File path: 
indexing-service/src/test/java/org/apache/druid/indexing/common/task/CompactionTaskParallelRunTest.java
 ##########
 @@ -0,0 +1,320 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.druid.indexing.common.task;
+
+import com.fasterxml.jackson.databind.ObjectMapper;
+import com.google.common.collect.ImmutableList;
+import com.google.common.io.Files;
+import org.apache.druid.client.ImmutableDruidDataSource;
+import org.apache.druid.client.coordinator.CoordinatorClient;
+import org.apache.druid.client.indexing.IndexingServiceClient;
+import org.apache.druid.data.input.impl.DimensionsSpec;
+import org.apache.druid.indexer.TaskState;
+import org.apache.druid.indexing.common.LockGranularity;
+import org.apache.druid.indexing.common.RetryPolicyConfig;
+import org.apache.druid.indexing.common.RetryPolicyFactory;
+import org.apache.druid.indexing.common.SegmentLoaderFactory;
+import org.apache.druid.indexing.common.TestUtils;
+import org.apache.druid.indexing.common.stats.RowIngestionMetersFactory;
+import 
org.apache.druid.indexing.common.task.batch.parallel.AbstractParallelIndexSupervisorTaskTest;
+import 
org.apache.druid.indexing.common.task.batch.parallel.ParallelIndexIngestionSpec;
+import 
org.apache.druid.indexing.common.task.batch.parallel.ParallelIndexSupervisorTask;
+import 
org.apache.druid.indexing.common.task.batch.parallel.ParallelIndexTuningConfig;
+import 
org.apache.druid.indexing.common.task.batch.parallel.SinglePhaseParallelIndexingTest.TestSupervisorTask;
+import org.apache.druid.java.util.common.ISE;
+import org.apache.druid.java.util.common.Intervals;
+import org.apache.druid.java.util.common.granularity.Granularities;
+import org.apache.druid.java.util.common.granularity.Granularity;
+import org.apache.druid.query.aggregation.AggregatorFactory;
+import org.apache.druid.segment.indexing.granularity.UniformGranularitySpec;
+import org.apache.druid.segment.realtime.appenderator.AppenderatorsManager;
+import org.apache.druid.segment.realtime.firehose.ChatHandlerProvider;
+import org.apache.druid.segment.realtime.firehose.NoopChatHandlerProvider;
+import org.apache.druid.server.security.AuthTestUtils;
+import org.apache.druid.server.security.AuthorizerMapper;
+import org.apache.druid.timeline.DataSegment;
+import org.apache.druid.timeline.SegmentId;
+import org.joda.time.Interval;
+import org.junit.After;
+import org.junit.Assert;
+import org.junit.Before;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.Parameterized;
+
+import javax.annotation.Nullable;
+import java.io.BufferedWriter;
+import java.io.File;
+import java.io.IOException;
+import java.nio.charset.StandardCharsets;
+import java.util.List;
+import java.util.Map;
+
+@RunWith(Parameterized.class)
+public class CompactionTaskParallelRunTest extends 
AbstractParallelIndexSupervisorTaskTest
+{
+  @Parameterized.Parameters(name = "{0}")
+  public static Iterable<Object[]> constructorFeeder()
+  {
+    return ImmutableList.of(
+        new Object[]{LockGranularity.TIME_CHUNK},
+        new Object[]{LockGranularity.SEGMENT}
+    );
+  }
+
+  private static final String DATA_SOURCE = "test";
+  private static final RetryPolicyFactory RETRY_POLICY_FACTORY = new 
RetryPolicyFactory(new RetryPolicyConfig());
+
+  private final AppenderatorsManager appenderatorsManager = new 
TestAppenderatorsManager();
+  private final LockGranularity lockGranularity;
+  private final RowIngestionMetersFactory rowIngestionMetersFactory;
+  private final CoordinatorClient coordinatorClient;
+
+  public CompactionTaskParallelRunTest(LockGranularity lockGranularity)
+  {
+    this.lockGranularity = lockGranularity;
+    this.rowIngestionMetersFactory = new 
TestUtils().getRowIngestionMetersFactory();
+    coordinatorClient = new CoordinatorClient(null, null)
+    {
+      @Override
+      public List<DataSegment> getDatabaseSegmentDataSourceSegments(String 
dataSource, List<Interval> intervals)
+      {
+        return getStorageCoordinator().getUsedSegmentsForIntervals(dataSource, 
intervals);
+      }
+
+      @Override
+      public DataSegment getDatabaseSegmentDataSourceSegment(String 
dataSource, String segmentId)
+      {
+        ImmutableDruidDataSource druidDataSource = 
getMetadataSegmentManager().getImmutableDataSourceWithUsedSegments(
+            dataSource
+        );
+        if (druidDataSource == null) {
+          throw new ISE("Unknown datasource[%s]", dataSource);
+        }
+
+        for (SegmentId possibleSegmentId : 
SegmentId.iteratePossibleParsingsWithDataSource(dataSource, segmentId)) {
+          DataSegment segment = druidDataSource.getSegment(possibleSegmentId);
+          if (segment != null) {
+            return segment;
+          }
+        }
+        throw new ISE("Can't find segment for id[%s]", segmentId);
+      }
+    };
+  }
+
+  @Before
+  public void setup() throws IOException
+  {
+    indexingServiceClient = new LocalIndexingServiceClient();
+    localDeepStorage = temporaryFolder.newFolder();
+  }
+
+  @After
+  public void teardown()
+  {
+    indexingServiceClient.shutdown();
+    temporaryFolder.delete();
+  }
+
+  @Test
+  public void test() throws Exception
 
 Review comment:
   Thanks, missed renaming it. Changed to `testRunParallel` now.
   
   > Do any of the test scenarios in `CompactionTaskRunTest` make sense here? 
If so, maybe some code can be factored. For example, the `runIndexTask()` 
method in both classes is similar.
   
   Good point. I think your comment has a point, but the best way I'm think of 
is adding a new framework which can run any kind of tasks in unit tests which 
is similar to ingestion test framework but debuggable. With this framework, we 
don't have to write a lot of boilerplate codes to set up an environment to run 
tasks. `AbstractParallelIndexSupervisorTaskTest` is a sort of that framework, 
but it's only for parallel indexing tasks and not really easy to write tests.
   
   Regarding `runIndexTask()`, I guess we can extract that method as a util 
method, but I'm not sure if it's worth because `runIndexTask()` is to prepare 
tests by adding some data before compaction and test data can be changed at any 
time.

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