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: CHANGELOG.md
+3
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,9 @@
5
5
- InfluxDBResultMapper now is able to process QueryResult created when a GROUP BY clause was used [PR #345](https://github.com/influxdata/influxdb-java/pull/345)
6
6
- InfluxDB will now handle the timestamp on its own if none is provided [PR#350](https://github.com/influxdata/influxdb-java/pull/350)
7
7
8
+
#### Features
9
+
10
+
- API: add InfluxDB#createRetentionPolicy and InfluxDB#dropRetentionPolicy to be able to create and drop Retention Policies [PR #351](https://github.com/influxdata/influxdb-java/pull/351)
@@ -69,10 +77,11 @@ Point point2 = Point.measurement("disk")
69
77
.addField("free", 1L)
70
78
.build();
71
79
72
-
influxDB.write(dbName, "autogen", point1);
73
-
influxDB.write(dbName, "autogen", point2);
80
+
influxDB.write(dbName, rpName, point1);
81
+
influxDB.write(dbName, rpName, point2);
74
82
Query query =newQuery("SELECT idle FROM cpu", dbName);
75
83
influxDB.query(query);
84
+
influxDB.dropRetentionPolicy(rpName, dbName);
76
85
influxDB.deleteDatabase(dbName);
77
86
```
78
87
Note that the batching functionality creates an internal thread pool that needs to be shutdown explicitly as part of a graceful application shut-down, or the application will not shut down properly. To do so simply call: ```influxDB.close()```
0 commit comments