Frequently Asked Questions
Find answers to common questions about Datalinx AI.
General Questions
What is Datalinx AI?
Datalinx AI is an AI-powered data integration platform that helps organizations connect, transform, and activate their customer data. It provides tools for data mapping, transformation, identity resolution, and pipeline orchestration.
What types of data sources does Datalinx AI support?
Datalinx AI supports:
- Databases: PostgreSQL, MySQL, Snowflake, Databricks, SQL Server, Oracle, BigQuery
- APIs: REST APIs, GraphQL endpoints
- Files: CSV, JSON, Parquet files from S3, GCS, Azure Blob
- Streaming: Kafka, Kinesis (Enterprise)
What data warehouses can I use as targets?
Supported target destinations include:
- Snowflake
- Databricks (Unity Catalog)
- BigQuery
- Amazon Redshift
- PostgreSQL
Is my data secure?
Yes. Datalinx AI implements multiple security measures:
- Encryption at rest: AES-256 encryption for all stored data
- Encryption in transit: TLS 1.3 for all network communication
- Access control: Role-based permissions at organization and workspace levels
- Audit logging: Complete audit trail of all operations
See our Security Architecture for details.
Account & Billing
How do I sign up?
- Visit datalinx.ai
- Click Get Started
- Enter your email and create a password
- Verify your email
- Set up your organization
What plans are available?
| Plan | Best For | Key Features |
|---|---|---|
| Starter | Small teams | 5 users, 3 workspaces, 10 sources |
| Professional | Growing teams | 25 users, 10 workspaces, unlimited sources |
| Enterprise | Large organizations | Unlimited, SSO, dedicated support |
Can I get a free trial?
Yes, all new accounts start with a 14-day free trial of our Professional plan. No credit card required.
Data Sources
How do I connect a new data source?
- Navigate to your workspace
- Click Sources → Add Source
- Select your source type
- Enter connection details
- Test the connection
- Save the configuration
See Database Sources for detailed instructions.
Why can't I connect to my database?
Common causes:
| Issue | Solution |
|---|---|
| Connection refused | Whitelist Datalinx AI IP addresses |
| Authentication failed | Verify username and password |
| SSL error | Check SSL/TLS configuration |
| Timeout | Check network connectivity |
Mappings & Transformations
How do I create a mapping?
- Navigate to Mappings
- Click Create Mapping
- Select source and target tables
- Map fields using drag-and-drop or AI suggestions
- Add transformations as needed
- Save and validate
See Mapping Basics for details.
What is AI-assisted mapping?
AI-assisted mapping uses machine learning to suggest field mappings based on:
- Column names and semantics
- Data types and patterns
- Historical mapping decisions
Click Auto-Map when creating a mapping to see suggestions.
Can I use custom SQL in mappings?
Yes, you can write custom SQL expressions for any field mapping:
-- String manipulation
CONCAT(first_name, ' ', last_name)
-- Date formatting
TO_CHAR(created_at, 'YYYY-MM-DD')
-- Conditional logic
CASE WHEN amount > 1000 THEN 'High' ELSE 'Low' END
Pipelines
How do I run a pipeline?
- Navigate to Pipelines
- Find your pipeline
- Click Run Now
- Monitor progress in the run details
Can I schedule pipelines?
Yes, schedule pipelines to run automatically:
- Navigate to your pipeline
- Click Schedule
- Set frequency (hourly, daily, weekly)
- Choose specific times
- Save the schedule
What happens if a pipeline fails mid-run?
Datalinx AI handles failures gracefully:
- Partial data is rolled back - no incomplete data in target
- Error is logged with full context
- Notifications sent to configured channels
- Automatic retry based on your retry policy
API & Integrations
How do I get an API key?
- Navigate to Profile → API Keys
- Click Create New Key
- Enter a name and select permissions
- Copy your key (shown only once)
What's the API rate limit?
| Plan | Rate Limit |
|---|---|
| Starter | 100 requests/minute |
| Professional | 1,000 requests/minute |
| Enterprise | Custom |
Is there a Python SDK?
Yes, install the SDK with pip:
pip install datalinx
See the API Reference for usage examples.
Support
How do I contact support?
- Documentation: docs.datalinx.ai
- Email: support@datalinx.ai
- Chat: In-app chat (Professional and Enterprise)
Where can I report bugs?
- Check if it's a known issue on our status page
- Contact support via in-app chat (Professional and Enterprise)
- Email support@datalinx.ai with reproduction steps
Related Documentation
- Common Issues - Solutions to common problems
- Error Reference - Error code explanations
- Quick Start - Get started in minutes