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
-[Is the batch part of the client thread safe](#is-the-batch-part-of-the-client-thread-safe)
9
-
-[If multiple threads are accessing it, are they all adding Points to the same batch ?](#if-multiple-threads-are-accessing-it-are-they-all-adding-points-to-the-same-batch)
10
-
-[And if so, is there a single thread in the background that is emptying batch to the server ?](#and-if-so-is-there-a-single-thread-in-the-background-that-is-emptying-batch-to-the-server)
11
-
-[If there is an error during this background process, is it propagated to the rest of the client ?](#if-there-is-an-error-during-this-background-process-is-it-propagated-to-the-rest-of-the-client)
12
-
-[How the client responds to concurrent write backpressure from server ?](#how-the-client-responds-to-concurrent-write-backpressure-from-server)
13
-
-[Is there a way to tell that all query chunks have arrived ?](#is-there-a-way-to-tell-that-all-query-chunks-have-arrived)
14
-
-[Is there a way to tell the system to stop sending more chunks once I've found what I'm looking for ?](#is-there-a-way-to-tell-the-system-to-stop-sending-more-chunks-once-ive-found-what-im-looking-for)
15
-
-[How to handle exceptions while using async chunked queries ?](#how-to-handle-exceptions-while-using-async-chunked-queries)
-[How to use SSL client certificate authentication](#how-to-use-ssl-client-certificate-authentication)
6
+
-[Functionality](#functionality)
7
+
-[Security](#security)
8
+
-[Is the batch part of the client thread safe](#is-the-batch-part-of-the-client-thread-safe)
9
+
-[If multiple threads are accessing it, are they all adding Points to the same batch ?](#if-multiple-threads-are-accessing-it-are-they-all-adding-points-to-the-same-batch)
10
+
-[And if so, is there a single thread in the background that is emptying batch to the server ?](#and-if-so-is-there-a-single-thread-in-the-background-that-is-emptying-batch-to-the-server)
11
+
-[If there is an error during this background process, is it propagated to the rest of the client ?](#if-there-is-an-error-during-this-background-process-is-it-propagated-to-the-rest-of-the-client)
12
+
-[How the client responds to concurrent write backpressure from server ?](#how-the-client-responds-to-concurrent-write-backpressure-from-server)
13
+
-[Is there a way to tell that all query chunks have arrived ?](#is-there-a-way-to-tell-that-all-query-chunks-have-arrived)
14
+
-[How to handle exceptions while using async chunked queries ?](#how-to-handle-exceptions-while-using-async-chunked-queries)
15
+
-[Is there a way to tell the system to stop sending more chunks once I've found what I'm looking for ?](#is-there-a-way-to-tell-the-system-to-stop-sending-more-chunks-once-ive-found-what-im-looking-for)
//[2020-03-22T20:50:12.929Z, between 6 and 9 feet, coyote_creek, 8.12]
46
+
//]]], error=null]], error=null]
46
47
47
48
influxDB.close(); // (8)
48
49
```
49
50
50
51
### Connecting to InfluxDB
52
+
51
53
(1) The `InfluxDB` client is thread-safe and our recommendation is to have a single instance per application and reuse it, when possible. Every `InfluxDB` instance keeps multiple data structures, including those used to manage different pools like HTTP clients for reads and writes.
52
54
53
55
It's possible to have just one client even when reading or writing to multiple InfluxDB databases and this will be shown later here.
54
56
55
-
56
57
### Setting a default database (optional)
58
+
57
59
(2) If you are not querying different databases with a single `InfluxDB` client, it's possible to set a default database name and all queries (reads and writes) from this `InfluxDB` client will be executed against the default database.
58
60
59
61
If we only comment out the line (2) then all reads and writes queries would fail. To avoid this, we need to pass the database name as parameter to `BatchPoints` (writes) and to `Query` (reads). For example:
It's possible to use both approaches at the same time: set a default database using `influxDB.setDatabase` and read/write passing a `databaseName` as parameter. On this case, the `databaseName` passed as parameter will be used.
86
88
87
-
88
89
### Setting a default retention policy (optional)
89
-
(3) TODO: like setting a default database, explain here how it works with RP.
90
90
91
+
(3) TODO: like setting a default database, explain here how it works with RP.
91
92
92
93
### Enabling batch writes
94
+
93
95
(4) TODO: explanation about BatchOption parameters:
With batching enabled the client provides two strategies how to deal with errors thrown by the InfluxDB server.
120
123
121
124
1. 'One shot' write - on failed write request to InfluxDB server an error is reported to the client using the means mentioned above.
@@ -127,8 +130,8 @@ Note:
127
130
128
131
* Batching functionality creates an internal thread pool that needs to be shutdown explicitly as part of a graceful application shutdown or the application will terminate properly. To do so, call `influxDB.close()`.
129
132
130
-
131
133
### Writing to InfluxDB
134
+
132
135
(5) ...
133
136
134
137
`----8<----BEGIN DRAFT----8<----`
@@ -182,12 +185,12 @@ influxDB.query(query);
182
185
influxDB.query(newQuery("DROP RETENTION POLICY "+ rpName +" ON "+ dbName));
* If your InfluxDB query contains multiple SELECT clauses **for the same measurement**, InfluxResultMapper will process all results because there is no way to distinguish which one should be mapped to your POJO. It may result in an invalid collection being returned;
346
349
* A Class field annotated with _@Column(..., tag = true)_ (i.e. a [InfluxDB Tag](https://docs.influxdata.com/influxdb/v1.2/concepts/glossary/#tag-value)) must be declared as _String_.
347
350
348
-
#### QueryBuilder:
351
+
#### QueryBuilder
349
352
350
353
An alternative way to create InfluxDB queries is available. By using the [QueryBuilder](QUERY_BUILDER.md) you can create queries using java instead of providing the influxdb queries as strings.
351
354
352
355
### InfluxDBMapper
353
356
354
357
In case you want to save and load data using models you can use the [InfluxDBMapper](INFLUXDB_MAPPER.md).
355
358
356
-
357
359
### Other Usages
358
360
359
361
For additional usage examples have a look at [InfluxDBTest.java](https://github.com/influxdb/influxdb-java/blob/master/src/test/java/org/influxdb/InfluxDBTest.java"InfluxDBTest.java")
360
362
361
-
362
-
363
363
### Publishing
364
364
365
365
This is a
@@ -370,4 +370,4 @@ closed and I'm able to upload artifacts to the sonatype repositories.
0 commit comments