Troubleshooting
Workflow Deployment Error
If there were any errors during the workflow deployment process, the Ingestion Pipeline Entity will still be created, but no workflow will be present in the Ingestion container.- You can then Edit the Ingestion Pipeline and Deploy it again.
- From the Connection tab, you can also Edit the Service if needed.
Connector Debug Troubleshooting
This section provides instructions to help resolve common issues encountered during connector setup and metadata ingestion in Collate. Below are some of the most frequently observed troubleshooting scenarios.How to Enable Debug Logging for Any Ingestion
To enable debug logging for any ingestion workflow in Collate:- Navigate to Services Go to Settings > Services > Service Type (e.g., Database) in the Collate UI.
- Select a Service Choose the specific service for which you want to enable debug logging.
- Access Ingestion Tab Go to the Ingestion tab and click the three-dot menu on the right-hand side of the ingestion type, and select Edit.
- Enable Debug Logging In the configuration dialog, enable the Debug Log option and click Next.
- Schedule and Submit Configure the schedule if needed and click Submit to apply the changes.
Permission Issues
If you encounter permission-related errors during connector setup or metadata ingestion, ensure that all the prerequisites and access configurations specified for each connector are properly implemented. Refer to the connector-specific documentation to verify the required permissions.Connection Failed
If you encounter connection errors when connecting to Informix:Resolution
- Verify Host and Port: Ensure the hostname and port are correct (e.g.,
localhost:9088). - Check Server Name: Verify that the Server Name matches the value in your
sqlhostsfile orINFORMIXSERVERenvironment variable. - Network Access: Ensure the system running the ingestion can reach the Informix server on the specified port.
- Firewall Rules: Check that the Informix port (typically 9088) is not blocked by firewalls.
- Server Status: Verify that the Informix server is running using
onstat -command.
Authentication Failed
If you encounter authentication errors:Resolution
- Verify Credentials: Double-check that the username and password are correct.
- User Exists: Confirm the user exists in the Informix database:
- Password Reset: If needed, reset the password using:
Permission Denied on System Catalogs
If you encounter permission errors when extracting metadata:Resolution
Grant the necessary permissions on system catalogs:Database Does Not Exist
If the specified database cannot be found:Resolution
- Verify Database Name: Check that the database name is spelled correctly and exists:
- Database Access: Ensure the user has access to the database:
SSL Connection Failed
If you encounter SSL connection errors:Resolution
- Verify SSL Mode: Ensure the SSL Mode is set correctly (
require,verify-ca, orverify-full). - Check CA Certificate: For
verify-caorverify-fullmodes, ensure the CA certificate is correctly provided. - Server SSL Configuration: Verify that the Informix server is configured for SSL connections.
- Certificate Format: Ensure certificates are in PEM format.
SQLTRACE Access Denied
If you encounter errors when extracting lineage or usage:Resolution
- Grant Permission: Grant SELECT on the SQL trace table:
- Enable SQL Tracing: Ensure SQL tracing is enabled (run as DBA):
- Verify Trace Status: Check that SQL tracing is active:
SQLTRACE Table Too Large
If thesyssqltrace table grows too large and impacts performance:
Resolution
- Flush Old Entries: Periodically truncate the SQL trace table after successful ingestion:
- Lower Trace Level: Consider using SQLTRACE level 1 instead of 2 if full coverage isn’t required.
- Schedule Regular Cleanup: Set up a scheduled task to flush the trace table periodically.
Connection Timeout
If you encounter timeout errors:Resolution
- Check Network Latency: Verify network connectivity between the ingestion system and Informix server.
- Server Load: Check if the Informix server is under heavy load using
onstat -g act. - Increase Timeout: If using a slow network, consider increasing connection timeout settings.
- Server Resources: Ensure the Informix server has adequate resources (CPU, memory, disk I/O).
No Tables Found
If the ingestion completes but no tables are found:Resolution
- Verify Database Contents: Confirm the database contains tables:
- Check Table Filters: Review the Table Filter Pattern to ensure it’s not excluding all tables.
- User Permissions: Verify the user has SELECT access to the tables you want to ingest.