-
Notifications
You must be signed in to change notification settings - Fork 1
RisingWave: Add index page #210
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
a57e264
RisingWave: Add index page
amotl 2c9cab0
RisingWave: Add note about that RisingWave's `CREATE SINK` does not work
amotl 247b387
RisingWave: Add note about interoperability issues
amotl 99a2c68
RisingWave: Improve wording. Remove exaggerations.
amotl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,99 @@ | ||
| (risingwave)= | ||
|
|
||
| # RisingWave | ||
|
|
||
| ```{div} | ||
| :style: "float: right; margin-left: 0.5em" | ||
| [{w=180px}](https://www.risingwave.com/) | ||
| ``` | ||
|
|
||
| [RisingWave] is a stream processing and management platform that allows | ||
| configuring data sources, views on that data, and destinations where | ||
| results are materialized. | ||
| It provides both a Postgres-compatible SQL interface, like CrateDB, | ||
| and a DataFrame-style Python interface. | ||
|
|
||
| RisingWave can ingest millions of events per second, continuously join | ||
| and analyze live streams with historical data, serve ad-hoc queries at | ||
| low latency, and persist fresh, consistent results to Apache Iceberg™ | ||
| or any other downstream system. | ||
amotl marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| {h=200px} | ||
|
|
||
| > Deliver fresh, low-latency insights from real-time streams, | ||
| > database CDC, and time-series data. Bring streaming and batch together, | ||
| > let users join and analyze both live and historical data, and persist | ||
| > results in managed Apache Iceberg™ tables. | ||
|
|
||
| :::{dropdown} **Managed RisingWave** | ||
| RisingWave Labs offers [managed products][RisingWave pricing] | ||
| for building prototypes, production workloads, and enterprise-level, critical | ||
| applications. | ||
| ::: | ||
|
|
||
| ```{div} | ||
| :style: "clear: both" | ||
| ``` | ||
|
|
||
| ## Synopsis | ||
|
|
||
| :::{rubric} RisingWave | ||
| ::: | ||
| Load an Apache Iceberg table, and serve it as materialized view. | ||
| ```sql | ||
| CREATE SOURCE sensors_readings | ||
| WITH ( | ||
| connector = 'iceberg', | ||
| database.name='db.db', | ||
| warehouse.path='s3://warehouse/', | ||
| table.name='sensors_readings', | ||
| s3.endpoint = '<YOUR_S3_ENDPOINT>', | ||
| s3.access.key = '<YOUR_S3_ACCESS_KEY>', | ||
| s3.secret.key = '<YOUR_S3_SECRET_KEY>', | ||
| s3.region = '<YOUR_S3_REGION_NAME>' | ||
| ); | ||
| ``` | ||
| ```sql | ||
| CREATE MATERIALIZED VIEW average_sensor_readings AS | ||
| SELECT | ||
| sensor_id, | ||
| AVG(reading) AS average_reading | ||
| FROM sensors_readings | ||
| GROUP BY sensor_id; | ||
| ``` | ||
| :::{rubric} CrateDB | ||
| ::: | ||
| Converge into a CrateDB table for long-term persistence and efficient querying, | ||
| even on large amounts of data. | ||
| ```sql | ||
| CREATE TABLE public.average_sensor_readings ( | ||
| sensor_id BIGINT PRIMARY KEY, | ||
| average_reading DOUBLE | ||
| ); | ||
| ``` | ||
| :::{note} | ||
| The standard approach with RisingWave would be to use its [CREATE SINK] operation | ||
| to connect to an external target. | ||
| However, because this does not work with CrateDB, a little Python event processor | ||
amotl marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| is needed to relay the data. An example implementation can be found in the tutorial | ||
| referenced below. | ||
| ::: | ||
|
|
||
| ## Learn | ||
|
|
||
| :::{rubric} Tutorials | ||
| ::: | ||
| - An example with data coming from an Apache Iceberg table and aggregations | ||
| materialized in real-time in CrateDB, using RisingWave. | ||
| See [Stream processing from Iceberg tables to CrateDB using RisingWave]. | ||
|
|
||
| :::{note} | ||
| We are tracking interoperability issues per [Tool: RisingWave] and appreciate | ||
| any contributions and reports. | ||
| ::: | ||
|
|
||
|
|
||
| [CREATE SINK]: https://docs.risingwave.com/sql/commands/sql-create-sink | ||
| [RisingWave]: https://github.com/risingwavelabs/risingwave | ||
| [RisingWave pricing]: https://www.risingwave.com/pricing/ | ||
| [Tool: RisingWave]: https://github.com/crate/crate/labels/tool%3A%20RisingWave | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.