Skip to content

Commit 54a72ee

Browse files
authored
Merge pull request #1025 from lmnr-ai/dev
Infinite datatable fixes, new UI, versioned datapoints, performance improvements
2 parents 9b7209c + 8c8943c commit 54a72ee

File tree

409 files changed

+23609
-11626
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

409 files changed

+23609
-11626
lines changed

.github/workflows/fe-build-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
# Step 3: Set up Node.js
2828
- name: Set up Node.js
29-
uses: actions/setup-node@v5
29+
uses: actions/setup-node@v6
3030
with:
3131
node-version: 'lts/*' # Use the latest LTS version of Node.js
3232
cache: 'pnpm'

.github/workflows/fe-tests-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
version: 9
2424

2525
- name: Set up Node.js
26-
uses: actions/setup-node@v5
26+
uses: actions/setup-node@v6
2727
with:
2828
node-version: 'lts/*'
2929
cache: 'pnpm'

.github/workflows/query-engine-tests-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
python-version: 3.13
2323
- name: Install uv
24-
uses: astral-sh/setup-uv@v6
24+
uses: astral-sh/setup-uv@v7
2525
with:
2626
activate-environment: true
2727
- name: Install the project

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
**/.env
33
.DS_Store
44
**/..DS_Store
5-
.idea
5+
.idea
6+
target/

app-server/.env.example

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ DATABASE_URL="postgres://postgres:postgres_passwordabc@localhost:5433/postgres"
33

44
PORT=8000
55
GRPC_PORT=8001
6+
# port for the consumer side of the queue, serves realtime (RT) endpoint
7+
CONSUMER_PORT=8002
68

79
RABBITMQ_URL=amqp://admin:adminpasswd@localhost:5672/%2f
810

app-server/Cargo.lock

Lines changed: 38 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app-server/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ serde = "1.0"
4545
serde_json = {version = "1.0.140", features = ["preserve_order"]}
4646
sha3 = "0.10.8"
4747
sodiumoxide = "0.2.7"
48-
sqlx = {version = "0.8", features = ["runtime-tokio", "postgres", "uuid", "json", "chrono", "bigdecimal"]}
48+
sqlx = {version = "0.8", features = ["runtime-tokio", "postgres", "uuid", "json", "chrono", "bigdecimal", "tls-rustls"]}
4949
thiserror = "2"
5050
tikv-jemallocator = "0.6"
5151
tokio = {version = "1.46", features = ["macros", "rt-multi-thread"]}
@@ -56,7 +56,7 @@ tracing = {version = "0.1.41", features = ["attributes"]}
5656
tracing-opentelemetry = "0.30.0"
5757
tracing-subscriber = {version = "0.3", features = ["env-filter", "fmt"]}
5858
url = "2.5.4"
59-
uuid = {version = "1.18.1", features = ["v4", "fast-rng", "macro-diagnostics", "serde"]}
59+
uuid = {version = "1.18.1", features = ["v4", "fast-rng", "macro-diagnostics", "serde", "v7", "std"]}
6060

6161
[build-dependencies]
6262
tonic-build = "0.13"

app-server/build.rs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
11
fn main() -> Result<(), Box<dyn std::error::Error>> {
2-
let proto_file = "./proto/agent_manager_grpc.proto";
3-
4-
tonic_build::configure()
5-
.protoc_arg("--experimental_allow_proto3_optional") // for older systems
6-
.build_client(true)
7-
.build_server(false)
8-
.out_dir("./src/agent_manager/")
9-
.compile_protos(&[proto_file], &["proto"])?;
10-
112
let query_engine_proto_file = "./proto/query_engine.proto";
123

134
tonic_build::configure()

0 commit comments

Comments
 (0)