It seems that you are encountering an issue where Azure Data Explorer (ADX) is registering streaming ingestion failures for tables that have streaming ingestion disabled. The error code Kusto.DataNode.Exceptions.StreamingIngestionPolicyNotEnabledException indicates that the ingestion process is attempting to use streaming ingestion on these tables, which is not allowed since streaming ingestion is disabled.
Here are a few steps you can take to troubleshoot this issue:
- Verify Table Configuration: Double-check the configuration of your tables in ADX to ensure that streaming ingestion is indeed disabled. You can do this by reviewing the table properties in the Azure portal or using Kusto queries to confirm the ingestion policy settings.
- Check ASA Job Configuration: Review the output configuration of your Azure Stream Analytics jobs. Ensure that the output is correctly targeting the tables that have streaming ingestion disabled. If the output is configured to use streaming ingestion, it may lead to these errors.
- Review Logs: Look into the logs for your Azure Stream Analytics jobs and ADX to gather more context on the ingestion attempts. This may provide insights into why the jobs are attempting to perform streaming ingestion on the specified tables.
- Contact Support: If the issue persists after verifying the configurations and reviewing logs, consider reaching out to Azure support for further assistance. They can provide more detailed insights into the ingestion process and help identify any underlying issues.
By following these steps, you should be able to identify the cause of the streaming ingestion failures and address the issue accordingly.