can multiple streams for a single connection be sy...
# ask-ai
s
can multiple streams for a single connection be synced simultaneously?
k
Based on the knowledge sources provided, Airbyte currently does not support syncing multiple streams for a single connection simultaneously. According to the [Github issue about parallel reads](https://github.com/airbytehq/airbyte/issues/7749), this feature is not yet implemented but is being considered as a potential improvement. Additionally, a support QA document states: "Today API sources aren't parallel, there is a large test been done to implement the concurrency feature to the Stripe connector and later change other connectors. What order streams will be ingested the connector will use the
streams
output to process each stream and it isn't applied any order function to that list result." This confirms that currently, streams within a single connection are processed serially, not in parallel. The order in which streams are synced is based on the order they appear in the connector's output, without any specific ordering applied. It's worth noting that Airbyte is working on implementing this feature, starting with the Stripe connector as a test case. In the future, this capability may be extended to other connectors, allowing for parallel syncing of multiple streams within a single connection.