forked from influxdata/docs-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Document v3 custom partitions (influxdata#5309)
* WIP added storage engine diagram svg and info * WIP scaling strategy diagrams * WIP finished storage architecture doc * WIP added offset and time trim capbilities to current-date shortcode * WIP custom partitions * finalized define partitions doc * Apply suggestions from code review Co-authored-by: Jason Stirnaman <[email protected]> * updates to address PR feedback * various fixes * minor updates to storage architecture * ported custom partition content to clustered * fix incorrect menu key * influxctl 2.5.0 (influxdata#5339) * updated influxctl database create with partition info * added influxctl table create command * ported influxctl table create command to clustered * Apply suggestions from code review Co-authored-by: Jason Stirnaman <[email protected]> * fixed mentions of influx vs influxctl in v3 docs --------- Co-authored-by: Jason Stirnaman <[email protected]> * Add manage table task-based docs with partitioning info (influxdata#5340) * add manage table task-based docs with partitioning info * Apply suggestions from code review Co-authored-by: Jason Stirnaman <[email protected]> --------- Co-authored-by: Jason Stirnaman <[email protected]> * influxctl 2.5.0 release notes (influxdata#5343) * influxctl 2.5.0 release notes * Apply suggestions from code review Co-authored-by: Joshua Powers <[email protected]> --------- Co-authored-by: Joshua Powers <[email protected]> --------- Co-authored-by: Jason Stirnaman <[email protected]> Co-authored-by: Joshua Powers <[email protected]>
- Loading branch information
1 parent
1fa9432
commit 9e4034d
Showing
46 changed files
with
3,019 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
div { | ||
&.columns-wrapper { | ||
container-type: inline-size; | ||
container-name: columns; | ||
} | ||
&.columns-2 {columns: 2;} | ||
&.columns-3 {columns: 3;} | ||
&.columns-4 {columns: 4;} | ||
|
||
&.columns-2, | ||
&.columns-3, | ||
&.columns-4 { | ||
margin: 1.5rem 0 2.5rem; | ||
|
||
> *:first-child {margin-top: 0} | ||
} | ||
} | ||
|
||
///////////////////////////////// MEDIA QUERIES //////////////////////////////// | ||
|
||
@container columns (max-width: 780px) { | ||
div { | ||
&.columns-4 {columns: 3;} | ||
} | ||
} | ||
@container columns (max-width: 550px) { | ||
div { | ||
&.columns-3, | ||
&.columns-4 {columns: 2;} | ||
} | ||
} | ||
@container columns (max-width: 350px) { | ||
div { | ||
&.columns-2, | ||
&.columns-3, | ||
&.columns-4 {columns: 1;} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
em, span, strong { | ||
&.op90 {opacity: .9;} | ||
&.op85 {opacity: .85;} | ||
&.op80 {opacity: .8;} | ||
&.op75 {opacity: .75;} | ||
&.op70 {opacity: .7;} | ||
&.op65 {opacity: .65;} | ||
&.op60 {opacity: .6;} | ||
&.op55 {opacity: .55;} | ||
&.op50 {opacity: .5;} | ||
&.op45 {opacity: .45;} | ||
&.op40 {opacity: .4;} | ||
&.op35 {opacity: .35;} | ||
&.op30 {opacity: .3;} | ||
&.op25 {opacity: .25;} | ||
&.op20 {opacity: .2;} | ||
&.op15 {opacity: .15;} | ||
&.op10 {opacity: .1;} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.