airbyte_cdk.sources.concurrent_source
The concurrent source model replaces the legacy Source model.
The concurrent source model is a new way to build sources in the Airbyte CDK. It is designed to be more ergonomic and performant than the legacy Source model.
To implement a source using the concurrent source model, check out the submodules in this package.
1# Copyright (c) 2023 Airbyte, Inc., all rights reserved. 2"""The concurrent source model replaces the legacy Source model. 3 4The concurrent source model is a new way to build sources in the Airbyte CDK. It is designed to 5be more ergonomic and performant than the legacy Source model. 6 7To implement a source using the concurrent source model, check out the submodules in this package. 8"""