Back to source plugin

Export from Jira to Kafka

CloudQuery is an open-source data integration platform that allows you to export data from any source to any destination.

The CloudQuery Jira plugin allows you to sync data from Jira to any destination, including Kafka. It takes only minutes to get started.

Jira
jira
Official
Premium

Jira

The CloudQuery Jira plugin extracts Jira information and loads it into any supported CloudQuery destination

Publisher

cloudquery

Latest version

v2.2.3

Type

Source

Platforms
Date Published

Kafka
kafka
Official

Kafka

This destination plugin lets you sync data from a CloudQuery source to Kafka in various formats such as CSV, JSON. Each table will be pushed to a separate topic

Publisher

cloudquery

Repositorygithub.com
Latest version

v5.1.1

Type

Destination

Platforms
Date Published

MacOS Setup

Step 1. Install CloudQuery

brew install cloudquery/tap/cloudquery

Step 2. Log in to CloudQuery CLI

cloudquery login

Step 3. Configure Jira source plugin

You can find more information about the configuration in the plugin documentation

kind: source
spec:
  name: "jira"
  path: "cloudquery/jira"
  registry: cloudquery
  version: "v2.2.3"
  destinations: ["v5.1.1"]
  tables: ["*"]
  # Learn more about the configuration options at https://cql.ink/jira_source
  spec:
    auth_method: api_key
    # Note that [email protected] here is the email address for the Atlassian account you're using to create the token
    username: "[email protected]"
    api_key: ${JIRA_API_KEY}
    base_url: "https://mycompany.atlassian.net"
    # Optional table options
    table_options:
      jira_issues:
        jql: 'status = "In Progress"'

Step 4. Configure Kafka destination plugin

You can find more information about the configuration in the plugin documentation

kind: destination
spec:
  name: "kafka"
  path: "cloudquery/kafka"
  registry: "cloudquery"
  version: "v5.1.1"
  write_mode: "append"
  spec:
    # required - list of brokers to connect to
    brokers: ["<broker-host>:<broker-port>"]
    # optional - if connecting via SASL/PLAIN, the username and password to use. If not set, no authentication will be used.
    sasl_username: "${KAFKA_SASL_USERNAME}"
    sasl_password: "${KAFKA_SASL_PASSWORD}"
    format: "json" # options: parquet, json, csv
    format_spec:
      # CSV specific parameters:
      # delimiter: ","
      # skip_header: false
      # Parquet specific parameters:
      # version: "v2Latest"
      # root_repetition: "repeated"

    # Optional parameters
    # compression: "" # options: gzip
    # verbose: false
    # batch_size: 1000
    # topic_details:
      # num_partitions: 1
      # replication_factor: 1

Step 5. Run Sync

cloudquery sync jira.yml kafka.yml