Skip to content

Commit d0c5ea8

Browse files
committed
Fix almost all markdown-linter issues
1 parent 1a2e9c6 commit d0c5ea8

File tree

4 files changed

+99
-109
lines changed

4 files changed

+99
-109
lines changed

FAQ.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33
## Functionality
44

55
- [Frequently Asked Questions](#frequently-asked-questions)
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-
- [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)
16-
- [Is default config security setup TLS 1.2 ?](#is-default-config-security-setup-tls-12)
17-
- [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)
16+
- [Is default config security setup TLS 1.2 ?](#is-default-config-security-setup-tls-12)
17+
- [How to use SSL client certificate authentication](#how-to-use-ssl-client-certificate-authentication)
1818

1919
## Security
2020

@@ -84,11 +84,12 @@ influxDB.query(new Query("SELECT * FROM disk", "telegraf"), 10_000,
8484
System.out.println("The query successfully finished.");
8585
});
8686
```
87+
8788
## How to handle exceptions while using async chunked queries ?
8889

89-
Exception handling for chunked queries can be handled by __onFailure__ error
90-
consumer.
91-
90+
Exception handling for chunked queries can be handled by __onFailure__ error
91+
consumer.
92+
9293
```java
9394

9495
influxDB.query(query, chunksize,
@@ -104,7 +105,6 @@ influxDB.query(query, chunksize,
104105
throwable -> {
105106
System.out.println("On Failure - " + throwable.getLocalizedMessage());
106107
});
107-
108108
```
109109

110110
## Is there a way to tell the system to stop sending more chunks once I've found what I'm looking for ?

MANUAL.md

+34-34
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Manual
22

33
## Quick start
4+
45
The code below is similar to the one found on the README.md file but with comments removed and rows numbered for better reference.
56

67
```Java
@@ -12,48 +13,49 @@ influxDB.query(new Query("CREATE DATABASE " + databaseName));
1213
influxDB.setDatabase(databaseName); // (2)
1314

1415
String retentionPolicyName = "one_day_only";
15-
influxDB.query(new Query("CREATE RETENTION POLICY " + retentionPolicyName
16-
+ " ON " + databaseName + " DURATION 1d REPLICATION 1 DEFAULT"));
16+
influxDB.query(new Query("CREATE RETENTION POLICY " + retentionPolicyName
17+
+ " ON " + databaseName + " DURATION 1d REPLICATION 1 DEFAULT"));
1718
influxDB.setRetentionPolicy(retentionPolicyName); // (3)
1819

1920
influxDB.enableBatch(BatchOptions.DEFAULTS); // (4)
2021

2122
influxDB.write(Point.measurement("h2o_feet") // (5)
22-
.time(System.currentTimeMillis(), TimeUnit.MILLISECONDS)
23-
.tag("location", "santa_monica")
24-
.addField("level description", "below 3 feet")
25-
.addField("water_level", 2.064d)
26-
.build());
23+
.time(System.currentTimeMillis(), TimeUnit.MILLISECONDS)
24+
.tag("location", "santa_monica")
25+
.addField("level description", "below 3 feet")
26+
.addField("water_level", 2.064d)
27+
.build());
2728

2829
influxDB.write(Point.measurement("h2o_feet") // (5)
29-
.tag("location", "coyote_creek")
30-
.addField("level description", "between 6 and 9 feet")
31-
.addField("water_level", 8.12d)
32-
.build()); // (6)
30+
.tag("location", "coyote_creek")
31+
.addField("level description", "between 6 and 9 feet")
32+
.addField("water_level", 8.12d)
33+
.build()); // (6)
3334

3435
Thread.sleep(5_000L); // (7)
3536

3637
QueryResult queryResult = influxDB.query(new Query("SELECT * FROM h2o_feet"));
3738

3839
System.out.println(queryResult);
3940
// It will print something like:
40-
// QueryResult [results=[Result [series=[Series [name=h2o_feet, tags=null,
41-
// columns=[time, level description, location, water_level],
42-
// values=[
43-
// [2020-03-22T20:50:12.929Z, below 3 feet, santa_monica, 2.064],
44-
// [2020-03-22T20:50:12.929Z, between 6 and 9 feet, coyote_creek, 8.12]
45-
// ]]], error=null]], error=null]
41+
// QueryResult [results=[Result [series=[Series [name=h2o_feet, tags=null,
42+
// columns=[time, level description, location, water_level],
43+
// values=[
44+
// [2020-03-22T20:50:12.929Z, below 3 feet, santa_monica, 2.064],
45+
// [2020-03-22T20:50:12.929Z, between 6 and 9 feet, coyote_creek, 8.12]
46+
// ]]], error=null]], error=null]
4647

4748
influxDB.close(); // (8)
4849
```
4950

5051
### Connecting to InfluxDB
52+
5153
(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.
5254

5355
It's possible to have just one client even when reading or writing to multiple InfluxDB databases and this will be shown later here.
5456

55-
5657
### Setting a default database (optional)
58+
5759
(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.
5860

5961
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:
@@ -68,11 +70,11 @@ String retentionPolicyName = "one_day_only";
6870
BatchPoints batchPoints = BatchPoints.database(databaseName).retentionPolicy(retentionPolicyName).build();
6971

7072
batchPoints.point(Point.measurement("h2o_feet")
71-
.time(System.currentTimeMillis(), TimeUnit.MILLISECONDS)
72-
.tag("location", "santa_monica")
73-
.addField("level description", "below 3 feet")
74-
.addField("water_level", 2.064d)
75-
.build());
73+
.time(System.currentTimeMillis(), TimeUnit.MILLISECONDS)
74+
.tag("location", "santa_monica")
75+
.addField("level description", "below 3 feet")
76+
.addField("water_level", 2.064d)
77+
.build());
7678

7779
// ...
7880
influxDB.write(batchPoints);
@@ -84,12 +86,12 @@ influxDB.close();
8486

8587
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.
8688

87-
8889
### Setting a default retention policy (optional)
89-
(3) TODO: like setting a default database, explain here how it works with RP.
9090

91+
(3) TODO: like setting a default database, explain here how it works with RP.
9192

9293
### Enabling batch writes
94+
9395
(4) TODO: explanation about BatchOption parameters:
9496

9597
```Java
@@ -116,6 +118,7 @@ influxDB.enableBatch(BatchOptions.DEFAULTS.jitterDuration(500));
116118
```
117119

118120
#### Error handling with batch writes
121+
119122
With batching enabled the client provides two strategies how to deal with errors thrown by the InfluxDB server.
120123

121124
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:
127130

128131
* 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()`.
129132

130-
131133
### Writing to InfluxDB
134+
132135
(5) ...
133136

134137
`----8<----BEGIN DRAFT----8<----`
@@ -182,12 +185,12 @@ influxDB.query(query);
182185
influxDB.query(new Query("DROP RETENTION POLICY " + rpName + " ON " + dbName));
183186
influxDB.query(new Query("DROP DATABASE " + dbName));
184187
```
185-
`----8<----END DRAFT----8<----`
186188

189+
`----8<----END DRAFT----8<----`
187190

188191
### Reading from InfluxDB
189-
(7) ...
190192

193+
(7) ...
191194

192195
#### Query using Callbacks
193196

@@ -218,7 +221,6 @@ QueryResult results = influxDB.query(query);
218221

219222
The values of the bind() calls are bound to the placeholders in the query ($idle, $system).
220223

221-
222224
## Advanced Usage
223225

224226
### Gzip's support
@@ -324,6 +326,7 @@ List<Cpu> cpuList = resultMapper.toPOJO(queryResult, Cpu.class);
324326
```
325327

326328
### Writing using POJO
329+
327330
The same way we use `annotations` to transform data to POJO, we can write data as POJO.
328331
Having the same POJO class Cpu
329332

@@ -345,21 +348,18 @@ influxDB.write(dbName, rpName, point);
345348
* 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;
346349
* 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_.
347350

348-
#### QueryBuilder:
351+
#### QueryBuilder
349352

350353
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.
351354

352355
### InfluxDBMapper
353356

354357
In case you want to save and load data using models you can use the [InfluxDBMapper](INFLUXDB_MAPPER.md).
355358

356-
357359
### Other Usages
358360

359361
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")
360362

361-
362-
363363
### Publishing
364364

365365
This is a
@@ -370,4 +370,4 @@ closed and I'm able to upload artifacts to the sonatype repositories.
370370

371371
### Frequently Asked Questions
372372

373-
This is a [FAQ](FAQ.md) list for influxdb-java.
373+
This is a [FAQ](FAQ.md) list for influxdb-java.

0 commit comments

Comments
 (0)