@@ -47,11 +47,6 @@ public interface WriteBuilder<D, T> {
47
47
/** Sets the file metadata kep/value pairs for the writer which should be written to the file. */
48
48
WriteBuilder <D , T > meta (String property , String value );
49
49
50
- default WriteBuilder <D , T > meta (Map <String , String > properties ) {
51
- properties .forEach (this ::meta );
52
- return this ;
53
- }
54
-
55
50
/** Enables overwriting previously created files. */
56
51
WriteBuilder <D , T > overwrite ();
57
52
@@ -63,12 +58,16 @@ default WriteBuilder<D, T> meta(Map<String, String> properties) {
63
58
*/
64
59
WriteBuilder <D , T > metricsConfig (MetricsConfig newMetricsConfig );
65
60
61
+ /** Sets the partition specification for the generated {@link org.apache.iceberg.ContentFile}. */
66
62
WriteBuilder <D , T > withSpec (PartitionSpec newSpec );
67
63
64
+ /** Sets the partition value for the generated {@link org.apache.iceberg.ContentFile}. */
68
65
WriteBuilder <D , T > withPartition (StructLike newPartition );
69
66
67
+ /** Sets the encryption key metadata for the generated {@link org.apache.iceberg.ContentFile}. */
70
68
WriteBuilder <D , T > withKeyMetadata (EncryptionKeyMetadata metadata );
71
69
70
+ /** Sets the sort order for the generated {@link org.apache.iceberg.ContentFile}. */
72
71
WriteBuilder <D , T > withSortOrder (SortOrder newSortOrder );
73
72
74
73
/** The target data file schema. */
@@ -79,10 +78,12 @@ default WriteBuilder<D, T> meta(Map<String, String> properties) {
79
78
*/
80
79
WriteBuilder <D , T > rowSchema (Schema schema );
81
80
81
+ /** Writes the file with the given encryption key */
82
82
default WriteBuilder <D , T > withFileEncryptionKey (ByteBuffer fileEncryptionKey ) {
83
83
throw new UnsupportedOperationException ("Not supported" );
84
84
}
85
85
86
+ /** Writes the AAP prefix to the the generated {@link org.apache.iceberg.ContentFile}. */
86
87
default WriteBuilder <D , T > withAADPrefix (ByteBuffer aadPrefix ) {
87
88
throw new UnsupportedOperationException ("Not supported" );
88
89
}
@@ -92,13 +93,21 @@ default WriteBuilder<D, T> withAADPrefix(ByteBuffer aadPrefix) {
92
93
/** Sets the equality field ids which are used in the delete file. */
93
94
WriteBuilder <D , T > equalityFieldIds (int ... fieldIds );
94
95
96
+ /**
97
+ * Sets the engine specific data type for the writer. Used for conversion by the engine specific
98
+ * writers.
99
+ */
95
100
WriteBuilder <D , T > nativeType (T nativeType );
96
101
97
- FileAppender <D > appenderBuilder () throws IOException ;
102
+ /** Creates an appender. */
103
+ FileAppender <D > appender () throws IOException ;
98
104
99
- DataWriter <D > writerBuilder () throws IOException ;
105
+ /** Creates a data writer. */
106
+ DataWriter <D > dataWriter () throws IOException ;
100
107
101
- EqualityDeleteWriter <D > equalityWriterBuilder () throws IOException ;
108
+ /** Creates an equality delete writer. */
109
+ EqualityDeleteWriter <D > equalityDeleteWriter () throws IOException ;
102
110
103
- PositionDeleteWriter <D > positionWriterBuilder () throws IOException ;
111
+ /** Creates a position delete writer. */
112
+ PositionDeleteWriter <D > positionDeleteWriter () throws IOException ;
104
113
}
0 commit comments