Dataiku DSS icon

Dataiku DSS

Use the Dataiku DSS API

Actions364

Overview

This node integrates with the Dataiku DSS API, allowing users to perform a wide range of operations on various Dataiku DSS resources. Specifically for the Streaming Endpoint resource and the Delete Streaming Endpoint operation, it enables users to delete an existing streaming endpoint within a specified project.

Common scenarios where this node is beneficial include automating management tasks in Dataiku DSS projects, such as cleaning up unused streaming endpoints programmatically or integrating streaming endpoint lifecycle management into larger workflows.

For example, if you have automated deployment pipelines that create streaming endpoints temporarily for data ingestion or processing, this node can be used to delete those endpoints once they are no longer needed, helping maintain a clean environment.

Properties

Name Meaning
Project Key The unique identifier of the Dataiku DSS project containing the streaming endpoint.
Streaming Endpoint ID The unique identifier of the streaming endpoint to delete.

These properties must be provided to specify which streaming endpoint in which project should be deleted.

Output

The node outputs the response from the Dataiku DSS API after attempting to delete the streaming endpoint. The output is structured as JSON and typically contains confirmation of the deletion or relevant status information.

If the deletion is successful, the output may be empty or contain a success message. If there is an error, the node throws an error with details.

No binary data output is associated with this operation.

Dependencies

  • Requires valid Dataiku DSS API credentials, including:
    • The URL of the Dataiku DSS server.
    • A user API key for authentication.
  • The node uses HTTP requests to communicate with the Dataiku DSS REST API.
  • No additional external services or environment variables are required beyond the API credentials.

Troubleshooting

  • Missing Credentials Error: If the node throws "Missing Dataiku DSS API Credentials," ensure that the API credentials are properly configured in n8n.
  • Required Parameter Errors: The node validates required parameters like Project Key and Streaming Endpoint ID. If these are missing, errors will indicate which parameter is required.
  • API Request Failures: Network issues, incorrect API keys, or insufficient permissions can cause request failures. Check the API key validity and user permissions in Dataiku DSS.
  • Unexpected Response Format: If the API returns unexpected data, the node attempts to parse JSON; failure to parse will result in raw text output or an error.
  • HTTP Method: The delete operation uses the HTTP DELETE method. Ensure that the Dataiku DSS instance supports this method for the endpoint.

Links and References


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

Discussion