Github
Github source connector
Description
The Github source connector reads data from the GitHub REST API. It is built on the HTTP source connector, and automatically adds the Authorization: Bearer <access_token> request header.
Key features
Source Options
| name | type | required | default value |
|---|---|---|---|
| url | String | Yes | - |
| access_token | String | Yes | - |
| method | String | No | GET |
| headers | Map | No | - |
| params | Map | No | - |
| body | String | No | - |
| format | String | No | text |
| schema | Config | No | - |
| schema.fields | Config | No | - |
| json_field | Config | No | - |
| content_field | String | No | - |
| pageing | Config | No | - |
| page_type | String | No | PageNumber |
| cursor_field | String | No | - |
| cursor_response_field | String | No | - |
| poll_interval_millis | int | No | - |
| retry | int | No | - |
| retry_backoff_multiplier_ms | int | No | 100 |
| retry_backoff_max_ms | int | No | 10000 |
| enable_multi_lines | boolean | No | false |
| keep_params_as_form | boolean | No | false |
| keep_page_param_as_http_param | boolean | No | false |
| batch_size | int | No | 100 |
| start_page_number | long | No | 1 |
| total_page_size | long | No | 0 |
| use_placeholder_replacement | boolean | No | false |
| connect_timeout_ms | int | No | 12000 |
| socket_timeout_ms | int | No | 60000 |
| json_filed_missed_return_null | boolean | No | false |
| common-options | config | No | - |
url [String]
GitHub REST API URL, for example https://api.github.com/orgs/apache/repos.
access_token [String]
GitHub personal access token. The connector sends it as a Bearer token in the HTTP Authorization header.
method [String]
HTTP request method. The common GitHub read scenario uses GET.
headers [Map]
Extra HTTP headers. Do not put Authorization here unless you intentionally want to override the header generated from access_token.
params [Map]
HTTP query parameters, such as per_page, page, since, or other GitHub API parameters.
body [String]
HTTP request body. This is only useful for API endpoints that accept a request body.
format [String]
Response format. Supports json and text. Use json with schema when you want SeaTunnel rows with named fields.
schema [Config]
Defines the output row structure when format = "json". For details, see Schema Feature.
json_field [Config]
Maps output fields to JSONPath expressions. Use it with schema when the required values are nested in the response.
content_field [String]
JSONPath expression used to select a JSON fragment before schema parsing, for example $.items[*].
pageing [Config]
Pagination settings inherited from the HTTP connector. Keep the option name pageing in job configs. Configure page_type = "Cursor" for cursor-based GitHub pagination when needed.
page_type [String]
Pagination type. Supported values are PageNumber (default) and Cursor. Use Cursor for endpoints that return a next cursor in the response.
cursor_field [String]
The request parameter name that carries the cursor value. Used together with page_type = "Cursor".
cursor_response_field [String]
The JSONPath of the cursor in the response body. Used together with page_type = "Cursor".
poll_interval_millis [int]
Request interval in milliseconds for streaming jobs. In batch jobs the connector reads once and finishes.
retry [int]
Maximum retry count when an HTTP request fails with IOException.
retry_backoff_multiplier_ms [int]
Retry backoff multiplier in milliseconds.
retry_backoff_max_ms [int]
Maximum retry backoff in milliseconds.
enable_multi_lines [boolean]
When true, multiple JSON objects separated by newlines in the response body are treated as separate records.
keep_params_as_form [boolean]
When true, request parameters are sent as form-encoded body parameters instead of URL query parameters.
keep_page_param_as_http_param [boolean]
When true, the page parameter remains in the request URL when paginating instead of being replaced inside the body.
batch_size [int]
The number of records returned per page request when the total number of pages is unknown.
start_page_number [long]
Which page number to start synchronizing from.
total_page_size [long]
Total page size to read. 0 means use batch_size until the API stops returning new pages.
use_placeholder_replacement [boolean]
When true, use ${field} placeholder replacement for headers, parameters and body values; otherwise use key-based replacement.
connect_timeout_ms [int]
HTTP connection timeout in milliseconds. Default 12000ms.
socket_timeout_ms [int]
HTTP socket timeout in milliseconds. Default 60000ms.
json_filed_missed_return_null [boolean]
When true, missing JSON fields return null; otherwise a missing field causes an error.
common options
Source plugin common parameters. See Source Common Options.
Usage Notes
access_tokenis sensitive. Avoid hardcoding real tokens in shared job files. Use SeaTunnel variable substitution or your deployment secret mechanism.- The connector always adds an
Authorization: Bearer <access_token>header fromaccess_token. Put other custom headers inheaders. - Set
format = "json"and defineschemawhen you want typed SeaTunnel rows. - Use
content_fieldwhen the GitHub response wraps records in a nested array such as$.items[*]. - For traditional page-number pagination, keep
page_type = "PageNumber"and useparamswithpage/per_page. - For cursor-based endpoints (such as the GitHub Events API), set
page_type = "Cursor"and configurecursor_field/cursor_response_field.
Task Examples
Read Repositories From A GitHub Organization
env {
parallelism = 1
job.mode = "BATCH"
}
source {
Github {
url = "https://api.github.com/orgs/apache/repos"
access_token = "ghp_xxxxxxxxxxxx"
method = "GET"
format = "json"
schema = {
fields {
id = int
name = string
description = string
html_url = string
stargazers_count = int
forks = int
}
}
}
}
sink {
Console {
}
}
Read Paged GitHub API Results
env {
parallelism = 1
job.mode = "BATCH"
}
source {
Github {
url = "https://api.github.com/orgs/apache/repos"
access_token = "ghp_xxxxxxxxxxxx"
method = "GET"
params = {
per_page = "100"
page = "${page}"
}
pageing = {
page_field = "page"
total_page_size = 5
start_page_number = 1
use_placeholder_replacement = true
}
format = "json"
schema = {
fields {
id = int
name = string
html_url = string
}
}
}
}
Stream GitHub Events
env {
parallelism = 1
job.mode = "STREAMING"
checkpoint.interval = 30000
}
source {
Github {
url = "https://api.github.com/orgs/apache/events"
access_token = "ghp_xxxxxxxxxxxx"
method = "GET"
format = "json"
poll_interval_millis = 60000
schema = {
fields {
id = string
type = string
created_at = string
}
}
}
}
Changelog
Change Log
| Change | Commit | Version |
|---|---|---|
| [improve] http connector options (#8969) | https://github.com/apache/seatunnel/commit/63ff9f910a | 2.3.10 |
| [Feature][Connector-V2] Support TableSourceFactory/TableSinkFactory on http (#5816) | https://github.com/apache/seatunnel/commit/6f49ec6ead | 2.3.4 |
| [Feature][Connector-V2][Github] Adding Github Source Connector (#4155) | https://github.com/apache/seatunnel/commit/49d9172b10 | 2.3.1 |