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
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ information to effectively respond to your bug report or contribution.
11
11
12
12
We welcome you to use the GitHub issue tracker to report bugs or suggest features.
13
13
14
-
When filing an issue, please check [existing open](https://github.com/opensearch-project/sql/issues?q=is%3Aopen+is%3Aissue+label%3AJDBC), or [recently closed](https://github.com/opensearch-project/sql/issues?q=is%3Aissue+is%3Aclosed+label%3AJDBC), issues to make sure somebody else hasn't already
14
+
When filing an issue, please check [existing open](https://github.com/opensearch-project/sql-jdbc/issues?q=is%3Aopen+is%3Aissue), or [recently closed](https://github.com/opensearch-project/sql-jdbc/issues?q=is%3Aissue+is%3Aclosed), issues to make sure somebody else hasn't already
15
15
reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:
16
16
17
17
* A reproducible test case or series of steps
@@ -84,7 +84,7 @@ GitHub provides additional document on [forking a repository](https://help.githu
84
84
85
85
86
86
## Finding contributions to work on
87
-
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels (enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/opensearch-project/sql/issues?q=is%3Aopen+label%3A%22help+wanted%22+label%3AJDBC) issues is a great place to start.
87
+
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels (enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/opensearch-project/sql-jdbc/issues?q=is%3Aopen+label%3A%22help+wanted%22) issues is a great place to start.
The driver is available for download from [Artifacts page](https://opensearch.org/artifacts) on OpenSearch.org at the very bottom and from [automated CI workflow](https://github.com/opensearch-project/sql/actions/workflows/sql-jdbc-test-and-build-workflow.yml).
25
+
The driver is available for download from [Artifacts page](https://opensearch.org/artifacts) on OpenSearch.org at the very bottom and from [automated CI workflow](https://github.com/opensearch-project/sql-jdbc/actions/workflows/sql-jdbc-test-and-build-workflow.yml).
27
26
28
27
## Using the driver
29
28
@@ -102,7 +101,7 @@ Code samples to open a connection for some typical scenarios are given below:
102
101
103
102
* Connect to localhost on port 9200 with no authentication over a plain connection
104
103
105
-
```
104
+
```java
106
105
importjava.sql.Connection;
107
106
importjava.sql.DriverManager;
108
107
importjava.sql.Statement;
@@ -121,7 +120,7 @@ con.close();
121
120
122
121
* Connect to a remote host on default SSL port with no authentication
123
122
124
-
```
123
+
```java
125
124
importjava.sql.Connection;
126
125
importjava.sql.DriverManager;
127
126
importjava.sql.Statement;
@@ -140,7 +139,7 @@ con.close();
140
139
141
140
or,
142
141
143
-
```
142
+
```java
144
143
importjava.sql.Connection;
145
144
importjava.sql.DriverManager;
146
145
importjava.sql.Statement;
@@ -162,7 +161,7 @@ con.close();
162
161
163
162
* Connect to a remote host with HTTP Basic authentication over an SSL/TLS connection on the default SSL/TLS port. Note - if a username and password are provided and `auth` property is not provided, basic auth is implicitly used.
164
163
165
-
```
164
+
```java
166
165
importjava.sql.Connection;
167
166
importjava.sql.DriverManager;
168
167
importjava.sql.Statement;
@@ -183,7 +182,7 @@ con.close();
183
182
184
183
or,
185
184
186
-
```
185
+
```java
187
186
importjava.sql.Connection;
188
187
importjava.sql.DriverManager;
189
188
importjava.sql.Statement;
@@ -207,7 +206,7 @@ con.close();
207
206
208
207
* Connect to a remote host with HTTP Basic authentication over an SSL/TLS connection, allowing any self-signed certificate and optionally turning off hostname verification. This may be useful for a dev/test setup.
209
208
210
-
```
209
+
```java
211
210
importjava.sql.Connection;
212
211
importjava.sql.DriverManager;
213
212
importjava.sql.Statement;
@@ -236,8 +235,7 @@ con.close();
236
235
237
236
* Connect to a remote host on default SSL port with AWS Sig V4 authentication. The driver will determine the credentials used to sign the request just like the standard aws-sdk i.e. in standard directories, environment variables etc.
238
237
239
-
240
-
```
238
+
```java
241
239
importjava.sql.Connection;
242
240
importjava.sql.DriverManager;
243
241
importjava.sql.Statement;
@@ -253,9 +251,10 @@ Statement st = con.createStatement();
253
251
// close connection
254
252
con.close();
255
253
```
254
+
256
255
or,
257
256
258
-
```
257
+
```java
259
258
importjava.sql.Connection;
260
259
importjava.sql.DriverManager;
261
260
importjava.sql.Statement;
@@ -277,7 +276,7 @@ con.close();
277
276
278
277
* Connect to a remote host on default SSL port with AWS Sig V4 authentication, explicitly specifying the AWSCredentialProvider to use
279
278
280
-
```
279
+
```java
281
280
importjava.sql.Connection;
282
281
importjava.sql.DriverManager;
283
282
importjava.sql.Statement;
@@ -299,7 +298,7 @@ con.close();
299
298
300
299
* Connect to a remote host on default SSL port with AWS Sig V4 authentication, explicitly specifying the region to use in the request signing.
301
300
302
-
```
301
+
```java
303
302
importjava.sql.Connection;
304
303
importjava.sql.DriverManager;
305
304
importjava.sql.Statement;
@@ -318,7 +317,7 @@ con.close();
318
317
319
318
or,
320
319
321
-
```
320
+
```java
322
321
importjava.sql.Connection;
323
322
importjava.sql.DriverManager;
324
323
importjava.sql.Statement;
@@ -345,7 +344,7 @@ The driver also provides a javax.sql.DataSource implementation via the `org.open
345
344
346
345
* Connect to localhost on port 9200 with no authentication over a plain connection
347
346
348
-
```
347
+
```java
349
348
importjava.sql.Connection;
350
349
importjava.sql.Statement;
351
350
importjavax.sql.DataSource;
@@ -370,7 +369,7 @@ con.close();
370
369
371
370
* Connect to a remote host on default SSL port with no authentication
372
371
373
-
```
372
+
```java
374
373
importjava.sql.Connection;
375
374
importjava.sql.Statement;
376
375
importjavax.sql.DataSource;
@@ -395,7 +394,7 @@ con.close();
395
394
396
395
* Connect to a remote host with HTTP Basic authentication over an SSL/TLS connection on the default SSL/TLS port.
397
396
398
-
```
397
+
```java
399
398
importjava.sql.Connection;
400
399
importjava.sql.Statement;
401
400
importjavax.sql.DataSource;
@@ -420,8 +419,7 @@ con.close();
420
419
421
420
* Connect to a remote host on default SSL port with AWS Sig V4 authentication. The driver will determine the credentials used to sign the request just like the standard aws-sdk i.e. in standard directories, environment variables etc.
422
421
423
-
424
-
```
422
+
```java
425
423
importjava.sql.Connection;
426
424
importjava.sql.Statement;
427
425
importjavax.sql.DataSource;
@@ -446,7 +444,7 @@ con.close();
446
444
447
445
* Connect to a remote host on default SSL port with AWS Sig V4 authentication, explicitly specifying the AWSCredentialProvider to use
448
446
449
-
```
447
+
```java
450
448
importjava.sql.Connection;
451
449
importjava.sql.Statement;
452
450
importjavax.sql.DataSource;
@@ -472,7 +470,7 @@ con.close();
472
470
473
471
* Connect to a remote host on default SSL port with AWS Sig V4 authentication, explicitly specifying the region to use in the request signing.
474
472
475
-
```
473
+
```java
476
474
importjava.sql.Connection;
477
475
importjava.sql.Statement;
478
476
importjavax.sql.DataSource;
@@ -519,18 +517,16 @@ The driver is built as a shadow jar so that its dependencies are bundled within
519
517
520
518
## Documentation
521
519
522
-
Please refer to the [documentation](https://docs-beta.opensearch.org/) for detailed information on installing and configuring opendistro-elasticsearch-security plugin.
520
+
Please refer to the [documentation](https://opensearch.org/docs/latest/) for detailed information on installing and configuring OpenSearch.
523
521
524
522
## Code of Conduct
525
523
526
524
This project has adopted an [Open Source Code of Conduct](CODE_OF_CONDUCT.md).
527
525
528
-
529
526
## Security issue notifications
530
527
531
528
If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public GitHub issue.
532
529
533
-
534
530
## Licensing
535
531
536
532
See the [LICENSE](LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
Copy file name to clipboardExpand all lines: bi-connectors/TableauConnector/README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,17 @@
1
1
## Connector Download
2
2
3
-
The Tableau connector is available to download from the automated CI workflow: [link](https://github.com/opensearch-project/sql/actions/workflows/bi-connectors.yml).
3
+
The Tableau connector is available to download from the automated CI workflow: [link](https://github.com/opensearch-project/sql-jdbc/actions/workflows/bi-connectors.yml).
4
4
The release snapshot is also available [here](opensearch_sql_jdbc.taco).
0 commit comments