yupeng9 commented on a change in pull request #6899: URL: https://github.com/apache/incubator-pinot/pull/6899#discussion_r655568342
########## File path: pinot-segment-local/src/main/java/org/apache/pinot/segment/local/indexsegment/mutable/MutableSegmentImpl.java ########## @@ -470,28 +466,32 @@ public void addExtraColumns(Schema newSchema) { @Override public boolean index(GenericRow row, @Nullable RowMetadata rowMetadata) throws IOException { - // Update dictionary first - updateDictionary(row); - - // If metrics aggregation is enabled and if the dimension values were already seen, this will return existing docId, - // else this will return a new docId. - int docId = getOrCreateDocId(); - boolean canTakeMore; - if (docId == _numDocsIndexed) { - // New row + if (isUpsertEnabled()) { + row = handleUpsert(row, _numDocsIndexed); + + updateDictionary(row); addNewRow(row); // Update number of documents indexed at last to make the latest row queryable canTakeMore = _numDocsIndexed++ < _capacity; - - if (isUpsertEnabled()) { - handleUpsert(row, docId); - } } else { - Preconditions.checkArgument(!isUpsertEnabled(), "metrics aggregation cannot be used with upsert"); - assert _aggregateMetrics; - aggregateMetrics(row, docId); - canTakeMore = true; + // Update dictionary first + updateDictionary(row); + + // If metrics aggregation is enabled and if the dimension values were already seen, this will return existing + // docId, else this will return a new docId. + int docId = getOrCreateDocId(); + + if (docId == _numDocsIndexed) { + // New row + addNewRow(row); + // Update number of documents indexed at last to make the latest row queryable + canTakeMore = _numDocsIndexed++ < _capacity; + } else { + assert _aggregateMetrics; Review comment: nit: add some error messages for better debugging. ########## File path: pinot-tools/src/main/java/org/apache/pinot/tools/PartialUpsertQuickStart.java ########## @@ -0,0 +1,113 @@ +/** + * 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.pinot.tools; + +import com.google.common.base.Preconditions; +import com.google.common.collect.Lists; +import java.io.File; +import java.net.URL; +import org.apache.commons.io.FileUtils; +import org.apache.pinot.common.utils.ZkStarter; +import org.apache.pinot.spi.plugin.PluginManager; +import org.apache.pinot.spi.stream.StreamDataProvider; +import org.apache.pinot.spi.stream.StreamDataServerStartable; +import org.apache.pinot.tools.Quickstart.Color; +import org.apache.pinot.tools.admin.command.QuickstartRunner; +import org.apache.pinot.tools.streams.MeetupRsvpStream; +import org.apache.pinot.tools.utils.KafkaStarterUtils; + +import static org.apache.pinot.tools.Quickstart.prettyPrintResponse; +import static org.apache.pinot.tools.Quickstart.printStatus; + + +public class PartialUpsertQuickStart { + private StreamDataServerStartable _kafkaStarter; + + public static void main(String[] args) + throws Exception { + PluginManager.get().init(); + new PartialUpsertQuickStart().execute(); + } + + // Todo: add a quick start demo + public void execute() + throws Exception { + File quickstartTmpDir = new File(FileUtils.getTempDirectory(), String.valueOf(System.currentTimeMillis())); + File bootstrapTableDir = new File(quickstartTmpDir, "meetupRsvp"); + File dataDir = new File(bootstrapTableDir, "data"); + Preconditions.checkState(dataDir.mkdirs()); + + File schemaFile = new File(bootstrapTableDir, "meetupRsvp_schema.json"); + File tableConfigFile = new File(bootstrapTableDir, "meetupRsvp_realtime_table_config.json"); + + ClassLoader classLoader = Quickstart.class.getClassLoader(); + URL resource = classLoader.getResource("examples/stream/meetupRsvp/upsert_meetupRsvp_schema.json"); + Preconditions.checkNotNull(resource); + FileUtils.copyURLToFile(resource, schemaFile); + resource = + classLoader.getResource("examples/stream/meetupRsvp/upsert_partial_meetupRsvp_realtime_table_config.json"); + Preconditions.checkNotNull(resource); + FileUtils.copyURLToFile(resource, tableConfigFile); + + QuickstartTableRequest request = new QuickstartTableRequest(bootstrapTableDir.getAbsolutePath()); + final QuickstartRunner runner = new QuickstartRunner(Lists.newArrayList(request), 1, 1, 1, dataDir); + + printStatus(Color.CYAN, "***** Starting Kafka *****"); + final ZkStarter.ZookeeperInstance zookeeperInstance = ZkStarter.startLocalZkServer(); + try { + _kafkaStarter = StreamDataProvider.getServerDataStartable(KafkaStarterUtils.KAFKA_SERVER_STARTABLE_CLASS_NAME, + KafkaStarterUtils.getDefaultKafkaConfiguration()); + } catch (Exception e) { + throw new RuntimeException("Failed to start " + KafkaStarterUtils.KAFKA_SERVER_STARTABLE_CLASS_NAME, e); + } + _kafkaStarter.start(); + _kafkaStarter.createTopic("meetupRSVPEvents", KafkaStarterUtils.getTopicCreationProps(2)); + printStatus(Color.CYAN, "***** Starting meetup data stream and publishing to Kafka *****"); + MeetupRsvpStream meetupRSVPProvider = new MeetupRsvpStream(true); + meetupRSVPProvider.run(); + printStatus(Color.CYAN, "***** Starting Zookeeper, controller, server and broker *****"); + runner.startAll(); + Runtime.getRuntime().addShutdownHook(new Thread(() -> { + try { + printStatus(Color.GREEN, "***** Shutting down realtime quick start *****"); + runner.stop(); + meetupRSVPProvider.stopPublishing(); + _kafkaStarter.stop(); + ZkStarter.stopLocalZkServer(zookeeperInstance); + FileUtils.deleteDirectory(quickstartTmpDir); + } catch (Exception e) { + e.printStackTrace(); + } + })); + printStatus(Color.CYAN, "***** Bootstrap meetupRSVP(upsert) table *****"); + runner.bootstrapTable(); + printStatus(Color.CYAN, "***** Waiting for 15 seconds for a few events to get populated *****"); + Thread.sleep(15000); + + printStatus(Color.YELLOW, "***** Upsert quickstart setup complete *****"); + + String q1 = "select event_id, count(*), sum(rsvp_count) from meetupRsvp group by event_id order by sum(rsvp_count) desc limit 10"; + printStatus(Color.YELLOW, "Total number of documents, total number of rsvp_counts per event_id in the table"); Review comment: add a comment on what the partial upsert behavior that you expect ########## File path: pinot-segment-local/src/main/java/org/apache/pinot/segment/local/upsert/PartialUpsertHandler.java ########## @@ -0,0 +1,141 @@ +/** + * 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.pinot.segment.local.upsert; + +import java.util.HashMap; +import java.util.Map; +import org.apache.helix.HelixDataAccessor; +import org.apache.helix.HelixManager; +import org.apache.helix.PropertyKey; +import org.apache.helix.model.CurrentState; +import org.apache.helix.model.IdealState; +import org.apache.helix.model.LiveInstance; +import org.apache.pinot.segment.local.upsert.merger.PartialUpsertMerger; +import org.apache.pinot.segment.local.upsert.merger.PartialUpsertMergerFactory; +import org.apache.pinot.spi.config.table.UpsertConfig; +import org.apache.pinot.spi.data.readers.GenericRow; +import org.apache.pinot.spi.utils.CommonConstants.Helix.StateModel.SegmentStateModel; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + + +/** + * Handler for partial-upsert. + */ +public class PartialUpsertHandler { + private static final Logger LOGGER = LoggerFactory.getLogger(PartialUpsertHandler.class); + + private final Map<String, PartialUpsertMerger> _mergers = new HashMap<>(); 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: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org