1
0

[HUDI-2243] Support Time Travel Query For Hoodie Table (#3360)

This commit is contained in:
pengzhiwei
2021-08-08 07:07:22 +08:00
committed by GitHub
parent 55d2e786db
commit 32a50d8ddb
5 changed files with 296 additions and 12 deletions

View File

@@ -116,6 +116,13 @@ object DataSourceReadOptions {
.defaultValue("")
.withDocumentation("For the use-cases like users only want to incremental pull from certain partitions "
+ "instead of the full table. This option allows using glob pattern to directly filter on path.")
val TIME_TRAVEL_AS_OF_INSTANT: ConfigProperty[String] = ConfigProperty
.key("as.of.instant")
.noDefaultValue()
.withDocumentation("The query instant for time travel. Without specified this option," +
" we query the latest snapshot.")
}
/**