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 documentation to reflect the release of the FlightSQL JDBC Driver #461

Merged
merged 4 commits into from
Oct 28, 2022
Merged
Changes from 1 commit
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
Next Next commit
Update documentation
  • Loading branch information
Brent Gardner committed Oct 27, 2022
commit e54fddd1970f22eedd2203de792ac48863a57d0f
20 changes: 6 additions & 14 deletions docs/source/user-guide/flightsql.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,21 +73,10 @@ cargo build --release --all --features flight-sql
docker-compose up --build
```

## <a name="jdbc"/>Build the FlightSQL JDBC Driver
## <a name="jdbc"/>Download the FlightSQL JDBC Driver

**Note:** this will no longer be necessary when Arrow v10 is released approximately 2022-10-31

**Note:** A full explaination of the Arrow Java build is out-of-scope for this document. Please refer to that project for more detailed instructions.

```shell
git clone https://github.com/apache/arrow.git
cd java
mvn install -DskipTests -Dcheckstyle.skip -Drat.skip=true -pl :flight-sql-jdbc-driver -am
find . -name "*.jar"
...
./flight/flight-sql-jdbc-driver/target/flight-sql-jdbc-driver-10.0.0-SNAPSHOT.jar
...
```
Download the [FlightSQL JDBC Driver](https://repo1.maven.org/maven2/org/apache/arrow/flight-sql-jdbc-driver/10.0.0/flight-sql-jdbc-driver-10.0.0.jar)
from Maven Central.

## <a name="tool"/>Use the Driver in your Favorite Data Tool

Expand All @@ -103,6 +92,9 @@ The important pieces of information:
| Advanced Options | useEncryption=false |
| URL | jdbc:arrow-flight://127.0.0.1:50050 |

**Note**: The `useEnryption` flag will not be required if [this PR](https://github.com/spaceandtimelabs/arrow-ballista/pull/15) is merged,
Copy link
Member

@andygrove andygrove Oct 27, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there a reason we can't have this PR open against the apache/arrow-ballista repo?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it should be @andygrove . Probably @iajoiner opened it before the FlightSQL changes from our fork were upstreamed?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I will close that one and open a new one.

and users crate a valid certificate.

## <a name="hello"/>Run a "Hello, World!" Query

```sql
Expand Down