Skip to content
Merged
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 @@ -150,6 +150,7 @@ usersDF.filter(col("birthday") === "1982-12-15").show()
- `sampleSize`: sample size prefetched for schema inference, only used if read schema is not provided, `1000` by default
- `fillBlockCache`: specifies whether the query should store the data it reads in the RocksDB block cache (`true` or `false`), `false` by default
- `stream`: specifies whether the query should be executed lazily, `true` by default
- `ttl`: cursor time to live in seconds, `30` by default
- `mode`: allows setting a mode for dealing with corrupt records during parsing:
- `PERMISSIVE` : win case of a corrupted record, the malformed string is put into a field configured by
`columnNameOfCorruptRecord`, and sets malformed fields to null. To keep corrupt records, a user can set a string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ usersDF.filter(col("birthday") === "1982-12-15").show()
- `sampleSize`: sample size prefetched for schema inference, only used if read schema is not provided, `1000` by default
- `fillBlockCache`: specifies whether the query should store the data it reads in the RocksDB block cache (`true` or `false`), `false` by default
- `stream`: specifies whether the query should be executed lazily, `true` by default
- `ttl`: cursor time to live in seconds, `30` by default
- `mode`: allows setting a mode for dealing with corrupt records during parsing:
- `PERMISSIVE` : win case of a corrupted record, the malformed string is put into a field configured by
`columnNameOfCorruptRecord`, and sets malformed fields to null. To keep corrupt records, a user can set a string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ usersDF.filter(col("birthday") === "1982-12-15").show()
- `sampleSize`: sample size prefetched for schema inference, only used if read schema is not provided, `1000` by default
- `fillBlockCache`: specifies whether the query should store the data it reads in the RocksDB block cache (`true` or `false`), `false` by default
- `stream`: specifies whether the query should be executed lazily, `true` by default
- `ttl`: cursor time to live in seconds, `30` by default
- `mode`: allows setting a mode for dealing with corrupt records during parsing:
- `PERMISSIVE` : win case of a corrupted record, the malformed string is put into a field configured by
`columnNameOfCorruptRecord`, and sets malformed fields to null. To keep corrupt records, a user can set a string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ usersDF.filter(col("birthday") === "1982-12-15").show()
- `sampleSize`: sample size prefetched for schema inference, only used if read schema is not provided, `1000` by default
- `fillBlockCache`: specifies whether the query should store the data it reads in the RocksDB block cache (`true` or `false`), `false` by default
- `stream`: specifies whether the query should be executed lazily, `true` by default
- `ttl`: cursor time to live in seconds, `30` by default
- `mode`: allows setting a mode for dealing with corrupt records during parsing:
- `PERMISSIVE` : win case of a corrupted record, the malformed string is put into a field configured by
`columnNameOfCorruptRecord`, and sets malformed fields to null. To keep corrupt records, a user can set a string
Expand Down