Skip to content

Commit e545480

Browse files
authored
Merge pull request #352 from keboola/ujovlado-syrup-removal
Remove Queue v1 and Syrup
2 parents acf6ae2 + 9ee5bed commit e545480

File tree

5 files changed

+13
-11
lines changed

5 files changed

+13
-11
lines changed

cli/structure/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,6 @@ Example:
443443
"features": [
444444
"workspace-snowflake-dynamic-backend-size",
445445
"input-mapping-read-only-storage",
446-
"syrup-jobs-limit-10",
447446
"oauth-v3"
448447
],
449448
"defaultBranchId": 123

extend/component/tutorial/debugging.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,11 @@ When running the request with valid parameters, you should receive a response si
4747
{% highlight json %}
4848
{
4949
"id": "176883685",
50-
"url": "https://syrup.keboola.com/queue/job/176883685",
51-
"status": "waiting"
50+
"status": "waiting",
51+
"mode": "run",
52+
"tag": "1.2.3",
53+
"isFinished": false,
54+
"url": "https://queue.keboola.com/jobs/176883685"
5255
}
5356
{% endhighlight %}
5457

integrate/jobs/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,6 @@ A snippet of the response is below:
298298
"type": "extractor",
299299
"name": "Snowflake",
300300
"description": "Cloud-Native Elastic Data Warehouse Service",
301-
"uri": "https://syrup.keboola.com/docker/keboola.ex-db-snowflake",
302301
"documentationUrl": "https://github.com/keboola/db-extractor-snowflake/blob/master/README.md",
303302
"configurations": [
304303
{

integrate/storage/api/configurations.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ It will give you something like this:
7777
"emptyConfiguration": {},
7878
"uiOptions": {},
7979
"configurationDescription": null,
80-
"uri": "https://syrup.keboola.com/docker/keboola.ex-aws-s3",
8180
"documentationUrl": "https://help.keboola.com/extractors/other/aws-s3/"
8281
}
8382
],

overview/api/index.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,6 @@ Otherwise, you may encounter `Invalid Token` or unauthorized errors. The *author
6868
"id": "import",
6969
"url": "https://import.keboola.com"
7070
},
71-
{
72-
"id": "syrup",
73-
"url": "https://syrup.keboola.com"
74-
},
7571
{
7672
"id": "oauth",
7773
"url": "https://oauth.keboola.com"
@@ -120,7 +116,6 @@ The services listed above are:
120116

121117
- `docker-runner` --- [Legacy Service for Running Sync Actions](/extend/common-interface/actions/)
122118
- `import` --- [Storage Importer Service](/integrate/storage/api/importer/)
123-
- `syrup` --- [Service for Running Components](/extend/docker-runner/)
124119
- `oauth` --- [OAuth Manager Service](/extend/common-interface/oauth/)
125120
- `queue` --- [Service for Running Components](/extend/docker-runner/)
126121
- `billing` --- Service for Computing Credits
@@ -222,5 +217,12 @@ The collection contains code examples in various languages; the requests can als
222217
You can use the cURL CLI to create simple scripts for interacting with Keboola APIs. For example, to [run a job](/integrate/jobs/):
223218

224219
{% highlight shell %}
225-
curl --data "{\"config\": \"sampledatabase\"}" --header "X-StorageAPI-Token: YourStorageToken" https://syrup.keboola.com/keboola.ex-db-mysql/run
220+
curl --location --request POST 'https://queue.keboola.com/jobs' \
221+
--header 'X-StorageApi-Token: YourStorageToken' \
222+
--header 'Content-Type: application/json' \
223+
--data-raw '{
224+
"mode": "run",
225+
"component": "keboola.ex-db-mysql",
226+
"config": "sampledatabase"
227+
}'
226228
{% endhighlight %}

0 commit comments

Comments
 (0)