Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…al_tranactions into inc_txns
  • Loading branch information
Tiemo Bang committed Jul 10, 2024
2 parents ba7e939 + 6e8d065 commit 430e2c5
Show file tree
Hide file tree
Showing 311 changed files with 22,946 additions and 3,951 deletions.
2 changes: 1 addition & 1 deletion .arg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# File used by earthly
PLAYWRIGHT_SNAPSHOTS_COMMIT=6d7a9e13a28a4a95a92ef5ca3acba864ed399ee5
PLAYWRIGHT_SNAPSHOTS_COMMIT=983dd831d58229a12a0150dbb65c0ff04394671c
4 changes: 3 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@
"vadimcn.vscode-lldb",
"mike-co.import-sorter",
"lihui.vs-color-picker",
"ms-playwright.playwright"
"ms-playwright.playwright",
"svelte.svelte-vscode",
"bradlc.vscode-tailwindcss"
],
"settings": {
"editor.formatOnSave": true,
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/benchmark-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ jobs:
- name: Run Benchmarks
run: earthly --verbose -P +benchmark

- name: Fetch previous results
run: bash ./scripts/clone-gh-pages.bash

- name: Publish results
run: bash ./scripts/bench-publish.bash

Expand Down
43 changes: 43 additions & 0 deletions .github/workflows/flink-benchmark.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Benchmark Flink

on:
schedule:
# Run every month on the first day
- cron: '0 0 1 * *'
workflow_dispatch:

env:
CARGO_TERM_COLOR: always
CARGO_NET_RETRY: 10
RUST_BACKTRACE: short
RUSTUP_MAX_RETRIES: 10
CI_MACHINE_TYPE: "skylake-2x"
FORCE_COLOR: 1

jobs:
benchmark:
permissions:
contents: read
issues: write
pull-requests: write
runs-on: [ self-hosted, skylake40, benchmark-machine ]
steps:
- uses: actions/checkout@v3

- name: Install earthly
uses: earthly/actions-setup@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
version: 0.8.14

- name: Earthly version
run: earthly --version

- name: Fetch previous results
run: bash ./scripts/clone-gh-pages.bash

- name: Refresh Flink Benchmark
run: bash ./benchmark/flink/refresh-flink-benchmark.sh

- name: Publish Flink Results
run: bash ./benchmark/flink/publish-flink.sh
12 changes: 8 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,14 @@ gh-pages
# Playwright
playwright-artifacts/
playwright-snapshots/
/test-results/
/playwright-report/
/blob-report/
/playwright/.cache/
test-results/
playwright-report/
test-results-ct/
playwright-report-ct/
test-results-e2e/
playwright-report-e2e/
blob-report/
playwright/.cache/

# Local cargo configuration.
/.cargo/config.toml
6 changes: 4 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,7 @@
"files.trimTrailingWhitespace": true,
"prettier.requireConfig": true,
"rust-analyzer.showUnlinkedFileNotification": false,
"java.compile.nullAnalysis.mode": "disabled"
}
"java.compile.nullAnalysis.mode": "disabled",
"svelte.ask-to-enable-ts-plugin": false,
"svelte.enable-ts-plugin": true
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- Service probing is removed: API endpoints and corresponding
demo are deleted, and the database table `service_probe` is dropped
([#2002](https://github.com/feldera/feldera/pull/2002))

## [0.20.0] - 2024-07-09

- [SQL] Added `MATERIALIZED` views
([#1959](https://github.com/feldera/feldera/pull/1959))
- [WebConsole] Drop Data Services functionality (#1945)
- Pipeline manager metrics endpoint now includes metrics of all
running pipelines ([#1969](https://github.com/feldera/feldera/pull/1969)).
- Added ability to trace pipeline steps with Jaegertracing
([#1999](https://github.com/feldera/feldera/pull/1999))

## [0.19.0] - 2024-06-25

Expand Down
Loading

0 comments on commit 430e2c5

Please sign in to comment.