Hello, we are resynchronizing our Aramis Group dat...
# ask-community-for-troubleshooting
m
Hello, we are resynchronizing our Aramis Group data on airbyte by making a post on /api/v1/connections/sync giving the connection_id, but sometimes it's just 1 stream name that crashes and not all from the same connection, would it be possible to launch a sync only on a specific stream name?
✍️ 1
u
@[DEPRECATED] Marcos Marx turned this message into Zendesk ticket 2533 to ensure timely resolution!
s
I don't think there is any way of doing that as a user, but if this is a custom connector you could look into adding something like Salesforce's search filter
@Manitra Ranaivoharison I missed this last night, but of course you can also configure which streams you want to sync when setting up a new connection 🙂
m
Hello @Sunny Hashmi (Airbyte), thanx you for your help, my question is not when setting up a new connection but when I call Airbyte API to launch sync like that : curl --location --request POST 'http://@option.ip_adress@:@option.airbyte_port@/api/v1/connections/sync'......
s
Ah thanks for clarifying! In this case I think you have to set up a new connection with only those streams enabled, as that is the only time you can configure it in the UI as well. So with the API you can use
*POST* /v1/connections/create
and only specify the streams you want in the
syncCatalog
object: https://airbyte-public-api-docs.s3.us-east-2.amazonaws.com/rapidoc-api-docs.html#post-/v1/connections/create And then sync it the same way you were doing
It is possible to have multiple connections with the same source/destination, just name them in a way you will remember