Jobs
A job is an arbitrary task with some stored state, pertaining to the governing workspace. Typically, jobs are orchestrated by pipeline operations, but can also represent tasks for the user to complete.
Objects
Job
| Path | JSON Type | Format | Description |
|---|---|---|---|
id |
string |
Version 4 UUID | The job ID |
created |
string |
ISO 8601 timestamp | The instant at which the job was created |
type |
string |
Job Type | The descriptor for the process undertaken by the job |
exitCode |
number |
Process exit status | The job exit code |
status |
string |
Job Status | The job status |
startTime |
string |
ISO 8601 timestamp | The instant at which the job run started |
endTime |
string |
ISO 8601 timestamp | The instant at which the job run ended |
{
"id" : "4313367f-6558-4bd8-aa16-042eb23bb4bb",
"created" : "2025-11-02T06:27:18.20133",
"type" : "PIPELINE_RUN",
"maxAttempts" : 0,
"attempt" : 0,
"commitId" : "ba7d77ac207e31e6e5f464f077df41506bab8c97",
"exitCode" : 0,
"status" : "COMPLETE",
"startTime" : "2025-11-02T06:27:41.039",
"endTime" : "2025-11-02T06:27:59.511",
"_embedded" : {
"pipeline" : {
"id" : "be65a272-5eb4-4b5c-ae8b-10aa8bc26944",
"status" : "READY",
"name" : "GitHub",
"timeout" : 0,
"maxRetries" : 0,
"created" : "2025-11-02T06:25:39.256748",
"lastModified" : "2025-11-02T06:25:39.25675",
"properties" : {
"tap-github._metadata" : "{\"commits\":{\"replication-method\":\"FULL_TABLE\",\"replication-key\":\"commit_timestamp\"}}",
"tap-github.repositories" : "[\"Matatika/matatika-ce\"]",
"tap-github._select" : "[\"commits.sha\"]",
"tap-github.auth_token" : "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"
},
"dataComponents" : [ "tap-github", "Warehouse" ],
"actions" : [ ],
"triggeredBy" : [ ]
},
"profile" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod",
"email" : "[email protected]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/jobs/4313367f-6558-4bd8-aa16-042eb23bb4bb"
},
"delete job" : {
"href" : "https://app.matatika.com/api/jobs/4313367f-6558-4bd8-aa16-042eb23bb4bb",
"type" : "DELETE"
},
"logs" : {
"href" : "https://app.matatika.com/api/jobs/4313367f-6558-4bd8-aa16-042eb23bb4bb/logs?sequence=0",
"type" : "GET"
}
}
}
Formats
Job Status
string
| Value | Description |
|---|---|
QUEUED |
The job is queued |
RUNNING |
The job is running |
COMPLETE |
The job finished with no errors |
ERROR |
The job finished with errors |
STOPPED |
The job timed out or was manually stopped |
Job Type
string
| Value | Description |
|---|---|
WORKSPACE_INIT |
A system task to create a Meltano project in a workspace repository - automatically run when a workspace is created |
PIPELINE_CONFIG |
A system task to configure the Meltano project and publish datasets with reference to a pipeline - automatically run when a pipeline is created, or a pipeline with a status of FAILED is updated |
PIPELINE_VERFIY |
A system task to isplay and test the configuration of a pipeline |
PIPELINE_RUN |
A system task to run a pipeline to load data into the workspace default datastore, or some other destination external to the platform - manually run by the user or automatically run on the defined schedule |
PROFILE_COLLABORATE |
A user task to send an invitation |
PROFILE_IMPORT |
A user task to create a pipeline |
Requests
- View all running or completed jobs for a workspace
- View all running or completed jobs for a pipeline
- View a job
- View the logs of a job
- Create a job from a pipeline
- Stop a job
- Delete a job
View all running or completed jobs for a workspace
GET
/api/workspaces/{workspace-id}/jobs
Returns all running or completed jobs for the workspace {workspace-id}.
Prerequisites
- Workspace
{workspace-id}must exist
Request
Example Snippets
cURL
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/workspaces/854ac9c9-b563-40c7-bed9-302cf808c7e0/jobs' -i -X GET
Python (requests)
import requests
url = "https://app.matatika.com/api/workspaces/854ac9c9-b563-40c7-bed9-302cf808c7e0/jobs"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Job collection with HAL links.
{
"_embedded" : {
"jobs" : [ {
"id" : "47e08dab-235f-4438-9e47-1e9dd818f43c",
"created" : "2025-11-02T06:25:07.948872",
"type" : "PROFILE_IMPORT",
"maxAttempts" : 0,
"attempt" : 0,
"status" : "QUEUED",
"_embedded" : {
"profile" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod",
"email" : "[email protected]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/jobs/47e08dab-235f-4438-9e47-1e9dd818f43c"
},
"delete job" : {
"href" : "https://app.matatika.com/api/jobs/47e08dab-235f-4438-9e47-1e9dd818f43c",
"type" : "DELETE"
},
"logs" : {
"href" : "https://app.matatika.com/api/jobs/47e08dab-235f-4438-9e47-1e9dd818f43c/logs?sequence=0",
"type" : "GET"
},
"withdraw job" : {
"href" : "https://app.matatika.com/api/jobs/47e08dab-235f-4438-9e47-1e9dd818f43c/stopped",
"type" : "PUT"
}
}
}, {
"id" : "56d3285f-857e-4896-8e38-99e7de2e3b43",
"created" : "2025-11-02T06:25:07.950462",
"type" : "PROFILE_COLLABORATE",
"maxAttempts" : 0,
"attempt" : 0,
"status" : "QUEUED",
"_embedded" : {
"profile" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod",
"email" : "[email protected]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/jobs/56d3285f-857e-4896-8e38-99e7de2e3b43"
},
"delete job" : {
"href" : "https://app.matatika.com/api/jobs/56d3285f-857e-4896-8e38-99e7de2e3b43",
"type" : "DELETE"
},
"logs" : {
"href" : "https://app.matatika.com/api/jobs/56d3285f-857e-4896-8e38-99e7de2e3b43/logs?sequence=0",
"type" : "GET"
},
"withdraw job" : {
"href" : "https://app.matatika.com/api/jobs/56d3285f-857e-4896-8e38-99e7de2e3b43/stopped",
"type" : "PUT"
}
}
}, {
"id" : "727fc203-e8ce-4a21-9d43-17e84c953568",
"created" : "2025-11-02T06:25:11.50322",
"type" : "WORKSPACE_INIT",
"maxAttempts" : 0,
"attempt" : 0,
"commitId" : "6b85b0b7cdc5f43fc57994e8c46bbe76cc53c85a",
"exitCode" : 0,
"status" : "COMPLETE",
"startTime" : "2025-11-02T06:25:32.814",
"endTime" : "2025-11-02T06:25:38.297",
"_embedded" : {
"profile" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod",
"email" : "[email protected]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/jobs/727fc203-e8ce-4a21-9d43-17e84c953568"
},
"delete job" : {
"href" : "https://app.matatika.com/api/jobs/727fc203-e8ce-4a21-9d43-17e84c953568",
"type" : "DELETE"
},
"logs" : {
"href" : "https://app.matatika.com/api/jobs/727fc203-e8ce-4a21-9d43-17e84c953568/logs?sequence=0",
"type" : "GET"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/workspaces/854ac9c9-b563-40c7-bed9-302cf808c7e0/jobs?page=0&size=20"
}
},
"page" : {
"size" : 20,
"totalElements" : 3,
"totalPages" : 1,
"number" : 0
}
}
View all running or completed jobs for a pipeline
GET
/api/pipelines/{pipeline-id}/jobs
Returns all running or completed jobs for the pipeline {pipeline-id}.
Prerequisites
- Pipeline
{pipeline-id}must exist
Request
Example Snippets
cURL
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/pipelines/be65a272-5eb4-4b5c-ae8b-10aa8bc26944/jobs' -i -X GET
Python (requests)
import requests
url = "https://app.matatika.com/api/pipelines/be65a272-5eb4-4b5c-ae8b-10aa8bc26944/jobs"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Job collection with HAL links.
{
"_embedded" : {
"jobs" : [ {
"id" : "4313367f-6558-4bd8-aa16-042eb23bb4bb",
"created" : "2025-11-02T06:27:18.20133",
"type" : "PIPELINE_RUN",
"maxAttempts" : 0,
"attempt" : 0,
"status" : "QUEUED",
"_embedded" : {
"pipeline" : {
"id" : "be65a272-5eb4-4b5c-ae8b-10aa8bc26944",
"status" : "READY",
"name" : "GitHub",
"timeout" : 0,
"maxRetries" : 0,
"created" : "2025-11-02T06:25:39.256748",
"lastModified" : "2025-11-02T06:25:39.25675",
"properties" : {
"tap-github._metadata" : "{\"commits\":{\"replication-method\":\"FULL_TABLE\",\"replication-key\":\"commit_timestamp\"}}",
"tap-github.repositories" : "[\"Matatika/matatika-ce\"]",
"tap-github._select" : "[\"commits.sha\"]",
"tap-github.auth_token" : "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"
},
"dataComponents" : [ "tap-github", "Warehouse" ],
"actions" : [ ],
"triggeredBy" : [ ]
},
"profile" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod",
"email" : "[email protected]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/jobs/4313367f-6558-4bd8-aa16-042eb23bb4bb"
},
"delete job" : {
"href" : "https://app.matatika.com/api/jobs/4313367f-6558-4bd8-aa16-042eb23bb4bb",
"type" : "DELETE"
},
"logs" : {
"href" : "https://app.matatika.com/api/jobs/4313367f-6558-4bd8-aa16-042eb23bb4bb/logs?sequence=0",
"type" : "GET"
},
"withdraw job" : {
"href" : "https://app.matatika.com/api/jobs/4313367f-6558-4bd8-aa16-042eb23bb4bb/stopped",
"type" : "PUT"
}
}
}, {
"id" : "16bf4a68-2fc0-4be2-b739-90455cc80245",
"created" : "2025-11-02T06:26:32.455212",
"type" : "PIPELINE_VERIFY",
"maxAttempts" : 0,
"attempt" : 0,
"commitId" : "ba7d77ac207e31e6e5f464f077df41506bab8c97",
"exitCode" : 0,
"status" : "COMPLETE",
"startTime" : "2025-11-02T06:26:52.567",
"endTime" : "2025-11-02T06:27:08.898",
"_embedded" : {
"pipeline" : {
"id" : "be65a272-5eb4-4b5c-ae8b-10aa8bc26944",
"status" : "READY",
"name" : "GitHub",
"timeout" : 0,
"maxRetries" : 0,
"created" : "2025-11-02T06:25:39.256748",
"lastModified" : "2025-11-02T06:25:39.25675",
"properties" : {
"tap-github._metadata" : "{\"commits\":{\"replication-method\":\"FULL_TABLE\",\"replication-key\":\"commit_timestamp\"}}",
"tap-github.repositories" : "[\"Matatika/matatika-ce\"]",
"tap-github._select" : "[\"commits.sha\"]",
"tap-github.auth_token" : "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"
},
"dataComponents" : [ "tap-github", "Warehouse" ],
"actions" : [ ],
"triggeredBy" : [ ]
},
"profile" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod",
"email" : "[email protected]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/jobs/16bf4a68-2fc0-4be2-b739-90455cc80245"
},
"delete job" : {
"href" : "https://app.matatika.com/api/jobs/16bf4a68-2fc0-4be2-b739-90455cc80245",
"type" : "DELETE"
},
"logs" : {
"href" : "https://app.matatika.com/api/jobs/16bf4a68-2fc0-4be2-b739-90455cc80245/logs?sequence=0",
"type" : "GET"
}
}
}, {
"id" : "0d24eaab-6f94-4721-a8de-26572509456b",
"created" : "2025-11-02T06:25:39.459139",
"type" : "WORKSPACE_CONFIG",
"maxAttempts" : 0,
"attempt" : 0,
"commitId" : "617d9abcd182f78742f2f17d03387bbc07add122",
"exitCode" : 0,
"status" : "COMPLETE",
"startTime" : "2025-11-02T06:26:00.899",
"endTime" : "2025-11-02T06:26:30.483",
"_embedded" : {
"pipeline" : {
"id" : "be65a272-5eb4-4b5c-ae8b-10aa8bc26944",
"status" : "READY",
"name" : "GitHub",
"timeout" : 0,
"maxRetries" : 0,
"created" : "2025-11-02T06:25:39.256748",
"lastModified" : "2025-11-02T06:25:39.25675",
"properties" : {
"tap-github._metadata" : "{\"commits\":{\"replication-method\":\"FULL_TABLE\",\"replication-key\":\"commit_timestamp\"}}",
"tap-github.repositories" : "[\"Matatika/matatika-ce\"]",
"tap-github._select" : "[\"commits.sha\"]",
"tap-github.auth_token" : "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"
},
"dataComponents" : [ "tap-github", "Warehouse" ],
"actions" : [ ],
"triggeredBy" : [ ]
},
"profile" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod",
"email" : "[email protected]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/jobs/0d24eaab-6f94-4721-a8de-26572509456b"
},
"delete job" : {
"href" : "https://app.matatika.com/api/jobs/0d24eaab-6f94-4721-a8de-26572509456b",
"type" : "DELETE"
},
"logs" : {
"href" : "https://app.matatika.com/api/jobs/0d24eaab-6f94-4721-a8de-26572509456b/logs?sequence=0",
"type" : "GET"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/pipelines/be65a272-5eb4-4b5c-ae8b-10aa8bc26944/jobs?page=0&size=20"
}
},
"page" : {
"size" : 20,
"totalElements" : 3,
"totalPages" : 1,
"number" : 0
}
}
View a job
GET
/api/jobs/{job-id}
Returns the job {job-id}.
Prerequisites
- Job
{job-id}must exist
Request
Example Snippets
cURL
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/jobs/4313367f-6558-4bd8-aa16-042eb23bb4bb' -i -X GET
Python (requests)
import requests
url = "https://app.matatika.com/api/jobs/4313367f-6558-4bd8-aa16-042eb23bb4bb"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
Job with HAL links.
{
"id" : "4313367f-6558-4bd8-aa16-042eb23bb4bb",
"created" : "2025-11-02T06:27:18.20133",
"type" : "PIPELINE_RUN",
"maxAttempts" : 0,
"attempt" : 0,
"commitId" : "ba7d77ac207e31e6e5f464f077df41506bab8c97",
"exitCode" : 0,
"status" : "COMPLETE",
"startTime" : "2025-11-02T06:27:41.039",
"endTime" : "2025-11-02T06:27:59.511",
"_embedded" : {
"pipeline" : {
"id" : "be65a272-5eb4-4b5c-ae8b-10aa8bc26944",
"status" : "READY",
"name" : "GitHub",
"timeout" : 0,
"maxRetries" : 0,
"created" : "2025-11-02T06:25:39.256748",
"lastModified" : "2025-11-02T06:25:39.25675",
"properties" : {
"tap-github._metadata" : "{\"commits\":{\"replication-method\":\"FULL_TABLE\",\"replication-key\":\"commit_timestamp\"}}",
"tap-github.repositories" : "[\"Matatika/matatika-ce\"]",
"tap-github._select" : "[\"commits.sha\"]",
"tap-github.auth_token" : "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"
},
"dataComponents" : [ "tap-github", "Warehouse" ],
"actions" : [ ],
"triggeredBy" : [ ]
},
"profile" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod",
"email" : "[email protected]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/jobs/4313367f-6558-4bd8-aa16-042eb23bb4bb"
},
"delete job" : {
"href" : "https://app.matatika.com/api/jobs/4313367f-6558-4bd8-aa16-042eb23bb4bb",
"type" : "DELETE"
},
"logs" : {
"href" : "https://app.matatika.com/api/jobs/4313367f-6558-4bd8-aa16-042eb23bb4bb/logs?sequence=0",
"type" : "GET"
}
}
}
View the logs of a job
GET
/api/jobs/{job-id}/logs?sequence={sequence}
Returns the logs of the job {job-id}.
Prerequisites
- Job
{job-id}must exist
Request
Query Parameters
| Query Parameter | Format | Default Value | Description |
|---|---|---|---|
sequence |
Unsigned integer | 0 |
The line number in the logs to read from |
Headers
Accept
| Media Type(s) | Description |
|---|---|
text/plain */* |
Sets the response content type format to plain text |
application/stream+json application/x-ndjson |
Sets the response content type format to NDJSON |
Example Snippets
cURL
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/jobs/4313367f-6558-4bd8-aa16-042eb23bb4bb/logs?sequence=0' -i -X GET \
-H 'Accept: application/x-ndjson'
Python (requests)
import requests
url = "https://app.matatika.com/api/jobs/4313367f-6558-4bd8-aa16-042eb23bb4bb/logs?sequence=0"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200: The job logs in the format specified by associated requestAcceptheader
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"INFO","message":"Executing RepositoryCloneTaskStage stage","sequence":1,"timestamp":"2025-11-02T06:27:41.868Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"git clone https://github.com/MatatikaBytes/Test-Workspace-2025-11-02T06-25-07-943357832--xumscsm --single-branch --branch main workspace","sequence":2,"timestamp":"2025-11-02T06:27:41.890Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"Cloning into 'workspace'...","sequence":3,"timestamp":"2025-11-02T06:27:41.892Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"INFO","message":"Exit code 0 from RepositoryCloneTaskStage stage","sequence":4,"timestamp":"2025-11-02T06:27:42.367Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"INFO","message":"Executing JobCommitIdTaskStage stage","sequence":5,"timestamp":"2025-11-02T06:27:42.376Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"git rev-parse HEAD","sequence":6,"timestamp":"2025-11-02T06:27:42.382Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"INFO","message":"ba7d77ac207e31e6e5f464f077df41506bab8c97","sequence":7,"timestamp":"2025-11-02T06:27:42.384Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"INFO","message":"Exit code 0 from JobCommitIdTaskStage stage","sequence":8,"timestamp":"2025-11-02T06:27:42.390Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"INFO","message":"Executing PipelineRunTaskStage stage","sequence":9,"timestamp":"2025-11-02T06:27:42.398Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"/tmp/shelltaskscripts5490552970977106642/ShellExecution_4313367f-6558-4bd8-aa16-042eb23bb4bb10462390838715053024.sh","sequence":10,"timestamp":"2025-11-02T06:27:42.748Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"#!/usr/bin/env bash","sequence":11,"timestamp":"2025-11-02T06:27:42.752Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"# run","sequence":12,"timestamp":"2025-11-02T06:27:42.753Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"meltano run --force tap-github target-postgres --state-id-suffix be65a272-5eb4-4b5c-ae8b-10aa8bc26944","sequence":13,"timestamp":"2025-11-02T06:27:42.753Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] Environment 'dev' is active","sequence":14,"timestamp":"2025-11-02T06:27:43.913Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] Installing extractor 'tap-github'","sequence":15,"timestamp":"2025-11-02T06:27:44.302Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[warning ] The uv backend is experimental","sequence":16,"timestamp":"2025-11-02T06:27:44.305Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] Installing loader 'target-postgres'","sequence":17,"timestamp":"2025-11-02T06:27:44.381Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] Installed extractor 'tap-github'","sequence":18,"timestamp":"2025-11-02T06:27:49.158Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] Installed loader 'target-postgres'","sequence":19,"timestamp":"2025-11-02T06:27:52.079Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] Installed 2/2 plugins","sequence":20,"timestamp":"2025-11-02T06:27:52.080Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[warning ] Force option is enabled, ignoring stale job check.","sequence":21,"timestamp":"2025-11-02T06:27:52.091Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[warning ] No state was found, complete import.","sequence":22,"timestamp":"2025-11-02T06:27:52.174Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,199 | WARNING | py.warnings | /tmp/shelltaskscripts5490552970977106642/.meltano/extractors/tap-github/venv/lib/python3.9/site-packages/singer_sdk/tap_base.py:524: SingerSDKDeprecationWarning: Passing a catalog file path is deprecated. Please pass the catalog as a dictionary or Catalog object instead. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":23,"timestamp":"2025-11-02T06:27:55.200Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] tap = cls( cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":24,"timestamp":"2025-11-02T06:27:55.202Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":25,"timestamp":"2025-11-02T06:27:55.203Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,219 | WARNING | tap-github.stargazers | The stream 'stargazers' might conflict with previous implementation. Looking for the older version? Use 'stargazers_rest'. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":26,"timestamp":"2025-11-02T06:27:55.220Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,219 | WARNING | tap-github.stargazers_rest | The stream 'stargazers_rest' is deprecated. Please use the Graphql version instead: 'stargazers'. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":27,"timestamp":"2025-11-02T06:27:55.227Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,221 | INFO | tap-github | Added 'anonymous_contributors' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":28,"timestamp":"2025-11-02T06:27:55.228Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,221 | INFO | tap-github | Added 'assignees' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":29,"timestamp":"2025-11-02T06:27:55.230Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,221 | INFO | tap-github | Added 'branches' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":30,"timestamp":"2025-11-02T06:27:55.231Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,221 | INFO | tap-github | Added 'collaborators' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":31,"timestamp":"2025-11-02T06:27:55.234Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,221 | INFO | tap-github | Added 'commit_comments' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":32,"timestamp":"2025-11-02T06:27:55.235Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,221 | INFO | tap-github | Added 'commits' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":33,"timestamp":"2025-11-02T06:27:55.237Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,222 | INFO | tap-github | Added 'commit_diffs' as child stream to 'commits' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":34,"timestamp":"2025-11-02T06:27:55.238Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,222 | INFO | tap-github | Added 'community_profile' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":35,"timestamp":"2025-11-02T06:27:55.239Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,222 | INFO | tap-github | Added 'contributors' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":36,"timestamp":"2025-11-02T06:27:55.243Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,222 | INFO | tap-github | Added 'dependencies' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":37,"timestamp":"2025-11-02T06:27:55.245Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,222 | INFO | tap-github | Added 'dependents' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":38,"timestamp":"2025-11-02T06:27:55.246Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,222 | INFO | tap-github | Added 'deployments' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":39,"timestamp":"2025-11-02T06:27:55.247Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,222 | INFO | tap-github | Added 'deployment_statuses' as child stream to 'deployments' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":40,"timestamp":"2025-11-02T06:27:55.249Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,222 | INFO | tap-github | Added 'events' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":41,"timestamp":"2025-11-02T06:27:55.250Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,222 | INFO | tap-github | Added 'issue_comments' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":42,"timestamp":"2025-11-02T06:27:55.251Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,222 | INFO | tap-github | Added 'issue_events' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":43,"timestamp":"2025-11-02T06:27:55.252Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,222 | INFO | tap-github | Added 'issues' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":44,"timestamp":"2025-11-02T06:27:55.260Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,222 | INFO | tap-github | Added 'labels' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":45,"timestamp":"2025-11-02T06:27:55.261Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,222 | INFO | tap-github | Added 'languages' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":46,"timestamp":"2025-11-02T06:27:55.261Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,223 | INFO | tap-github | Added 'milestones' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":47,"timestamp":"2025-11-02T06:27:55.262Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,223 | INFO | tap-github | Added 'pull_request_commits' as child stream to 'pull_requests' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":48,"timestamp":"2025-11-02T06:27:55.263Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,223 | INFO | tap-github | Added 'pull_request_commit_diffs' as child stream to 'pull_request_commits' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":49,"timestamp":"2025-11-02T06:27:55.272Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,223 | INFO | tap-github | Added 'pull_request_diffs' as child stream to 'pull_requests' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":50,"timestamp":"2025-11-02T06:27:55.273Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,223 | INFO | tap-github | Added 'pull_requests' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":51,"timestamp":"2025-11-02T06:27:55.274Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,223 | INFO | tap-github | Added 'readme_html' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":52,"timestamp":"2025-11-02T06:27:55.274Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,223 | INFO | tap-github | Added 'readme' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":53,"timestamp":"2025-11-02T06:27:55.275Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,223 | INFO | tap-github | Added 'releases' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":54,"timestamp":"2025-11-02T06:27:55.276Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,223 | INFO | tap-github | Added 'extra_metrics' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":55,"timestamp":"2025-11-02T06:27:55.277Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,223 | INFO | tap-github | Added 'review_comments' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":56,"timestamp":"2025-11-02T06:27:55.277Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,224 | INFO | tap-github | Added 'reviews' as child stream to 'pull_requests' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":57,"timestamp":"2025-11-02T06:27:55.278Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,224 | INFO | tap-github | Added 'stargazers' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":58,"timestamp":"2025-11-02T06:27:55.279Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,224 | INFO | tap-github | Added 'stargazers_rest' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":59,"timestamp":"2025-11-02T06:27:55.280Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,224 | INFO | tap-github | Added 'stats_contributors' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":60,"timestamp":"2025-11-02T06:27:55.281Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,224 | INFO | tap-github | Added 'tags' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":61,"timestamp":"2025-11-02T06:27:55.281Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,224 | INFO | tap-github | Added 'traffic_clones' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":62,"timestamp":"2025-11-02T06:27:55.282Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,224 | INFO | tap-github | Added 'traffic_pageviews' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":63,"timestamp":"2025-11-02T06:27:55.283Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,224 | INFO | tap-github | Added 'traffic_referral_paths' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":64,"timestamp":"2025-11-02T06:27:55.291Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,224 | INFO | tap-github | Added 'traffic_referrers' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":65,"timestamp":"2025-11-02T06:27:55.292Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,224 | INFO | tap-github | Added 'workflow_run_jobs' as child stream to 'workflow_runs' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":66,"timestamp":"2025-11-02T06:27:55.293Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,224 | INFO | tap-github | Added 'workflow_runs' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":67,"timestamp":"2025-11-02T06:27:55.294Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,224 | INFO | tap-github | Added 'workflows' as child stream to 'repositories' cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":68,"timestamp":"2025-11-02T06:27:55.295Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,232 | WARNING | tap-github | Stream descendent 'commits' is selected and its parent 'repositories' does not use inclusive replication keys. Forcing full table replication for 'repositories'. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":69,"timestamp":"2025-11-02T06:27:55.296Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,234 | INFO | tap-github | Skipping deselected stream 'anonymous_contributors'. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":70,"timestamp":"2025-11-02T06:27:55.297Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,234 | INFO | tap-github | Skipping deselected stream 'assignees'. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":71,"timestamp":"2025-11-02T06:27:55.298Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,234 | INFO | tap-github | Skipping deselected stream 'branches'. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":72,"timestamp":"2025-11-02T06:27:55.299Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,235 | INFO | tap-github | Skipping deselected stream 'collaborators'. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":73,"timestamp":"2025-11-02T06:27:55.303Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,235 | INFO | tap-github | Skipping deselected stream 'commit_comments'. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":74,"timestamp":"2025-11-02T06:27:55.305Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,235 | INFO | tap-github | Skipping deselected stream 'commit_diffs'. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":75,"timestamp":"2025-11-02T06:27:55.308Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,235 | INFO | tap-github | Skipping deselected stream 'community_profile'. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":76,"timestamp":"2025-11-02T06:27:55.309Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,235 | INFO | tap-github | Skipping deselected stream 'contributors'. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":77,"timestamp":"2025-11-02T06:27:55.311Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,235 | INFO | tap-github | Skipping deselected stream 'dependencies'. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":78,"timestamp":"2025-11-02T06:27:55.312Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,235 | INFO | tap-github | Skipping deselected stream 'dependents'. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":79,"timestamp":"2025-11-02T06:27:55.312Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,235 | INFO | tap-github | Skipping deselected stream 'deployment_statuses'. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":80,"timestamp":"2025-11-02T06:27:55.315Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,235 | INFO | tap-github | Skipping deselected stream 'deployments'. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":81,"timestamp":"2025-11-02T06:27:55.316Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,235 | INFO | tap-github | Skipping deselected stream 'events'. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":82,"timestamp":"2025-11-02T06:27:55.317Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,236 | INFO | tap-github | Skipping deselected stream 'extra_metrics'. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":83,"timestamp":"2025-11-02T06:27:55.318Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,236 | INFO | tap-github | Skipping deselected stream 'issue_comments'. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":84,"timestamp":"2025-11-02T06:27:55.320Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,236 | INFO | tap-github | Skipping deselected stream 'issue_events'. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":85,"timestamp":"2025-11-02T06:27:55.321Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,236 | INFO | tap-github | Skipping deselected stream 'issues'. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":86,"timestamp":"2025-11-02T06:27:55.322Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,236 | INFO | tap-github | Skipping deselected stream 'labels'. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":87,"timestamp":"2025-11-02T06:27:55.323Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,236 | INFO | tap-github | Skipping deselected stream 'languages'. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":88,"timestamp":"2025-11-02T06:27:55.324Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,236 | INFO | tap-github | Skipping deselected stream 'milestones'. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":89,"timestamp":"2025-11-02T06:27:55.325Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,236 | INFO | tap-github | Skipping deselected stream 'pull_request_commit_diffs'. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":90,"timestamp":"2025-11-02T06:27:55.326Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,236 | INFO | tap-github | Skipping deselected stream 'pull_request_commits'. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":91,"timestamp":"2025-11-02T06:27:55.326Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,236 | INFO | tap-github | Skipping deselected stream 'pull_request_diffs'. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":92,"timestamp":"2025-11-02T06:27:55.327Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,236 | INFO | tap-github | Skipping deselected stream 'pull_requests'. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":93,"timestamp":"2025-11-02T06:27:55.328Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,236 | INFO | tap-github | Skipping deselected stream 'readme'. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":94,"timestamp":"2025-11-02T06:27:55.328Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,237 | INFO | tap-github | Skipping deselected stream 'readme_html'. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":95,"timestamp":"2025-11-02T06:27:55.329Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,237 | INFO | tap-github | Skipping deselected stream 'releases'. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":96,"timestamp":"2025-11-02T06:27:55.330Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,237 | INFO | tap-github.repositories | Beginning full_table sync of 'repositories'... cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":97,"timestamp":"2025-11-02T06:27:55.331Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,237 | INFO | tap-github.repositories | Filtering repository list of 1 repositories cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":98,"timestamp":"2025-11-02T06:27:55.332Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,238 | WARNING | py.warnings | /tmp/shelltaskscripts5490552970977106642/.meltano/extractors/tap-github/venv/lib/python3.9/site-packages/singer_sdk/streams/rest.py:446: DeprecationWarning: `RESTStream.get_next_page_token` is deprecated and will not be used in a future version of the Meltano Singer SDK. Override `RESTStream.get_new_paginator` instead. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":99,"timestamp":"2025-11-02T06:27:55.332Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] paginator = self.get_new_paginator() cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":100,"timestamp":"2025-11-02T06:27:55.342Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":101,"timestamp":"2025-11-02T06:27:55.344Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,529 | INFO | tap-github.tempStream | Tap will run with 1 personal auth tokens and 0 app keys. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":102,"timestamp":"2025-11-02T06:27:55.530Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,852 | INFO | singer_sdk.metrics | METRIC: {\"type\": \"timer\", \"metric\": \"http_request_duration\", \"value\": 0.320745, \"tags\": {\"stream\": \"tempStream\", \"endpoint\": \"\", \"http_status_code\": 200, \"status\": \"succeeded\"}} cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":103,"timestamp":"2025-11-02T06:27:55.853Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,884 | INFO | singer_sdk.helpers.jsonpath | JSONPath $.data.rateLimit.cost match count: 1 cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":104,"timestamp":"2025-11-02T06:27:55.885Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,909 | INFO | singer_sdk.helpers.jsonpath | JSONPath $.data.[*] match count: 1 cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":105,"timestamp":"2025-11-02T06:27:55.910Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,910 | INFO | singer_sdk.metrics | METRIC: {\"type\": \"counter\", \"metric\": \"http_request_count\", \"value\": 1, \"tags\": {\"stream\": \"tempStream\", \"endpoint\": \"\", \"pid\": 394, \"context\": {}}} cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":106,"timestamp":"2025-11-02T06:27:55.911Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,910 | INFO | tap-github.repositories | Running the tap on 1 repositories cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":107,"timestamp":"2025-11-02T06:27:55.911Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:55,911 | INFO | tap-github.repositories | Running the tap on 1 repositories cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":108,"timestamp":"2025-11-02T06:27:55.912Z"}
{"jobId":"4313367f-6558-4bd8-aa16-042eb23bb4bb","level":"ERROR","message":"[info ] 2025-11-02 06:27:56,135 | INFO | tap-github.repositories | Tap will run with 1 personal auth tokens and 0 app keys. cmd_type=elb consumer=False job_name=dev:tap-github-to-target-postgres:be65a272-5eb4-4b5c-ae8b-10aa8bc26944 name=tap-github producer=True run_id=b78581ad-7ca3-4b4d-97c6-801708e80a2a stdio=stderr string_id=tap-github","sequence":109,"timestamp":"2025-11-02T06:27:56.136Z"}
204: No response body provided.
Create a job from a pipeline
POST
/api/pipelines/{pipeline-id}/jobs
Creates a new job from the pipeline {pipeline-id}.
Prerequisites
- Pipeline
{pipeline-id}must exist and not already be running
Request
Example Snippets
cURL
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/pipelines/be65a272-5eb4-4b5c-ae8b-10aa8bc26944/jobs' -i -X POST \
-H 'Content-Type: application/json'
Python (requests)
import requests
url = "https://app.matatika.com/api/pipelines/be65a272-5eb4-4b5c-ae8b-10aa8bc26944/jobs"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("POST", url, headers=headers)
print(response.text.encode('utf8'))
Response
201 Created
Job with HAL links.
{
"id" : "4313367f-6558-4bd8-aa16-042eb23bb4bb",
"created" : "2025-11-02T06:27:18.20133",
"type" : "PIPELINE_RUN",
"maxAttempts" : 0,
"attempt" : 0,
"status" : "QUEUED",
"_embedded" : {
"pipeline" : {
"id" : "be65a272-5eb4-4b5c-ae8b-10aa8bc26944",
"status" : "READY",
"name" : "GitHub",
"timeout" : 0,
"maxRetries" : 0,
"created" : "2025-11-02T06:25:39.256748",
"lastModified" : "2025-11-02T06:25:39.25675",
"properties" : {
"tap-github._metadata" : "{\"commits\":{\"replication-method\":\"FULL_TABLE\",\"replication-key\":\"commit_timestamp\"}}",
"tap-github.repositories" : "[\"Matatika/matatika-ce\"]",
"tap-github._select" : "[\"commits.sha\"]",
"tap-github.auth_token" : "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"
},
"dataComponents" : [ "tap-github", "Warehouse" ],
"actions" : [ ],
"triggeredBy" : [ ]
},
"profile" : {
"id" : "auth0|5eb0327cbfd7490bff55feeb",
"name" : "[email protected]",
"handle" : "@sit+prod",
"email" : "[email protected]"
}
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/jobs/4313367f-6558-4bd8-aa16-042eb23bb4bb"
},
"delete job" : {
"href" : "https://app.matatika.com/api/jobs/4313367f-6558-4bd8-aa16-042eb23bb4bb",
"type" : "DELETE"
},
"logs" : {
"href" : "https://app.matatika.com/api/jobs/4313367f-6558-4bd8-aa16-042eb23bb4bb/logs?sequence=0",
"type" : "GET"
},
"withdraw job" : {
"href" : "https://app.matatika.com/api/jobs/4313367f-6558-4bd8-aa16-042eb23bb4bb/stopped",
"type" : "PUT"
}
}
}
Stop a job
PUT
/api/jobs/{job-id}/stopped
Stops the execution of the job {job-id}.
Prerequisites
- Job
{job-id}must exist - Job
{job-id}must have statusRUNNING
Request
Example Snippets
cURL
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/jobs/26914421-e8ab-4d86-b473-9a5192c6cde1/stopped' -i -X PUT \
-H 'Content-Type: application/json'
Python (requests)
import requests
url = "https://app.matatika.com/api/jobs/26914421-e8ab-4d86-b473-9a5192c6cde1/stopped"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("PUT", url, headers=headers)
print(response.text.encode('utf8'))
Response
202 Accepted
Job stop acceptance message.
{
"message" : "Job stop requested"
}
Delete a job
DELETE
/api/jobs/{job-id}
Deletes and stops the execution of the job {job-id}.
Prerequisites
- Job
{job-id}must exist
Example Snippets
cURL
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/jobs/4313367f-6558-4bd8-aa16-042eb23bb4bb' -i -X DELETE
Python (requests)
import requests
url = "https://app.matatika.com/api/jobs/4313367f-6558-4bd8-aa16-042eb23bb4bb"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("DELETE", url, headers=headers)
print(response.text.encode('utf8'))
Response
204 No Content
No response body provided.