diff --git a/docs/docs/core/flow_methods.mdx b/docs/docs/core/flow_methods.mdx index 356821857..c90986898 100644 --- a/docs/docs/core/flow_methods.mdx +++ b/docs/docs/core/flow_methods.mdx @@ -210,7 +210,7 @@ A data source may enable one or multiple *change capture mechanisms*: * Configured with a [refresh interval](flow_def#refresh-interval), which is generally applicable to all data sources. * Specific data sources also provide their specific change capture mechanisms. - For example, [`Postgres` source](../ops/sources/#postgres) listens to PostgreSQL's change notifications, [`AmazonS3` source](../ops/sources/#amazons3) watches S3 bucket's change events, and [`GoogleDrive` source](../ops/sources#googledrive) allows polling recent modified files. + For example, [`Postgres` source](../sources/#postgres) listens to PostgreSQL's change notifications, [`AmazonS3` source](../sources/#amazons3) watches S3 bucket's change events, and [`GoogleDrive` source](../sources#googledrive) allows polling recent modified files. See documentations for specific data sources. Change capture mechanisms enable CocoIndex to continuously capture changes from the source data and update the target data accordingly, under live update mode. diff --git a/docs/docs/sources/index.md b/docs/docs/sources/index.md index bce063e93..ce21a19ef 100644 --- a/docs/docs/sources/index.md +++ b/docs/docs/sources/index.md @@ -262,7 +262,7 @@ The spec takes the following fields: :::info Since it only retrieves metadata for recent modified files (up to the previous poll) during polling, - it's typically cheaper than a full refresh by setting the [refresh interval](../core/flow_def#refresh-interval) especially when the folder contains a large number of files. + it's typically cheaper than a full refresh by setting the [refresh interval](/docs/core/flow_def#refresh-interval) especially when the folder contains a large number of files. So you can usually set it with a smaller value compared to the `refresh_interval`. On the other hand, this only detects changes for files that still exist.