Rockset

Rockset is a serverless search and analytics engine that allows you to create live dashboards and real-time data APIs on DynamoDB, Kafka, S3 and more.

Integrate the Rockset API with the HTTP / Webhook API

Setup the Rockset API trigger to run a workflow which integrates with the HTTP / Webhook API. Pipedream's integration platform allows you to integrate Rockset and HTTP / Webhook remarkably fast. Free for developers.

Add Documents with Rockset API on New Requests from HTTP / Webhook API
HTTP / Webhook + Rockset
 
Try it
Create API Key with Rockset API on New Requests from HTTP / Webhook API
HTTP / Webhook + Rockset
 
Try it
Create Integration with Rockset API on New Requests from HTTP / Webhook API
HTTP / Webhook + Rockset
 
Try it
Add Documents with Rockset API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Rockset
 
Try it
Create API Key with Rockset API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Rockset
 
Try it
New Requests from the HTTP / Webhook API

Get a URL and emit the full HTTP event on every request (including headers and query parameters). You can also configure the HTTP response code, body, and more.

 
Try it
New Requests (Payload Only) from the HTTP / Webhook API

Get a URL and emit the HTTP body as an event on every request

 
Try it
New event when the content of the URL changes. from the HTTP / Webhook API

Emit new event when the content of the URL changes.

 
Try it
Add Documents with the Rockset API

Add documents to a collection in Rockset. Learn more at https://docs.rockset.com/rest/#adddocuments.

 
Try it
Create API Key with the Rockset API

Create a new API key for the authenticated user.

 
Try it
Create Integration with the Rockset API

Create a new integration with Rockset. Learn more at https://docs.rockset.com/rest/#createintegration

 
Try it
Send any HTTP Request with the HTTP / Webhook API

Send an HTTP request using any method and URL. Optionally configure query string parameters, headers, and basic auth.

 
Try it
Send GET Request with the HTTP / Webhook API

Send an HTTP GET request to any URL. Optionally configure query string parameters, headers and basic auth.

 
Try it

Overview of Rockset

Rockset API is a modern API for real-time query on complex data. With Rockset,
you can build applications with routinely updated datasets, such as web traffic
logs, machine generated data, sensor data, ad-tracking data, and IoT device
data, to unlock real-time insights and actionability. In this article, we’ll
discuss the various types of applications you can build with Rockset API.

Rockset gives you the power to:

  • Quickly ingest and index data from a variety of sources such as Kafka,
    MongoDB and Amazon S3.
  • Perform complex analytical queries regardless of data complexity, structure
    and size.
  • Perform interactive computing on large volumes of data using SQL.
  • Build web or mobile applications with sophisticated analytics capabilities.

Here are some example applications you can build using Rockset API:

  • Personalized Shopping Experiences: Leverage data from many customer
    touchpoints, such as social media, web and app usage, customer support
    tickets and customer reviews, to build personalized shopping experiences.
  • Automated Fraud Detection: Create and monitor automated fraud detection
    systems that ingest and analyze various types of data in real-time to detect
    anomalous user behaviors.
  • Smart IoT: Create a connected infrastructure that lets you develop and deploy
    intelligent applications that can understand, store and analyze IoT data
    streams.
  • Machine Learning: Build applications that can quickly access, prepare and
    analyze data used for predictive analysis.
  • Log Management and Analytics: Collect, monitor and analyze log data from
    various sources to monitor system performance and alert on anomalies.

Connect Rockset

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    rockset: {
      type: "app",
      app: "rockset",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.rs2.usw2.rockset.com/v1/orgs/self/users/self`,
      headers: {
        "Authorization": `ApiKey ${this.rockset.$auth.apikey}`,
      },
    })
  },
})

Connect HTTP / Webhook

1
2
3
4
5
6
7
8
9
10
11
12
13
// To use any npm package on Pipedream, just import it
import axios from "axios"

export default defineComponent({
  async run({ steps, $ }) {
    const { data } = await axios({
      method: "GET",
      url: "https://pokeapi.co/api/v2/pokemon/charizard",
    })
    return data.species
  },
})

Community Posts

A Look at Pipedream
A Look at Pipedream
I'm going to build a workflow that will search Twitter every hour for a keyword. It will take the results, format them nicely, and then email it.
Building a Traffic-Based Workflow in Pipedream
Building a Traffic-Based Workflow in Pipedream
Normally I don't like to blog about stuff that isn't generally available to all, but as it will be available sometime soon, I decided to go ahead anyway. And I built something really cool I want to share so that's another reason to talk about this now!