1
0

Fixing a javadoc lint issue

This commit is contained in:
Prasanna Rajaperumal
2017-02-20 15:41:32 -08:00
parent 57a0b7a781
commit 7178cb5a3f

View File

@@ -165,7 +165,7 @@ public class HoodieWriteClient<T extends HoodieRecordPayload> implements Seriali
* Inserts the given HoodieRecords, into the table. This API is intended to be used for normal * Inserts the given HoodieRecords, into the table. This API is intended to be used for normal
* writes. * writes.
* *
* This implementation skips the index check & is able to leverage benefits such as * This implementation skips the index check and is able to leverage benefits such as
* small file handling/blocking alignment, as with upsert(), by profiling the workload * small file handling/blocking alignment, as with upsert(), by profiling the workload
* *
* @param records HoodieRecords to insert * @param records HoodieRecords to insert
@@ -298,7 +298,7 @@ public class HoodieWriteClient<T extends HoodieRecordPayload> implements Seriali
* loads into a Hoodie table for the very first time (e.g: converting an existing dataset to * loads into a Hoodie table for the very first time (e.g: converting an existing dataset to
* Hoodie). * Hoodie).
* *
* This implementation uses sortBy (which does range partitioning based on reservoir sampling) & * This implementation uses sortBy (which does range partitioning based on reservoir sampling) and
* attempts to control the numbers of files with less memory compared to the {@link * attempts to control the numbers of files with less memory compared to the {@link
* HoodieWriteClient#insert(JavaRDD, String)} * HoodieWriteClient#insert(JavaRDD, String)}
* *