Back to Influxdb

Create

content/shared/influxdb-v2/reference/cli/influx/bucket/create.md

latest6.4 KB
Original Source

The influx bucket create command creates a bucket in InfluxDB.

Usage

sh
influx bucket create [flags]

Flags

FlagDescriptionInput type{{< cli/mapped >}}
-c--active-configCLI configuration to use for commandstring
--configs-pathPath to influx CLI configurations (default ~/.influxdbv2/configs)stringINFLUX_CONFIGS_PATH
-d--descriptionBucket descriptionstring
-h--helpHelp for the create command
--hide-headersHide table headers (default false)INFLUX_HIDE_HEADERS
--hostHTTP address of InfluxDB (default http://localhost:8086)stringINFLUX_HOST
--http-debugInspect communication with InfluxDB servers.string
--jsonOutput data as JSON (default false)INFLUX_OUTPUT_JSON
-n--nameBucket namestringINFLUX_BUCKET_NAME
-o--orgOrganization name (mutually exclusive with --org-id)stringINFLUX_ORG
--org-idOrganization ID (mutually exclusive with --org)stringINFLUX_ORG_ID
-r--retentionDuration bucket retains data (0 is infinite, default is 0)duration
--schema-typeBucket schema type (explicit, default implicit) (Cloud only). For more information, see Manage bucket schema.string
--shard-group-durationBucket shard group duration (OSS only)string
--skip-verifySkip TLS certificate verificationINFLUX_SKIP_VERIFY
-t--tokenAPI tokenstringINFLUX_TOKEN

{{% note %}}

Retention periods

The minimum retention period is one hour. Valid --retention units:

  • nanoseconds (ns)
  • microseconds (us or µs)
  • milliseconds (ms)
  • seconds (s)
  • minutes (m)
  • hours (h)
  • days (d)
  • weeks (w) {{% /note %}}

Examples

{{< cli/influx-creds-note >}}

Create a bucket with infinite data retention
sh
influx bucket create --name example-bucket
Create a bucket that retains data for 30 days
sh
influx bucket create \
  --name example-bucket \
  --retention 30d
Create a bucket with a description
sh
influx bucket create \
  --name example-bucket \
  --description "Example bucket description"
Create a bucket with a custom shard group duration

Custom shard group durations are only supported in InfluxDB OSS. The shard group duration must be shorter than the bucket's retention period. For more information, see InfluxDB shards and shard groups.

sh
influx bucket create \
  --name example-bucket \
  --retention 30d \
  --shard-group-duration 2d
Create a bucket with an explicit schema

[!Important] Explicit bucket schemas are only supported in InfluxDB Cloud. For more information, see Manage bucket schema.

sh
{{< get-shared-text "bucket-schema/bucket-schema-type.sh" >}}