Skip to content

Commit

Permalink
Modify javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
kvargha committed Jan 16, 2025
1 parent fe149a4 commit db2738e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

import com.linkedin.davinci.blobtransfer.BlobTransferManager;
import com.linkedin.davinci.blobtransfer.BlobTransferUtil;
import com.linkedin.davinci.client.DaVinciRecordTransformerConfig;
import com.linkedin.davinci.blobtransfer.BlobTransferUtils.BlobTransferTableFormat;
import com.linkedin.davinci.client.DaVinciRecordTransformerConfig;
import com.linkedin.davinci.compression.StorageEngineBackedCompressorFactory;
import com.linkedin.davinci.config.StoreBackendConfig;
import com.linkedin.davinci.config.VeniceConfigLoader;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public abstract class DaVinciRecordTransformer<K, V, O> {
private final boolean storeRecordsInDaVinci;

/**
* The key schema, which is immutable.
* The key schema, which is immutable inside DaVinciClient. Users can modify the key if they are storing records in an external storage engine, but this must be managed by the user.
*/
private final Schema keySchema;

Expand All @@ -59,7 +59,7 @@ public abstract class DaVinciRecordTransformer<K, V, O> {

/**
* @param storeVersion the version of the store
* @param keySchema the key schema, which is immutable
* @param keySchema the key schema, which is immutable inside DaVinciClient. Users can modify the key if they are storing records in an external storage engine, but this must be managed by the user
* @param inputValueSchema the value schema before transformation
* @param outputValueSchema the value schema after transformation
* @param storeRecordsInDaVinci set this to false if you intend to store records in a custom storage,
Expand Down

0 comments on commit db2738e

Please sign in to comment.