Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,12 @@ public class HoodieBootstrapConfig extends HoodieConfig {
.sinceVersion("0.6.0")
.withDocumentation("Selects the mode in which each file/partition in the bootstrapped dataset gets bootstrapped");

@Deprecated
public static final ConfigProperty<String> DATA_QUERIES_ONLY = ConfigProperty
.key("hoodie.bootstrap.data.queries.only")
.defaultValue("false")
.markAdvanced()
.deprecatedAfter("1.2.0")
.sinceVersion("0.14.0")
.withDocumentation("Improves query performance, but queries cannot use hudi metadata fields");

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -150,11 +150,6 @@ trait SparkAdapter extends Serializable {
"hudi".equalsIgnoreCase(provider)
}

/**
* Create instance of [[ParquetFileFormat]]
*/
def createLegacyHoodieParquetFileFormat(appendPartitionValues: Boolean): Option[ParquetFileFormat]

def makeColumnarBatch(vectors: Array[ColumnVector], numRows: Int): ColumnarBatch

/**
Expand All @@ -170,7 +165,6 @@ trait SparkAdapter extends Serializable {
def createRelation(sqlContext: SQLContext,
metaClient: HoodieTableMetaClient,
schema: Schema,
globPaths: Array[StoragePath],
parameters: java.util.Map[String, String]): BaseRelation

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,4 @@
# limitations under the License.


org.apache.hudi.BaseDefaultSource
org.apache.spark.sql.execution.datasources.parquet.LegacyHoodieParquetFileFormat
org.apache.hudi.BaseDefaultSource

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ object DataSourceReadOptions {
val REALTIME_PAYLOAD_COMBINE_OPT_VAL = HoodieReaderConfig.REALTIME_PAYLOAD_COMBINE
val REALTIME_MERGE: ConfigProperty[String] = HoodieReaderConfig.MERGE_TYPE

@Deprecated
val READ_PATHS: ConfigProperty[String] = ConfigProperty
.key("hoodie.datasource.read.paths")
.noDefaultValue()
Expand All @@ -88,6 +89,7 @@ object DataSourceReadOptions {
@Deprecated
val READ_PRE_COMBINE_FIELD = HoodieWriteConfig.PRECOMBINE_FIELD_NAME

@Deprecated
val ENABLE_HOODIE_FILE_INDEX: ConfigProperty[Boolean] = ConfigProperty
.key("hoodie.file.index.enable")
.defaultValue(true)
Expand Down
Loading
Loading