diff --git a/metadata-ingestion/docs/sources/powerbi/powerbi-report-server.md b/metadata-ingestion/docs/sources/powerbi/powerbi-report-server_pre.md similarity index 100% rename from metadata-ingestion/docs/sources/powerbi/powerbi-report-server.md rename to metadata-ingestion/docs/sources/powerbi/powerbi-report-server_pre.md diff --git a/metadata-ingestion/docs/sources/powerbi/powerbi.md b/metadata-ingestion/docs/sources/powerbi/powerbi_pre.md similarity index 100% rename from metadata-ingestion/docs/sources/powerbi/powerbi.md rename to metadata-ingestion/docs/sources/powerbi/powerbi_pre.md diff --git a/metadata-ingestion/src/datahub/ingestion/source/ge_profiling_config.py b/metadata-ingestion/src/datahub/ingestion/source/ge_profiling_config.py index 26ab73dbb45678..c7996e9891de2b 100644 --- a/metadata-ingestion/src/datahub/ingestion/source/ge_profiling_config.py +++ b/metadata-ingestion/src/datahub/ingestion/source/ge_profiling_config.py @@ -85,17 +85,17 @@ class GEProfilingConfig(ConfigModel): profile_if_updated_since_days: Optional[pydantic.PositiveFloat] = Field( default=1, - description="Profile table only if it has been updated since these many number of days. If set to `null`, no constraint of last modified time for tables to profile. Supported only in `snowflake`, `snowflake-beta` and `BigQuery`.", + description="Profile table only if it has been updated since these many number of days. If set to `null`, no constraint of last modified time for tables to profile. Supported only in `snowflake` and `BigQuery`.", ) profile_table_size_limit: Optional[int] = Field( default=1, - description="Profile tables only if their size is less then specified GBs. If set to `null`, no limit on the size of tables to profile. Supported only in `snowflake-beta` and `BigQuery`", + description="Profile tables only if their size is less then specified GBs. If set to `null`, no limit on the size of tables to profile. Supported only in `snowflake` and `BigQuery`", ) profile_table_row_limit: Optional[int] = Field( default=50000, - description="Profile tables only if their row count is less then specified count. If set to `null`, no limit on the row count of tables to profile. Supported only in `snowflake-beta` and `BigQuery`", + description="Profile tables only if their row count is less then specified count. If set to `null`, no limit on the row count of tables to profile. Supported only in `snowflake` and `BigQuery`", ) # The default of (5 * cpu_count) is adopted from the default max_workers diff --git a/metadata-ingestion/src/datahub/ingestion/source/sql/trino.py b/metadata-ingestion/src/datahub/ingestion/source/sql/trino.py index 5a64612022644e..4b4f27a818931b 100644 --- a/metadata-ingestion/src/datahub/ingestion/source/sql/trino.py +++ b/metadata-ingestion/src/datahub/ingestion/source/sql/trino.py @@ -147,7 +147,7 @@ def get_identifier(self: BasicSQLAlchemyConfig, schema: str, table: str) -> str: ) -@platform_name("Trino") +@platform_name("Trino", doc_order=1) @config_class(TrinoConfig) @support_status(SupportStatus.CERTIFIED) @capability(SourceCapability.DOMAINS, "Supported via the `domain` config field")