shahar1 commented on code in PR #61277: URL: https://github.com/apache/airflow/pull/61277#discussion_r2749174105
########## providers/google/docs/operators/cloud/bigtable.rst: ########## @@ -31,7 +31,12 @@ BigtableCreateInstanceOperator ------------------------------ Use the :class:`~airflow.providers.google.cloud.operators.bigtable.BigtableCreateInstanceOperator` -to create a Google Cloud Bigtable instance. +to create a new Google Cloud Bigtable instance. Review Comment: ```suggestion to create a Google Cloud Bigtable instance. ``` ########## providers/google/docs/operators/cloud/bigtable.rst: ########## @@ -116,10 +135,16 @@ it will be retrieved from the Google Cloud connection used. Both variants are sh BigtableCreateTableOperator ----------------------------- -Creates a table in a Cloud Bigtable instance. +Use the :class:`~airflow.providers.google.cloud.operators.bigtable.BigtableCreateTableOperator` +to create a table in a Cloud Bigtable instance. + +This operator creates a new table with specified column families and optional +split keys. It is typically used when initializing schema or preparing storage +for application data. + If the table with given ID exists in the Cloud Bigtable instance, the operator compares the Column Families. -If the Column Families are identical operator succeeds. Otherwise, the operator fails with the appropriate +If the Column Families are identical, operator succeeds. Otherwise, the operator fails with the appropriate Review Comment: ```suggestion If the Column Families are identical, the operator succeeds. Otherwise, the operator fails with the appropriate ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
