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 Data Stores API

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

Add Documents with the Rockset API

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

 
Try it
Add or update a single record with the Data Stores API

Add or update a single record in your Pipedream Data Store.

 
Try it
Create API Key with the Rockset API

Create a new API key for the authenticated user.

 
Try it
Add or update multiple records with the Data Stores API

Add or update multiple records to your Pipedream Data Store.

 
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

Overview of Rockset

Rockset is a real-time indexing database service designed for low-latency, high-concurrency analytics. With the Rockset API, you can query your datasets, create and manage collections, and integrate with event streams for real-time analytics. Using Pipedream's serverless platform, you can automate workflows that react to database events, sync data across services, or trigger actions based on analytical insights.

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}`,
      },
    })
  },
})

Overview of Data Stores

Data Stores are a key-value store that allow you to persist state and share data across workflows. You can perform CRUD operations, enabling dynamic data management within your serverless architecture. Use it to save results from API calls, user inputs, or interim data; then read, update, or enrich this data in subsequent steps or workflows. Data Stores simplify stateful logic and cross-workflow communication, making them ideal for tracking process statuses, aggregating metrics, or serving as a simple configuration store.

Connect Data Stores

1
2
3
4
5
6
7
8
9
10
11
export default defineComponent({
  props: {
    myDataStore: {
      type: "data_store",
    },
  },
  async run({ steps, $ }) {
    await this.myDataStore.set("key_here","Any serializable JSON as the value")
    return await this.myDataStore.get("key_here")
  },
})