Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs to better explain limitations of Dataset support #6010

Merged
merged 2 commits into from
Jul 19, 2022
Merged
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
7 changes: 5 additions & 2 deletions docs/FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,11 @@ of focus right now. Other areas like GraphX or RDDs are not accelerated.
### Is the Spark `Dataset` API supported?

The RAPIDS Accelerator supports the `DataFrame` API which is implemented in Spark as `Dataset[Row]`.
If you are using `Dataset[Row]` that is equivalent to the `DataFrame` API. However using custom
classes or types with `Dataset` is not supported. Such queries should still execute correctly when
If you are using `Dataset[Row]` that is equivalent to the `DataFrame` API. In either case the
operations that are supported for acceleration on the GPU are limited. For example using custom
classes or types with `Dataset` are not supported. Neither are using APIs that take `Row` as an input,
or ones that take Scala or Java functions to operate. This includes operators like `flatMap`, `foreach`,
or `foreachPartition`. Such queries will still execute correctly when
using the RAPIDS Accelerator, but it is likely most query operations will not be performed on the
GPU.

Expand Down