Dataiku DSS icon

Dataiku DSS

Use the Dataiku DSS API

Actions364

Overview

This node integrates with the Dataiku DSS API, enabling users to perform a wide range of operations on Dataiku DSS resources directly from n8n workflows. Specifically, for the Streaming Endpoint resource and the Create Managed Streaming Endpoint operation, it allows creating a new managed streaming endpoint within a specified project in Dataiku DSS.

Use cases include automating the creation and management of streaming endpoints for real-time data processing or analytics pipelines within Dataiku DSS projects. For example, you might use this node to programmatically set up streaming endpoints as part of a deployment pipeline or to dynamically create endpoints based on workflow conditions.

Properties

Name Meaning
Project Key The key identifier of the Dataiku DSS project where the managed streaming endpoint will be created.
Request Body JSON object containing the configuration details for the managed streaming endpoint to be created. This should follow the Dataiku DSS API specification for managed streaming endpoint creation.

Output

The node outputs the response from the Dataiku DSS API call in the json field of the output item. This typically includes details about the newly created managed streaming endpoint, such as its ID, status, configuration, and other metadata returned by the API.

If the API returns binary data (not typical for this operation), it would be available in the binary field, but for creating a managed streaming endpoint, the output is expected to be JSON.

Dependencies

  • Requires an active connection to a Dataiku DSS instance.
  • Requires valid API credentials (an API key) for authentication with the Dataiku DSS API.
  • The node expects the Dataiku DSS server URL and user API key to be configured in the credentials.
  • No additional external dependencies beyond the standard n8n environment and the Dataiku DSS API.

Troubleshooting

  • Missing Credentials Error: If the node throws an error about missing credentials, ensure that the Dataiku DSS API credentials are properly configured in n8n.
  • Project Key Required: The operation requires a valid project key; if omitted or incorrect, the node will throw an error.
  • Invalid Request Body: The request body must be a valid JSON object matching the API's expected schema. Invalid JSON or missing required fields may cause API errors.
  • API Errors: Any HTTP errors returned by the Dataiku DSS API (e.g., 400 Bad Request, 401 Unauthorized) will be surfaced as node errors. Check the API key validity, permissions, and request payload.
  • Network Issues: Ensure that the n8n instance can reach the Dataiku DSS server URL without network restrictions.

Links and References


This summary focuses on the "Streaming Endpoint" resource and the "Create Managed Streaming Endpoint" operation as requested, extracting relevant input properties and describing the node's behavior based on static code analysis.

Discussion