vinothchandar commented on a change in pull request #1248: Adding delete docs to QuickStart URL: https://github.com/apache/incubator-hudi/pull/1248#discussion_r368242273
########## File path: docs/quickstart.md ########## @@ -109,6 +109,57 @@ Notice that the save mode is now `Append`. In general, always use append mode un [Querying](#query) the data again will now show updated trips. Each write operation generates a new [commit](http://hudi.incubator.apache.org/concepts.html) denoted by the timestamp. Look for changes in `_hoodie_commit_time`, `rider`, `driver` fields for the same `_hoodie_record_key`s in previous commit. +## Delete data {#deletes} +Delete records for the HoodieKeys passed in. Lets first generate a new batch of insert and delete the same. Query to verify +that all records are deleted. + +``` +val inserts = convertToStringList(dataGen.generateInserts(10)) Review comment: could we avoid doing the insert again? can we not reuse from the insert/update done above? ---------------------------------------------------------------- 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
