The official n8n node for SurrealDB. It provides both action and tool nodes to interact with a SurrealDB database, allowing you to create, read, update, and delete records, as well as execute custom SurrealQL queries.
n8n is a fair-code licensed workflow automation platform.
View the node documentation here.
- SurrealDB University: https://surrealdb.com/learn/fundamentals
- Aeon's Surreal Renaissance (Interative book): https://surrealdb.com/learn/book
- Documentation: https://surrealdb.com/docs
- Important Notes
- Features
- Installation
- Configuration
- Operations
- Error Handling
- Understanding SurrealDB and n8n Integration
- Resources
- Development
- Contributing
- License
- Self-Hosted Only: As with all community nodes, this node works only with self-hosted n8n instances, not with n8n Cloud.
- HTTP/HTTPS Only: Due to n8n's architecture, this node only supports HTTP/HTTPS connections to SurrealDB. WebSocket connections (WS/WSS) are not supported.
- Tool Node Support: To use this node as a tool in AI workflows, you must set the environment variable
N8N_COMMUNITY_PACKAGES_ALLOW_TOOL_USAGE=true
.
- Dual Node Types: Functions as both an action node and a tool node for AI workflows
- Complete CRUD Operations: Create, read, update, and delete SurrealDB records
- Custom Queries: Execute any SurrealQL query with full parameter support
- Enhanced Query Builder: Visual interface for building SELECT queries with WHERE, ORDER BY, GROUP BY, and other clauses
- Table Operations: List fields and explore table structure
- Relationship Support: Query and manage record relationships
- Native Data Format: Works with SurrealDB's native data formats
- Connection Pooling: Configurable connection pooling for improved performance and resource management
- Enhanced Error Handling: Comprehensive error classification, automatic retry logic, and connection recovery
- Intelligent Recovery: Different error handling strategies for different operation types
- Detailed Error Reporting: Rich error context with categorization and severity levels
- Pool Monitoring: Built-in pool statistics and performance monitoring
- You need a self-hosted n8n instance (v0.214.0 or later recommended)
- You need access to a SurrealDB instance (v1.0.0 or later recommended)
- Open your n8n instance
- Go to Settings > Community Nodes
- Click Install
- Enter
n8n-nodes-surrealdb
and click Install - Restart your n8n instance if prompted
To use the SurrealDB node, you need to create credentials with the following properties:
- Connection String - The connection string to your SurrealDB instance (must start with
http://
orhttps://
). WebSocket connections (ws://
orwss://
) are not supported. - Authentication - Choose the authentication scope:
- Root - Full access to all namespaces and databases
- Namespace - Access limited to a specific namespace
- Database - Access limited to a specific database within a namespace
- Username - Username for authentication
- Password - Password for authentication
- Namespace - Target namespace (required for Namespace and Database authentication)
- Database - Target database (required for Database authentication)
The authentication type you choose affects how namespace and database information is handled:
-
Root Authentication:
- Provides access to all namespaces and databases
- Namespace and Database fields in credentials are optional
- You can override namespace/database at the node level for each operation
-
Namespace Authentication:
- Provides access to all databases within a specific namespace
- Namespace field in credentials is required
- Database field in credentials is optional
- You can override the database at the node level for each operation
-
Database Authentication:
- Provides access to a specific database within a specific namespace
- Both Namespace and Database fields in credentials are required
- You can still override these at the node level for specific operations
For most operations, you can override the namespace and database settings from your credentials:
- In the node configuration, expand the Options section
- Enter values in the Namespace and/or Database fields
- These values will take precedence over the credential settings for that specific operation
- You will be required to provide a namespace when using Namespace authentication
- You will be required to provide both a namespace and database when using Database authentication
The SurrealDB node provides a fairly comprehensive set of operations organized by resource type. For most anything not covered, you can use the Execute Query operation.
- Create Record - Create a single record in a table
- Get Record - Retrieve a specific record by ID
- Update Record - Update a specific record by ID
- Upsert Record - Create or update a record (insert if not exists, update if exists)
- Delete Record - Delete a specific record by ID
- Get All Records - Retrieve all records from a table
- Create Many - Create multiple records in a table
- Get Many - Retrieve multiple records by IDs
- Update All Records - Update all records in a table
- Delete All Records - Delete all records from a table
- Merge All Records - Merge the same data into all records in a table
- Create Table - Define a new table with optional schema
- Delete Table - Remove a table from the database
- Get Table - Retrieve information about a table
- List Fields - List all fields defined on a table
- Create Field - Create a new field on a table
- Delete Field - Delete a field from a table
- Create Index - Create a new index on a table
- Delete Index - Delete an index from a table
- Create Relationship - Create a relationship between two records
- Delete Relationship - Delete a relationship between records
- Query Relationships - Query relationships between records
- Execute Query - Execute a raw SurrealQL query with parameters
- Build Select Query - Build SELECT queries using a visual interface with WHERE, ORDER BY, GROUP BY, and other clauses
- Health Check - Check if the database instance is responsive
- Version - Get the version of the SurrealDB instance
- Get Pool Statistics - Monitor connection pool performance and statistics
Important: Due to n8n's architecture, this node only supports HTTP/HTTPS connections to SurrealDB. WebSocket connections (WS/WSS) are not supported.
- Your connection string must start with
http://
orhttps://
(notws://
orwss://
) - When configuring your SurrealDB instance, ensure it's accessible via HTTP/HTTPS
- If you're using SurrealDB Cloud or another instance that only offers WebSocket connections, you'll need to set up a self-hosted SurrealDB instance with HTTP enabled
- This limitation is due to how n8n handles connections and executes node operations
The SurrealDB node includes comprehensive connection pooling to improve performance and resource management. Connection pooling allows the node to reuse database connections across multiple operations, reducing connection overhead and improving response times.
You can configure the connection pool through the "Connection Pooling" options in any node operation:
- Max Connections (default: 10): Maximum number of connections in the pool
- Min Connections (default: 2): Minimum number of connections to keep in the pool
- Acquire Timeout (default: 30000ms): Maximum time to wait for a connection from the pool
- Health Check Interval (default: 60000ms): Interval between health checks for pool connections
- Max Idle Time (default: 300000ms): Maximum time a connection can remain idle before being closed
- Retry Attempts (default: 3): Number of retry attempts for failed connection acquisitions
- Retry Delay (default: 1000ms): Delay between retry attempts
Use the System > Get Pool Statistics operation to monitor pool performance:
{
"poolStatistics": {
"totalConnections": 5,
"activeConnections": 2,
"idleConnections": 3,
"waitingRequests": 0,
"totalRequests": 150,
"failedRequests": 2,
"averageResponseTime": 45,
"successRate": 99
},
"performance": {
"averageResponseTimeMs": 45,
"requestsPerSecond": 2,
"errorRate": 1
},
"poolHealth": {
"utilizationRate": 40,
"availableConnections": 3,
"waitingRequests": 0
}
}
- Improved Performance: Reuses connections instead of creating new ones for each operation
- Resource Management: Limits the number of concurrent connections to prevent database overload
- Automatic Health Checks: Monitors connection health and removes unhealthy connections
- Connection Recovery: Automatically retries failed connection acquisitions
- Idle Connection Cleanup: Removes unused connections to free up resources
- Initialization: Pool is created when the first operation is executed
- Connection Acquisition: Operations get connections from the pool or create new ones if needed
- Connection Release: Connections are returned to the pool after each operation
- Health Monitoring: Regular health checks ensure connections remain valid
- Cleanup: Pool is automatically closed when the node is deactivated
SurrealDB supports both HTTP and WebSocket protocols:
- HTTP/HTTPS: Used for stateless connections, ideal for individual queries
- WebSocket (WS/WSS): Used for stateful connections, better for real-time applications
This node uses the HTTP/HTTPS protocol exclusively, which means:
- Each operation creates a new connection to SurrealDB
- The connection is closed after the operation completes
- No persistent connection is maintained between operations
SurrealDB operations often return empty results rather than errors when no matching data is found. This behavior differs from many other databases and can be important to understand when building workflows:
- Empty Results vs. Errors: A query for a non-existent record returns an empty result, not an error
- Always Output Data: The "Always Output Data" option is particularly useful with SurrealDB to ensure your workflow continues even when no results are found
SurrealDB supports rich data types that map well to n8n's JSON handling:
- Records and IDs: SurrealDB record IDs use the format
table:id
- Relationships: Relationships are first-class citizens in SurrealDB
- Arrays and Objects: Nested data structures are fully supported
The SurrealDB node includes a comprehensive error handling and recovery system that automatically manages common database issues:
The system automatically categorizes errors into different types:
- Connection Errors: Network issues, timeouts, connection refused
- Authentication Errors: Invalid credentials, unauthorized access
- Query Errors: Syntax errors, malformed queries
- Validation Errors: Invalid data, missing required fields
- System Errors: Database server issues, internal errors
- Exponential Backoff: Automatic retry with increasing delays
- Operation-Specific Retries: Different retry strategies for read vs write operations
- Configurable Limits: Adjustable retry counts and delays
- Smart Error Filtering: Only retry on recoverable errors
- Automatic Reconnection: Reconnects to SurrealDB on connection failures
- Re-authentication: Automatically re-authenticates after reconnection
- Connection Validation: Verifies connection health before retrying operations
When Continue on Fail
is enabled, errors include detailed information:
{
"error": {
"message": "Connection timeout",
"category": "TIMEOUT_ERROR",
"severity": "MEDIUM",
"retryable": true,
"context": {
"operation": "executeQuery",
"itemIndex": 0,
"timestamp": "2024-01-15T10:30:00Z",
"recoveryStrategy": "CONNECTION_RECOVERY"
}
}
}
Different operation types use different error handling strategies:
- Read Operations: Faster retries, continue on low/medium errors
- Write Operations: More retries, stop on medium+ errors
- Critical Operations: Minimal retries, stop on any error
- Bulk Operations: Moderate retries, handle rate limiting
For detailed information about the error handling system, see Error Handling Documentation.
This node has been tested with SurrealDB v2.x.
If you want to contribute to this node:
- Clone the repository
- Install dependencies:
npm install
- Build the node:
npm run build
- Link to your n8n installation for testing:
npm link
- In your n8n installation directory:
npm link n8n-nodes-surrealdb
The node includes a centralized debug system that can be enabled via environment variable:
# Enable debug logging
export SURREAL_DEBUG=true
# Or set to '1' to enable
export SURREAL_DEBUG=1
# Disable debug logging (default)
export SURREAL_DEBUG=false
When debug mode is enabled, the node will output detailed logging information including:
- Operation execution details
- Query preparation and execution
- Parameter validation
- Error handling details
This is particularly useful for:
- Troubleshooting connection issues
- Understanding query execution
- Debugging parameter handling
- Development and testing
The debug system is centralized in src/nodes/SurrealDb/debug.ts
and automatically respects the environment variable setting.
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch:
git checkout -b feature/amazing-feature
- Commit your changes:
git commit -m 'Add some amazing feature'
- Push to the branch:
git push origin feature/amazing-feature
- Open a Pull Request
This code is forked originally from n8n-nodes-surrealdb, licensed under the MIT license.
This project is licensed under the MIT License - see the LICENSE file for details.