kafka.Topic
Explore with Pulumi AI
A resource for managing Kafka topics. Increases partition count without destroying the topic.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as kafka from "@pulumi/kafka";
const logs = new kafka.Topic("logs", {
name: "systemd_logs",
replicationFactor: 2,
partitions: 100,
config: {
"segment.ms": "20000",
"cleanup.policy": "compact",
},
});
import pulumi
import pulumi_kafka as kafka
logs = kafka.Topic("logs",
name="systemd_logs",
replication_factor=2,
partitions=100,
config={
"segment.ms": "20000",
"cleanup.policy": "compact",
})
package main
import (
"github.com/pulumi/pulumi-kafka/sdk/v3/go/kafka"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := kafka.NewTopic(ctx, "logs", &kafka.TopicArgs{
Name: pulumi.String("systemd_logs"),
ReplicationFactor: pulumi.Int(2),
Partitions: pulumi.Int(100),
Config: pulumi.StringMap{
"segment.ms": pulumi.String("20000"),
"cleanup.policy": pulumi.String("compact"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Kafka = Pulumi.Kafka;
return await Deployment.RunAsync(() =>
{
var logs = new Kafka.Topic("logs", new()
{
Name = "systemd_logs",
ReplicationFactor = 2,
Partitions = 100,
Config =
{
{ "segment.ms", "20000" },
{ "cleanup.policy", "compact" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.kafka.Topic;
import com.pulumi.kafka.TopicArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var logs = new Topic("logs", TopicArgs.builder()
.name("systemd_logs")
.replicationFactor(2)
.partitions(100)
.config(Map.ofEntries(
Map.entry("segment.ms", "20000"),
Map.entry("cleanup.policy", "compact")
))
.build());
}
}
resources:
logs:
type: kafka:Topic
properties:
name: systemd_logs
replicationFactor: 2
partitions: 100
config:
segment.ms: '20000'
cleanup.policy: compact
Create Topic Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Topic(name: string, args: TopicArgs, opts?: CustomResourceOptions);
@overload
def Topic(resource_name: str,
args: TopicArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Topic(resource_name: str,
opts: Optional[ResourceOptions] = None,
partitions: Optional[int] = None,
replication_factor: Optional[int] = None,
config: Optional[Mapping[str, str]] = None,
name: Optional[str] = None)
func NewTopic(ctx *Context, name string, args TopicArgs, opts ...ResourceOption) (*Topic, error)
public Topic(string name, TopicArgs args, CustomResourceOptions? opts = null)
type: kafka:Topic
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args TopicArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args TopicArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args TopicArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TopicArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TopicArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var topicResource = new Kafka.Topic("topicResource", new()
{
Partitions = 0,
ReplicationFactor = 0,
Config =
{
{ "string", "string" },
},
Name = "string",
});
example, err := kafka.NewTopic(ctx, "topicResource", &kafka.TopicArgs{
Partitions: pulumi.Int(0),
ReplicationFactor: pulumi.Int(0),
Config: pulumi.StringMap{
"string": pulumi.String("string"),
},
Name: pulumi.String("string"),
})
var topicResource = new Topic("topicResource", TopicArgs.builder()
.partitions(0)
.replicationFactor(0)
.config(Map.of("string", "string"))
.name("string")
.build());
topic_resource = kafka.Topic("topicResource",
partitions=0,
replication_factor=0,
config={
"string": "string",
},
name="string")
const topicResource = new kafka.Topic("topicResource", {
partitions: 0,
replicationFactor: 0,
config: {
string: "string",
},
name: "string",
});
type: kafka:Topic
properties:
config:
string: string
name: string
partitions: 0
replicationFactor: 0
Topic Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Topic resource accepts the following input properties:
- Partitions int
- The number of partitions the topic should have.
- Replication
Factor int - The number of replicas the topic should have.
- Config Dictionary<string, string>
- A map of string k/v attributes.
- Name string
- The name of the topic.
- Partitions int
- The number of partitions the topic should have.
- Replication
Factor int - The number of replicas the topic should have.
- Config map[string]string
- A map of string k/v attributes.
- Name string
- The name of the topic.
- partitions Integer
- The number of partitions the topic should have.
- replication
Factor Integer - The number of replicas the topic should have.
- config Map<String,String>
- A map of string k/v attributes.
- name String
- The name of the topic.
- partitions number
- The number of partitions the topic should have.
- replication
Factor number - The number of replicas the topic should have.
- config {[key: string]: string}
- A map of string k/v attributes.
- name string
- The name of the topic.
- partitions int
- The number of partitions the topic should have.
- replication_
factor int - The number of replicas the topic should have.
- config Mapping[str, str]
- A map of string k/v attributes.
- name str
- The name of the topic.
- partitions Number
- The number of partitions the topic should have.
- replication
Factor Number - The number of replicas the topic should have.
- config Map<String>
- A map of string k/v attributes.
- name String
- The name of the topic.
Outputs
All input properties are implicitly available as output properties. Additionally, the Topic resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Topic Resource
Get an existing Topic resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: TopicState, opts?: CustomResourceOptions): Topic
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
config: Optional[Mapping[str, str]] = None,
name: Optional[str] = None,
partitions: Optional[int] = None,
replication_factor: Optional[int] = None) -> Topic
func GetTopic(ctx *Context, name string, id IDInput, state *TopicState, opts ...ResourceOption) (*Topic, error)
public static Topic Get(string name, Input<string> id, TopicState? state, CustomResourceOptions? opts = null)
public static Topic get(String name, Output<String> id, TopicState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Config Dictionary<string, string>
- A map of string k/v attributes.
- Name string
- The name of the topic.
- Partitions int
- The number of partitions the topic should have.
- Replication
Factor int - The number of replicas the topic should have.
- Config map[string]string
- A map of string k/v attributes.
- Name string
- The name of the topic.
- Partitions int
- The number of partitions the topic should have.
- Replication
Factor int - The number of replicas the topic should have.
- config Map<String,String>
- A map of string k/v attributes.
- name String
- The name of the topic.
- partitions Integer
- The number of partitions the topic should have.
- replication
Factor Integer - The number of replicas the topic should have.
- config {[key: string]: string}
- A map of string k/v attributes.
- name string
- The name of the topic.
- partitions number
- The number of partitions the topic should have.
- replication
Factor number - The number of replicas the topic should have.
- config Mapping[str, str]
- A map of string k/v attributes.
- name str
- The name of the topic.
- partitions int
- The number of partitions the topic should have.
- replication_
factor int - The number of replicas the topic should have.
- config Map<String>
- A map of string k/v attributes.
- name String
- The name of the topic.
- partitions Number
- The number of partitions the topic should have.
- replication
Factor Number - The number of replicas the topic should have.
Import
Topics can be imported using their ARN, e.g.
$ pulumi import kafka:index/topic:Topic logs systemd_logs
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Kafka pulumi/pulumi-kafka
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
kafka
Terraform Provider.