Skip to content

Commit f62682e

Browse files
authored
Merge branch 'master' into jts/dar-484-add-steps-to-install-kubit-in-an-air-gapped-environment
2 parents 1809081 + 4941aec commit f62682e

File tree

27 files changed

+1348
-381
lines changed

27 files changed

+1348
-381
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: SQL binary string functions
3+
list_title: Binary string functions
4+
description: >
5+
Use binary string functions to encode and decode binary string values in
6+
SQL queries.
7+
menu:
8+
influxdb3_cloud_dedicated:
9+
name: Binary string
10+
parent: sql-functions
11+
weight: 308
12+
13+
source: /content/shared/sql-reference/functions/binary-string.md
14+
---
15+
16+
<!--
17+
The content of this page is at
18+
// SOURCE /content/shared/sql-reference/functions/binary-string.md
19+
-->
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: SQL hashing functions
3+
list_title: Hashing functions
4+
description: >
5+
Use hashing functions to hash string values in SQL queries using established
6+
hashing algorithms.
7+
menu:
8+
influxdb3_cloud_dedicated:
9+
name: Hashing
10+
parent: sql-functions
11+
weight: 309
12+
13+
source: /shared/sql-reference/functions/hashing.md
14+
---
15+
16+
<!--
17+
The content for this page is at
18+
// SOURCE /content/shared/sql-reference/functions/hashing.md
19+
-->

content/influxdb3/cloud-dedicated/reference/sql/operators/comparison.md

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,21 @@ menu:
1010
parent: Operators
1111
weight: 302
1212
list_code_example: |
13-
| Operator | Meaning | Example |
14-
| :------: | :------------------------------------------------------- | :---------------- |
15-
| `=` | Equal to | `123 = 123` |
16-
| `<>` | Not equal to | `123 <> 456` |
17-
| `!=` | Not equal to | `123 != 456` |
18-
| `>` | Greater than | `3 > 2` |
19-
| `>=` | Greater than or equal to | `3 >= 2` |
20-
| `<` | Less than | `1 < 2` |
21-
| `<=` | Less than or equal to | `1 <= 2` |
22-
| `~` | Matches a regular expression | `'abc' ~ 'a.*'` |
23-
| `~*` | Matches a regular expression _(case-insensitive)_ | `'Abc' ~* 'A.*'` |
24-
| `!~` | Does not match a regular expression | `'abc' !~ 'd.*'` |
25-
| `!~*` | Does not match a regular expression _(case-insensitive)_ | `'Abc' !~* 'a.*'` |
13+
| Operator | Meaning | Example |
14+
| :--------------------: | :------------------------------------------------------- | :------------------------- |
15+
| `=` | Equal to | `123 = 123` |
16+
| `<>` | Not equal to | `123 <> 456` |
17+
| `!=` | Not equal to | `123 != 456` |
18+
| `>` | Greater than | `3 > 2` |
19+
| `>=` | Greater than or equal to | `3 >= 2` |
20+
| `<` | Less than | `1 < 2` |
21+
| `<=` | Less than or equal to | `1 <= 2` |
22+
| `IS DISTINCT FROM` | Is distinct from | `0 IS DISTINCT FROM 1` |
23+
| `IS NOT DISTINCT FROM` | Is not distinct from | `0 IS NOT DISTINCT FROM 1` |
24+
| `~` | Matches a regular expression | `'abc' ~ 'a.*'` |
25+
| `~*` | Matches a regular expression _(case-insensitive)_ | `'Abc' ~* 'A.*'` |
26+
| `!~` | Does not match a regular expression | `'abc' !~ 'd.*'` |
27+
| `!~*` | Does not match a regular expression _(case-insensitive)_ | `'Abc' !~* 'a.*'` |
2628
2729
source: /content/shared/sql-reference/operators/comparison.md
2830
---
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: SQL binary string functions
3+
list_title: Binary string functions
4+
description: >
5+
Use binary string functions to encode and decode binary string values in
6+
SQL queries.
7+
menu:
8+
influxdb3_cloud_serverless:
9+
name: Binary string
10+
parent: sql-functions
11+
weight: 308
12+
13+
source: /content/shared/sql-reference/functions/binary-string.md
14+
---
15+
16+
<!--
17+
The content of this page is at
18+
// SOURCE /content/shared/sql-reference/functions/binary-string.md
19+
-->
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: SQL hashing functions
3+
list_title: Hashing functions
4+
description: >
5+
Use hashing functions to hash string values in SQL queries using established
6+
hashing algorithms.
7+
menu:
8+
influxdb3_cloud_serverless:
9+
name: Hashing
10+
parent: sql-functions
11+
weight: 309
12+
13+
source: /shared/sql-reference/functions/hashing.md
14+
---
15+
16+
<!--
17+
The content for this page is at
18+
// SOURCE /content/shared/sql-reference/functions/hashing.md
19+
-->

content/influxdb3/cloud-serverless/reference/sql/operators/comparison.md

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,21 @@ menu:
1010
parent: Operators
1111
weight: 302
1212
list_code_example: |
13-
| Operator | Meaning | Example |
14-
| :------: | :------------------------------------------------------- | :---------------- |
15-
| `=` | Equal to | `123 = 123` |
16-
| `<>` | Not equal to | `123 <> 456` |
17-
| `!=` | Not equal to | `123 != 456` |
18-
| `>` | Greater than | `3 > 2` |
19-
| `>=` | Greater than or equal to | `3 >= 2` |
20-
| `<` | Less than | `1 < 2` |
21-
| `<=` | Less than or equal to | `1 <= 2` |
22-
| `~` | Matches a regular expression | `'abc' ~ 'a.*'` |
23-
| `~*` | Matches a regular expression _(case-insensitive)_ | `'Abc' ~* 'A.*'` |
24-
| `!~` | Does not match a regular expression | `'abc' !~ 'd.*'` |
25-
| `!~*` | Does not match a regular expression _(case-insensitive)_ | `'Abc' !~* 'a.*'` |
13+
| Operator | Meaning | Example |
14+
| :--------------------: | :------------------------------------------------------- | :------------------------- |
15+
| `=` | Equal to | `123 = 123` |
16+
| `<>` | Not equal to | `123 <> 456` |
17+
| `!=` | Not equal to | `123 != 456` |
18+
| `>` | Greater than | `3 > 2` |
19+
| `>=` | Greater than or equal to | `3 >= 2` |
20+
| `<` | Less than | `1 < 2` |
21+
| `<=` | Less than or equal to | `1 <= 2` |
22+
| `IS DISTINCT FROM` | Is distinct from | `0 IS DISTINCT FROM 1` |
23+
| `IS NOT DISTINCT FROM` | Is not distinct from | `0 IS NOT DISTINCT FROM 1` |
24+
| `~` | Matches a regular expression | `'abc' ~ 'a.*'` |
25+
| `~*` | Matches a regular expression _(case-insensitive)_ | `'Abc' ~* 'A.*'` |
26+
| `!~` | Does not match a regular expression | `'abc' !~ 'd.*'` |
27+
| `!~*` | Does not match a regular expression _(case-insensitive)_ | `'Abc' !~* 'a.*'` |
2628
2729
source: /content/shared/sql-reference/operators/comparison.md
2830
---

content/influxdb3/clustered/reference/release-notes/clustered.md

Lines changed: 14 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ spec:
142142

143143
#### AppInstance image override bug fix
144144

145-
In [20240925-1257864](#20240925-1257864), the AppInstance image override was
145+
In 20240925-1257864, the AppInstance image override was
146146
broken with the introduction of strict always-on license enforcement.
147147
This release fixes that bug.
148148

@@ -151,49 +151,19 @@ Clustered in air-gapped environments where the deployment model involves
151151
overriding the default image repository to point to images copied to an
152152
air-gapped registry.
153153

154-
This release is an alternative to [20240925-1257864](#20240925-1257864) for
154+
This release is an alternative to 20240925-1257864 for
155155
customers who depend on this image override feature.
156156

157157
#### Upgrade bug fix
158158

159-
[20240925-1257864](#20240925-1257864) introduced a schema migration bug that
159+
20240925-1257864 introduced a schema migration bug that
160160
caused an `init` container in the `account` Pods to hang indefinitely.
161161
This would only affect InfluxDB Clustered during an upgrade; not a fresh install.
162+
The 20240925-1257864 release has been removed from the release notes, but
163+
relevant updates are included as part of this 20241024-1354148 release.
162164

163165
For customers who experience this bug when attempting to upgrade to
164-
[20240925-1257864](#20240925-1257864), upgrade to this 20241024-1354148 instead.
165-
166-
### Changes
167-
168-
#### Deployment
169-
170-
- Enable overriding the default CPU and memory resource requests and limits for
171-
the Garbage collector and Catalog services.
172-
- Remove the Gateway service and implement the newly introduced Core service.
173-
- Fix logic related to applying default resource limits for IOx components.
174-
- Support [`ResourceQuota`s](https://kubernetes.io/docs/concepts/policy/resource-quotas/)
175-
with the `enableDefaultResourceLimits` feature flag. This causes resource
176-
limits to be applied even to containers that don't normally have limits
177-
applied.
178-
179-
---
180-
181-
## 20240925-1257864 {date="2024-09-25" .checkpoint}
182-
183-
> [!Caution]
184-
> This release has a number of bugs in it which make it unsuitable for customer use.
185-
> If you are currently running this version, please upgrade to
186-
> [20241024-1354148](#20241024-1354148).
187-
188-
### Quickstart
189-
190-
```yaml
191-
spec:
192-
package:
193-
image: us-docker.pkg.dev/influxdb2-artifacts/clustered/influxdb:202409XX-XXXXXXX
194-
```
195-
196-
### Highlights
166+
20240925-1257864, upgrade to this 20241024-1354148 instead.
197167

198168
#### Default to partial write semantics
199169

@@ -283,6 +253,14 @@ The installation of the Prometheus operator should be handled externally.
283253

284254
#### Deployment
285255

256+
- Enable overriding the default CPU and memory resource requests and limits for
257+
the Garbage collector and Catalog services.
258+
- Remove the Gateway service and implement the newly introduced Core service.
259+
- Fix logic related to applying default resource limits for IOx components.
260+
- Support [`ResourceQuota`s](https://kubernetes.io/docs/concepts/policy/resource-quotas/)
261+
with the `enableDefaultResourceLimits` feature flag. This causes resource
262+
limits to be applied even to containers that don't normally have limits
263+
applied.
286264
- Introduces the `nodeAffinity` and CPU/Memory requests setting for "granite"
287265
components. Previously, these settings were only available for core IOx
288266
components.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: SQL binary string functions
3+
list_title: Binary string functions
4+
description: >
5+
Use binary string functions to encode and decode binary string values in
6+
SQL queries.
7+
menu:
8+
influxdb3_clustered:
9+
name: Binary string
10+
parent: sql-functions
11+
weight: 308
12+
13+
source: /content/shared/sql-reference/functions/binary-string.md
14+
---
15+
16+
<!--
17+
The content of this page is at
18+
// SOURCE /content/shared/sql-reference/functions/binary-string.md
19+
-->
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: SQL hashing functions
3+
list_title: Hashing functions
4+
description: >
5+
Use hashing functions to hash string values in SQL queries using established
6+
hashing algorithms.
7+
menu:
8+
influxdb3_clustered:
9+
name: Hashing
10+
parent: sql-functions
11+
weight: 309
12+
13+
source: /shared/sql-reference/functions/hashing.md
14+
---
15+
16+
<!--
17+
The content for this page is at
18+
// SOURCE /content/shared/sql-reference/functions/hashing.md
19+
-->

content/influxdb3/clustered/reference/sql/operators/comparison.md

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,21 @@ menu:
1010
parent: Operators
1111
weight: 302
1212
list_code_example: |
13-
| Operator | Meaning | Example |
14-
| :------: | :------------------------------------------------------- | :---------------- |
15-
| `=` | Equal to | `123 = 123` |
16-
| `<>` | Not equal to | `123 <> 456` |
17-
| `!=` | Not equal to | `123 != 456` |
18-
| `>` | Greater than | `3 > 2` |
19-
| `>=` | Greater than or equal to | `3 >= 2` |
20-
| `<` | Less than | `1 < 2` |
21-
| `<=` | Less than or equal to | `1 <= 2` |
22-
| `~` | Matches a regular expression | `'abc' ~ 'a.*'` |
23-
| `~*` | Matches a regular expression _(case-insensitive)_ | `'Abc' ~* 'A.*'` |
24-
| `!~` | Does not match a regular expression | `'abc' !~ 'd.*'` |
25-
| `!~*` | Does not match a regular expression _(case-insensitive)_ | `'Abc' !~* 'a.*'` |
13+
| Operator | Meaning | Example |
14+
| :--------------------: | :------------------------------------------------------- | :------------------------- |
15+
| `=` | Equal to | `123 = 123` |
16+
| `<>` | Not equal to | `123 <> 456` |
17+
| `!=` | Not equal to | `123 != 456` |
18+
| `>` | Greater than | `3 > 2` |
19+
| `>=` | Greater than or equal to | `3 >= 2` |
20+
| `<` | Less than | `1 < 2` |
21+
| `<=` | Less than or equal to | `1 <= 2` |
22+
| `IS DISTINCT FROM` | Is distinct from | `0 IS DISTINCT FROM 1` |
23+
| `IS NOT DISTINCT FROM` | Is not distinct from | `0 IS NOT DISTINCT FROM 1` |
24+
| `~` | Matches a regular expression | `'abc' ~ 'a.*'` |
25+
| `~*` | Matches a regular expression _(case-insensitive)_ | `'Abc' ~* 'A.*'` |
26+
| `!~` | Does not match a regular expression | `'abc' !~ 'd.*'` |
27+
| `!~*` | Does not match a regular expression _(case-insensitive)_ | `'Abc' !~* 'a.*'` |
2628
2729
source: /content/shared/sql-reference/operators/comparison.md
2830
---

0 commit comments

Comments
 (0)