@quenty/influxdbclient 1.4.0 → 1.4.1-canary.362.d52aec0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.4.1-canary.362.d52aec0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/influxdbclient@1.4.0...@quenty/influxdbclient@1.4.1-canary.362.d52aec0.0) (2023-05-08)
7
+
8
+
9
+ ### Features
10
+
11
+ * Increase default flush time which will decrease RPS for InfluxDB ([518a7ca](https://github.com/Quenty/NevermoreEngine/commit/518a7ca0ba480a7fcd97b63c9b83e9c3b03915a1))
12
+
13
+
14
+
15
+
16
+
6
17
  # [1.4.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/influxdbclient@1.3.1...@quenty/influxdbclient@1.4.0) (2023-04-10)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/influxdbclient",
3
- "version": "1.4.0",
3
+ "version": "1.4.1-canary.362.d52aec0.0",
4
4
  "description": "Provides a Roblox Lua InfluxDB client",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,22 +25,22 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/baseobject": "^6.2.1",
29
- "@quenty/httppromise": "^6.6.0",
30
- "@quenty/jsonutils": "^6.5.0",
31
- "@quenty/loader": "^6.2.1",
32
- "@quenty/maid": "^2.5.0",
33
- "@quenty/math": "^2.3.0",
34
- "@quenty/promise": "^6.5.0",
35
- "@quenty/rx": "^7.10.0",
36
- "@quenty/servicebag": "^6.6.1",
37
- "@quenty/signal": "^2.3.0",
38
- "@quenty/string": "^3.1.0",
39
- "@quenty/table": "^3.2.0",
40
- "@quenty/valueobject": "^7.12.0"
28
+ "@quenty/baseobject": "6.2.1",
29
+ "@quenty/httppromise": "6.6.0",
30
+ "@quenty/jsonutils": "6.5.0",
31
+ "@quenty/loader": "6.2.1",
32
+ "@quenty/maid": "2.5.0",
33
+ "@quenty/math": "2.3.0",
34
+ "@quenty/promise": "6.5.0",
35
+ "@quenty/rx": "7.10.0",
36
+ "@quenty/servicebag": "6.6.1",
37
+ "@quenty/signal": "2.3.0",
38
+ "@quenty/string": "3.1.0",
39
+ "@quenty/table": "3.2.0",
40
+ "@quenty/valueobject": "7.12.1-canary.362.d52aec0.0"
41
41
  },
42
42
  "publishConfig": {
43
43
  "access": "public"
44
44
  },
45
- "gitHead": "3306212248c310731931ad45d8b86dc7247f2a5d"
45
+ "gitHead": "d52aec0090addf4c1a353d5148aa4c265ed12bdf"
46
46
  }
@@ -12,7 +12,7 @@ function InfluxDBWriteOptionUtils.getDefaultOptions()
12
12
  return InfluxDBWriteOptionUtils.createWriteOptions({
13
13
  batchSize = 1000;
14
14
  maxBatchBytes = 50_000_000; -- default max batch size in the cloud
15
- flushIntervalSeconds = 5;
15
+ flushIntervalSeconds = 60;
16
16
  -- maxRetries = 5;
17
17
  -- maxRetryTimeSeconds = 180;
18
18
  -- maxBufferLines = 32_000;