Vultr Managed Apache Kafka® allows customers to add and edit various settings to optimize their Kafka database. Users can easily modify parameters such as compression_type, auto_create_topics_enable, and many others to tailor the configuration to their specific needs. This intuitive interface ensures customers have full control over their Kafka environment, enabling them to enhance performance and adjust functionalities as required for their data streaming applications.
Follow this guide to manage advanced configurations for Vultr Managed Apache Kafka® using the Vultr Customer Portal.
Navigate to Products and select Databases.
Select the target database.
Navigate to Settings, and select Advanced Configurations.
Click Add Configuration Option.
select a Parameter, provide any additional value, and click Submit.
Edit the configuration parameter value by clicking Edit.
List all the databases by sending a GET
request to the List Managed Databases endpoint and note the target database's ID.
$ curl "https://api.vultr.com/v2/databases" \
-X GET \
-H "Authorization: Bearer ${VULTR_API_KEY}"
List all available advanced options by sending a GET
request to the List Advanced Options endpoint
$ curl "https://api.vultr.com/v2/databases/{database-id}/advanced-options" \
-X GET \
-H "Authorization: Bearer ${VULTR_API_KEY}"
Enable advanced options by sending a PUT
request to the Update Advanced Options endpoint
$ curl "https://api.vultr.com/v2/databases/{database-id}/advanced-options" \
-X PUT \
-H "Authorization: Bearer ${VULTR_API_KEY}" \
-H "Content-Type: application/json" \
--data '{
"compression_type" : string,
}'
Visit the Advanced Options page to understand all available advanced options.
List all database instances and note the database ID. For instance, d6ac2a3c-92ea-43ef-8185-71a23e58ad8c
.
$ vultr-cli database list --summarize
List all the advanced options enabled for the target database.
$ vultr-cli database advanced-option list <database-id>
Enable the advanced options for the target database.
$ vultr-cli database advanced-option update <database-id> --compression-type <string>
Run vultr-cli database advanced-option update --help
to view and understand all options for Vultr Managed Apache Kafka®.
No comments yet.