Skip to content

Commit 6ec4238

Browse files
authored
Merge pull request #5983 from influxdata/influxdb3-ga
Influxdb3 ga
2 parents bb930bb + 3f1726d commit 6ec4238

File tree

100 files changed

+2463
-355
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+2463
-355
lines changed

assets/styles/layouts/_homepage.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,9 @@
120120
}
121121
}
122122

123-
&.beta {
123+
&.new {
124124
.product-info h3::after {
125-
content: "beta";
125+
content: "New";
126126
margin-left: .5rem;
127127
font-size: 1rem;
128128
padding: .25em .5em .25em .4em;

assets/styles/layouts/_notifications.scss

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,26 @@
9999
pre { background: rgba($r-basalt, .35); }
100100
}
101101

102+
&.ga-announcement {
103+
background-image: url('/svgs/influxdb3-ga-background.svg');
104+
background-size: cover;
105+
a:hover { color: $br-dark-blue; }
106+
code { color: $gr-gypsy; background: rgba($gr-gypsy, .25); }
107+
pre { background: rgba($gr-gypsy, .25); }
108+
109+
h3 {font-size: 1.4rem !important;}
110+
.notification-slug { font-size: 1.15rem;
111+
.btn {
112+
display: inline-block;
113+
background: $g20-white;
114+
color: $br-dark-blue;
115+
padding: .5rem 1rem;
116+
border-radius: $radius * 2;
117+
font-size: 1rem;
118+
}
119+
}
120+
}
121+
102122
//////////// Basic HTML element styles for notification content ////////////
103123

104124
h1,h2,h3,h4,h5,h6 {
@@ -156,6 +176,16 @@
156176
}
157177
.show::before {content: "Show more"}
158178
}
179+
180+
.title-tag {
181+
padding: .15rem .45rem;
182+
text-transform: uppercase;
183+
font-size: .85rem;
184+
border-radius: $radius * 2;
185+
font-family: $code;
186+
background: $br-dark-blue;
187+
}
188+
.title-tag + h3 {margin-top: .75rem;}
159189
}
160190
}
161191

assets/styles/layouts/article/_blocks.scss

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,5 +96,4 @@ blockquote {
9696
"blocks/tip",
9797
"blocks/important",
9898
"blocks/warning",
99-
"blocks/caution",
100-
"blocks/beta";
99+
"blocks/caution";

assets/styles/layouts/article/_feedback.scss

Lines changed: 39 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,27 +15,48 @@
1515
padding-right: 2rem;
1616

1717
ul {
18-
display: flex;
19-
flex-wrap: wrap;
2018
margin-bottom: 1.25rem;
2119
padding: 0;
2220
list-style: none;
2321

24-
li {display: inline-block}
25-
2622
a {
27-
margin-right: 1.5rem;
2823
color: $article-heading;
24+
font-weight: $medium;
25+
position: relative;
26+
27+
&::after {
28+
content: "\e90a";
29+
font-family: 'icomoon-v4';
30+
font-weight: bold;
31+
font-size: 1.3rem;
32+
display: inline-block;
33+
position: absolute;
34+
@include gradient($grad-burningDusk);
35+
background-clip: text;
36+
-webkit-text-fill-color: transparent;
37+
right: 0;
38+
transform: translateX(.25rem);
39+
opacity: 0;
40+
transition: transform .2s, opacity .2s;
41+
}
2942

3043
&:hover {
31-
color: $article-link;
32-
border-radius: calc($radius * 1.5);
44+
&::after {transform: translateX(1.5rem); opacity: 1;}
45+
}
46+
47+
&.discord:before {
48+
content: url('/svgs/discord.svg');
49+
display: inline-block;
50+
height: 1.1rem;
51+
width: 1.25rem;
52+
vertical-align: top;
53+
margin: 2px .65rem 0 0;
3354
}
3455

3556
&.community:before {
3657
content: "\e900";
3758
color: $article-heading;
38-
margin: 0 .5rem 0 -.25rem;
59+
margin-right: .75rem;
3960
font-size: 1.2rem;
4061
font-family: 'icomoon-v2';
4162
vertical-align: middle;
@@ -46,7 +67,16 @@
4667
height: 1.1rem;
4768
width: 1.1rem;
4869
vertical-align: text-top;
49-
margin-right: .5rem;
70+
margin-right: .8rem;
71+
}
72+
73+
&.reddit:before {
74+
content: url('/svgs/reddit.svg');
75+
display: inline-block;
76+
height: 1.1rem;
77+
width: 1.2rem;
78+
vertical-align: top;
79+
margin: 2px .75rem 0 0;
5080
}
5181
}
5282
}

assets/styles/layouts/article/blocks/_beta.scss

Lines changed: 0 additions & 105 deletions
This file was deleted.

content/influxdb3/cloud-dedicated/admin/tokens/database/create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Create a database token
33
description: >
44
Use the [`influxctl token create` command](/influxdb3/cloud-dedicated/reference/cli/influxctl/token/create/)
55
or the [Management HTTP API](/influxdb3/cloud-dedicated/api/management/)
6-
to [database token](/influxdb3/cloud-dedicated/admin/tokens/database/) for reading and writing data in your InfluxDB Cloud Dedicated cluster.
6+
to create a [database token](/influxdb3/cloud-dedicated/admin/tokens/database/) for reading and writing data in your InfluxDB Cloud Dedicated cluster.
77
Provide a token description and permissions for databases.
88
menu:
99
influxdb3_cloud_dedicated:

content/influxdb3/clustered/admin/tokens/database/create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Create a database token
33
description: >
44
Use the [`influxctl token create` command](/influxdb3/clustered/reference/cli/influxctl/token/create/)
5-
to create a database token for reading and writing data in your InfluxDB cluster.
5+
to create a [database token](/influxdb3/clustered/admin/tokens/database/) for reading and writing data in your InfluxDB cluster.
66
Provide a token description and permissions for databases.
77
menu:
88
influxdb3_clustered:
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: Manage the Distinct Value Cache
3+
seotitle: Manage the Distinct Value Cache in {{< product-name >}}
4+
description: >
5+
The {{< product-name >}} Distinct Value Cache (DVC) lets you cache distinct
6+
values of one or more columns in a table, improving the performance of
7+
queries that return distinct tag and field values.
8+
menu:
9+
influxdb3_core:
10+
parent: Administer InfluxDB
11+
weight: 105
12+
influxdb3/core/tags: [cache]
13+
related:
14+
- /influxdb3/core/reference/sql/functions/cache/#distinct_cache, distinct_cache SQL function
15+
source: /shared/influxdb3-admin/distinct-value-cache/_index.md
16+
---
17+
18+
<!-- The content for this page is located at
19+
// SOURCE content/shared/influxdb3-admin/distinct-value-cache/_index.md -->
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
---
2+
title: Create a Distinct Value Cache
3+
description: |
4+
Use the [`influxdb3 create distinct_cache` command](/influxdb3/core/reference/cli/influxdb3/create/distinct_cache/)
5+
to create a Distinct Value Cache.
6+
menu:
7+
influxdb3_core:
8+
parent: Manage the Distinct Value Cache
9+
weight: 201
10+
influxdb3/core/tags: [cache]
11+
related:
12+
- /influxdb3/core/reference/cli/influxdb3/create/distinct_cache/
13+
list_code_example: |
14+
{{% show-in "core" %}}
15+
<!--pytest.mark.skip-->
16+
17+
```bash
18+
influxdb3 create distinct_cache \
19+
--database example-db \
20+
--token 00xoXX0xXXx0000XxxxXx0Xx0xx0 \
21+
--table wind_data \
22+
--columns country,county,city \
23+
--max-cardinality 10000 \
24+
--max-age 24h \
25+
windDistinctCache
26+
```
27+
{{% /show-in %}}
28+
29+
{{% show-in "enterprise" %}}
30+
<!--pytest.mark.skip-->
31+
32+
```bash
33+
influxdb3 create distinct_cache \
34+
--database example-db \
35+
--token 00xoXX0xXXx0000XxxxXx0Xx0xx0 \
36+
--table home \
37+
--node-spec node-01,node-02 \
38+
--columns country,county,city \
39+
--max-cardinality 10000 \
40+
--max-age 24h \
41+
windDistinctCache
42+
```
43+
{{% /show-in %}}
44+
source: /shared/influxdb3-admin/distinct-value-cache/create.md
45+
---
46+
47+
<!-- The content for this page is located at
48+
// SOURCE content/shared/influxdb3-admin/distinct-value-cache/create.md -->
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
title: Delete a Distinct Value Cache
3+
description: |
4+
Use the [`influxdb3 delete distinct_cache` command](/influxdb3/core/reference/cli/influxdb3/delete/distinct_cache/)
5+
to delete a Distinct Value Cache.
6+
menu:
7+
influxdb3_core:
8+
parent: Manage the Distinct Value Cache
9+
weight: 204
10+
influxdb3/core/tags: [cache]
11+
list_code_example: |
12+
<!--pytest.mark.skip-->
13+
14+
```bash
15+
influxdb3 delete distinct_cache \
16+
--database example-db \
17+
--token 00xoXX0xXXx0000XxxxXx0Xx0xx0 \
18+
--table wind_data \
19+
windDistinctCache
20+
```
21+
related:
22+
- /influxdb3/core/reference/cli/influxdb3/delete/distinct_cache/
23+
source: /shared/influxdb3-admin/distinct-value-cache/delete.md
24+
---
25+
26+
<!-- The content for this page is located at
27+
// SOURCE content/shared/influxdb3-admin/distinct-value-cache/delete.md -->

0 commit comments

Comments
 (0)