You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add Apache Spark Parquet examples to README and guides
This commit includes references to a new example showcasing data and ML model export from Apache Spark using Parquet files. Updates were made to both the README and guides section, highlighting visualization with Kandy and integration details.
Copy file name to clipboardExpand all lines: examples/README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,11 +11,14 @@ Also includes [Kotlin DataFrame Compiler Plugin](https://kotlin.github.io/datafr
11
11
*[json](idea-examples/json) Using OpenAPI support in DataFrame's Gradle and KSP plugins to access data from [API guru](https://apis.guru/) in a type-safe manner
12
12
*[imdb sql database](https://github.com/zaleslaw/KotlinDataFrame-SQL-Examples) This project prominently showcases how to convert data from an SQL table to a Kotlin DataFrame
13
13
and how to transform the result of an SQL query into a DataFrame.
14
+
*[spark-parquet-dataframe](idea-examples/spark-parquet-dataframe) This project showcases how to export data and ML models from Apache Spark via reading from Parquet files.
14
15
*[unsupported-data-sources](idea-examples/unsupported-data-sources) Showcases of how to use DataFrame with
15
16
(momentarily) unsupported data libraries such as [Spark](https://spark.apache.org/) and [Exposed](https://github.com/JetBrains/Exposed).
16
17
They show how to convert to and from Kotlin DataFrame and their respective tables.
17
18
***JetBrains Exposed**: See the [exposed folder](./idea-examples/unsupported-data-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/examples/exposed)
18
19
for an example of using Kotlin DataFrame with [Exposed](https://github.com/JetBrains/Exposed).
20
+
***Hibernate**: See the [hibernate folder](./idea-examples/unsupported-data-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/examples/hibernate)
21
+
for an example of using Kotlin DataFrame with [Hibernate](https://hibernate.org/orm/).
19
22
***Apache Spark**: See the [spark folder](./idea-examples/unsupported-data-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/examples/spark)
20
23
for an example of using Kotlin DataFrame with [Spark](https://spark.apache.org/).
21
24
***Spark (with Kotlin Spark API)**: See the [kotlinSpark folder](./idea-examples/unsupported-data-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/examples/kotlinSpark)
0 commit comments