-
Notifications
You must be signed in to change notification settings - Fork 236
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
Move big data generator to a separate module #8988
Conversation
Signed-off-by: Jason Lowe <[email protected]>
build |
@@ -27,13 +26,13 @@ If you are building with a jdk version that is not 8, you will need to add in th | |||
corresponding profile flag `-P<jdk11|jdk17>` | |||
|
|||
After this the jar should be at | |||
`target/rapids-4-spark-integration-tests_2.12-$PLUGIN_VERSION-spark$SPARK_VERSION.jar` | |||
`target/datagen_2.12-$PLUGIN_VERSION-spark$SPARK_VERSION.jar` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should this jar be something like rapids-4-spark-datagen
? I guess we are not publishing it, so maybe that's not such a big deal (feels a bit generic)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I originally had it named that way, but there's nothing in it specific to the RAPIDS Accelerator for Apache Spark. It only uses Apache Spark interfaces and doesn't require the RAPIDS Accelerator.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just had one question that doesn't block this
build |
This moves the data generator out of the integration_tests module and into its own module, making it simpler to pull in as a dependency and more focused if we decide to publish the build artifact later.