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
| Database Connection URL | The JDBC connection string pointing to CrateDB |`jdbc:postgresql://<cratedb-host>:5432/doc?sslmode=verify-full&sslrootcert=/path/to/ca.pem`|
22
22
| Database Driver Class Name | The PostgreSQL JDBC driver class name |`org.postgresql.Driver`|
23
-
| Database Driver Location(s)|[Download](https://jdbc.postgresql.org/download/) the latest PostgreSQL JDBC driver and place it on the file system of the NiFi host |`${nifi.home}/lib/postgresql-42.7.x.jar`|
23
+
| Database Driver Location(s)|[Download](https://jdbc.postgresql.org/download/) the latest PostgreSQL JDBC driver and place it on the file system of the NiFi host |`${nifi.home}/lib/postgresql-42.7.8.jar`|
Copy file name to clipboardExpand all lines: docs/integrate/spark/usage.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,7 +67,7 @@ This usage guide will work with a single-node Apache Spark installation running
67
67
```
68
68
69
69
4. Finally, as CrateDB communicates with Spark via JDBC, download the [Postgres JDBC driver](https://jdbc.postgresql.org/download/) in your working directory.
70
-
In this usage guide, we use the `postgresql-42.6.0.jar` driver.
70
+
In this usage guide, we use the `postgresql-42.7.8.jar` driver.
71
71
72
72
73
73
## Data analysis
@@ -80,7 +80,7 @@ You can load data from CrateDB into a PySpark DataFrame using the following code
0 commit comments