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 various Dataiku DSS resources. Specifically for the Streaming Endpoint resource and the Create Streaming Endpoint operation, it allows users to create new streaming endpoints within a specified project in Dataiku DSS.

Use cases include automating the creation of streaming endpoints as part of data pipeline workflows, managing real-time data streams, or programmatically configuring streaming services in Dataiku DSS projects.

For example, you might use this node to:

  • Automatically provision streaming endpoints when setting up new projects.
  • Integrate streaming endpoint creation into CI/CD pipelines for Dataiku projects.
  • Manage streaming infrastructure dynamically based on workflow triggers.

Properties

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

Output

The node outputs the response from the Dataiku DSS API after attempting to create the streaming endpoint. The output is provided in the json field and typically contains the details of the newly created streaming endpoint, such as its ID, status, configuration, and other metadata returned by the API.

If the operation involves downloading files or binary content (not applicable for creating streaming endpoints), the node would output binary data accordingly, but for this operation, the output is JSON.

Dependencies

  • Requires an active connection to a Dataiku DSS instance.
  • Requires valid API credentials (an API key) for authenticating 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 set up 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 expected schema for streaming endpoint creation. Invalid JSON or missing required fields will 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 response message for details.
  • Network Issues: Ensure that the n8n instance can reach the Dataiku DSS server URL and that no firewall or network restrictions block the connection.

Links and References


This summary focuses on the "Streaming Endpoint" resource and the "Create Streaming Endpoint" operation as requested, based on static analysis of the provided source code and property definitions.

Discussion