Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

aws-kafka: add page #11696

Merged
merged 27 commits into from
Dec 14, 2023
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
407023d
I have added gcloud-components_update.
giladAlboher Dec 6, 2023
0c55584
Merge branch 'tldr-pages:main' into main
giladAlboher Dec 7, 2023
c2a7d33
deleted pages/common/gcloud-components_update: empty page
giladAlboher Dec 7, 2023
834c0ac
aws-kafka: new pages
giladAlboher Dec 7, 2023
3cb6f3b
Merge branch 'main' into aws-kafka
giladAlboher Dec 7, 2023
7e20bb3
Update pages/common/aws-kafka.md
giladAlboher Dec 11, 2023
14de6b2
Update pages/common/aws-kafka.md
giladAlboher Dec 11, 2023
b20ab56
Update pages/common/aws-kafka.md
giladAlboher Dec 11, 2023
05495a7
Update pages/common/aws-kafka.md
giladAlboher Dec 11, 2023
eecfb89
Update pages/common/aws-kafka.md
giladAlboher Dec 11, 2023
339b3e8
Update pages/common/aws-kafka.md
giladAlboher Dec 11, 2023
ac81a2b
Merge branch 'main' into aws-kafka
giladAlboher Dec 11, 2023
39f81f9
Merge branch 'main' into aws-kafka
giladAlboher Dec 11, 2023
628f206
Merge branch 'main' into aws-kafka
giladAlboher Dec 12, 2023
a30f4ab
Update pages/common/aws-kafka.md
giladAlboher Dec 13, 2023
0f26066
Update pages/common/aws-kafka.md
giladAlboher Dec 13, 2023
49f620d
Update pages/common/aws-kafka.md
giladAlboher Dec 13, 2023
ea5f1f9
Update pages/common/aws-kafka.md
giladAlboher Dec 13, 2023
0c6e2fd
Update pages/common/aws-kafka.md
giladAlboher Dec 13, 2023
666a2a5
Update pages/common/aws-kafka.md
giladAlboher Dec 13, 2023
1878e50
Update pages/common/aws-kafka.md
giladAlboher Dec 13, 2023
3935636
Update pages/common/aws-kafka.md
giladAlboher Dec 13, 2023
4cb4962
Update pages/common/aws-kafka.md
giladAlboher Dec 13, 2023
0203c09
Update pages/common/aws-kafka.md
giladAlboher Dec 13, 2023
9e092f8
Merge branch 'main' into aws-kafka
giladAlboher Dec 13, 2023
023ee43
Update pages/common/aws-kafka.md
giladAlboher Dec 13, 2023
28f59f6
Merge branch 'main' into aws-kafka
giladAlboher Dec 14, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions pages/common/aws-kafka.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# aws kafka

> Manage an Amazon MSK (Managed Streaming for Apache Kafka) cluster.
> See also: `aws`.
> More information: <https://docs.aws.amazon.com/cli/latest/reference/kafka/index.html>.

- Create a new MSK cluster:

`aws kafka create-cluster --cluster-name {{cluster_name}} --broker-node-group-info instanceType={{instance_type}},clientSubnets={{subnet_id1 subnet_id2 ...}} --kafka-version {{version}} --number-of-broker-nodes {{number}}`

- Describe a MSK cluster:

`aws kafka describe-cluster --cluster-arn {{cluster_arn}}`

- List all MSK clusters in the current region:

`aws kafka list-clusters`

- Create a new MSK configuration:

`aws kafka create-configuration --name {{configuration_name}} --server-properties file://{{path/to/configuration_file.txt}}`

- Describe a MSK configuration:

`aws kafka describe-configuration --arn {{configuration_arn}}`

- List all MSK configurations in the current region:

`aws kafka list-configurations`

- Update the MSK cluster configuration:

`aws kafka update-cluster-configuration --cluster-arn {{cluster_arn}} --configuration-info arn={{configuration_arn}},revision={{configuration_revision}}`

- Delete the MSK cluster:

`aws kafka delete-cluster --cluster-arn {{cluster_arn}}`