-
Notifications
You must be signed in to change notification settings - Fork 590
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
DO NOT MERGE: Notes about the RW + TiDB presentation in London #16667
Closed
Closed
Changes from 7 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
216e25b
copy paste extended
CAJan93 074f301
copy paste config files
CAJan93 fd10fd3
kafka use 29092
CAJan93 6b7930f
presentation london
CAJan93 b9130c4
CDC presentation
CAJan93 3b8b810
minor changes
CAJan93 63ef286
minor change
CAJan93 f0e5ff9
hot hashtags
CAJan93 7cdfa15
try windowing
CAJan93 483c749
working demo
CAJan93 ee58f99
presentation notes
CAJan93 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 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
15 changes: 15 additions & 0 deletions
15
integration_tests/tidb-cdc-sink/grafana-risedev-dashboard.yml
This file contains 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,15 @@ | ||
# --- THIS FILE IS AUTO GENERATED BY RISEDEV --- | ||
apiVersion: 1 | ||
|
||
providers: | ||
- name: 'risingwave-grafana' | ||
orgId: 1 | ||
folder: '' | ||
folderUid: '' | ||
type: file | ||
disableDeletion: false | ||
updateIntervalSeconds: 1 | ||
allowUiUpdates: true | ||
options: | ||
path: /dashboards | ||
foldersFromFilesStructure: false |
15 changes: 15 additions & 0 deletions
15
integration_tests/tidb-cdc-sink/grafana-risedev-datasource.yml
This file contains 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,15 @@ | ||
# --- THIS FILE IS AUTO GENERATED BY RISEDEV --- | ||
apiVersion: 1 | ||
deleteDatasources: | ||
- name: risedev-prometheus | ||
datasources: | ||
- name: risedev-prometheus | ||
type: prometheus | ||
access: proxy | ||
url: http://prometheus-0:9500 | ||
withCredentials: false | ||
isDefault: true | ||
tlsAuth: false | ||
tlsAuthWithCACert: false | ||
version: 1 | ||
editable: true |
This file contains 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,11 @@ | ||
# --- THIS FILE IS AUTO GENERATED BY RISEDEV --- | ||
[server] | ||
http_addr = 0.0.0.0 | ||
http_port = 3001 | ||
|
||
[users] | ||
default_theme = light | ||
|
||
[auth.anonymous] | ||
enabled = true | ||
org_role = Admin |
This file contains 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,42 @@ | ||
# --- THIS FILE IS AUTO GENERATED BY RISEDEV --- | ||
global: | ||
scrape_interval: 15s | ||
evaluation_interval: 60s | ||
|
||
scrape_configs: | ||
- job_name: prometheus | ||
static_configs: | ||
- targets: ["prometheus-0:9500"] | ||
|
||
- job_name: compute | ||
static_configs: | ||
- targets: ["compute-node-0:1222"] | ||
|
||
- job_name: meta | ||
static_configs: | ||
- targets: ["meta-node-0:1250"] | ||
|
||
- job_name: minio | ||
metrics_path: /minio/v2/metrics/cluster | ||
static_configs: | ||
- targets: ["minio-0:9301"] | ||
|
||
- job_name: compactor | ||
static_configs: | ||
- targets: ["compactor-0:1260"] | ||
|
||
- job_name: etcd | ||
static_configs: | ||
- targets: ["etcd-0:2379"] | ||
|
||
- job_name: frontend | ||
static_configs: | ||
- targets: ["frontend-node-0:2222"] | ||
|
||
- job_name: redpanda | ||
static_configs: | ||
- targets: ["message_queue:9644"] | ||
|
||
- job_name: standalone | ||
static_configs: | ||
- targets: ["risingwave-standalone:1250"] |
This file contains 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,2 @@ | ||
# RisingWave config file to be mounted into the Docker containers. | ||
# See src/config/example.toml for example |
This file contains 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,37 @@ | ||
version: '2' | ||
services: | ||
zookeeper: | ||
image: quay.io/debezium/zookeeper:latest | ||
ports: | ||
- 2182:2181 | ||
- 2888:2888 | ||
- 3888:3888 | ||
kafka: | ||
image: quay.io/debezium/kafka:latest | ||
ports: | ||
- 9093:9092 | ||
links: | ||
- zookeeper | ||
environment: | ||
- ZOOKEEPER_CONNECT=zookeeper:2181 | ||
mysql: | ||
image: quay.io/debezium/example-mysql:latest | ||
ports: | ||
- 3306:3306 | ||
environment: | ||
- MYSQL_ROOT_PASSWORD=debezium | ||
- MYSQL_USER=mysqluser | ||
- MYSQL_PASSWORD=mysqlpw | ||
connect: | ||
image: quay.io/debezium/connect:latest | ||
ports: | ||
- 8083:8083 | ||
links: | ||
- kafka | ||
- mysql | ||
environment: | ||
- BOOTSTRAP_SERVERS=kafka:9092 | ||
- GROUP_ID=1 | ||
- CONFIG_STORAGE_TOPIC=my_connect_configs | ||
- OFFSET_STORAGE_TOPIC=my_connect_offsets | ||
- STATUS_STORAGE_TOPIC=my_connect_statuses |
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd recommend using redpanda instead.