File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
parquet-column/src/main/java/org/apache/parquet/column/values/factory Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 2727 * Due to this, they must provide a default constructor.
2828 * Lifecycle of ValuesWriterFactories is:
2929 * 1) Created via reflection while creating a {@link org.apache.parquet.column.ParquetProperties}
30- * 2) If the factory is Configurable (needs Hadoop conf), that is set, initialize is also called. This is done
31- * just once for the lifetime of the factory. As Hadoop config can be set, ValuesWriterFactories can
32- * read additional config to create appropriate ValuesWriters.
30+ * 2) If the factory is Configurable (needs Hadoop conf), that is set by calling setConfig().
31+ * initialize() is also called. This is done just once for the lifetime of the factory. As Hadoop
32+ * config can be set, ValuesWriterFactories can read additional config to create appropriate ValuesWriters.
3333 * 3) newValuesWriter is called once per column for every block of data.
34- *
3534 */
3635public interface ValuesWriterFactory {
3736
You can’t perform that action at this time.
0 commit comments