Aleksandr Zakharchenko
08/10/2026, 2:24 PMMohan
08/10/2026, 5:26 PMMohan
08/10/2026, 6:00 PMAleksandr Zakharchenko
08/10/2026, 8:47 PMKev
08/11/2026, 12:43 AMZurab Kiknavelidze
08/11/2026, 9:55 AMFrancisco Silva
08/11/2026, 10:29 AMSlackbot
08/11/2026, 1:43 PMLý Thành
08/11/2026, 2:24 PMbi_top_24h_pct_tbl (
symbol *varchar*(20) NOT NULL COMMENT "Trading pair, e.g. BICOUSDT",
sys_run_date date NULL DEFAULT (*CURRENT_DATE*()) COMMENT "",
fetched_at datetime NULL DEFAULT CURRENT_TIMESTAMP COMMENT "Row ingestion time",
open_time datetime NULL COMMENT "Stats window open time",
close_time datetime NULL COMMENT "Stats window close time",
open_price *decimal*(24, 8) NULL COMMENT "",
high_price *decimal*(24, 8) NULL COMMENT "",
low_price *decimal*(24, 8) NULL COMMENT "",
last_price *decimal*(24, 8) NULL COMMENT "",
last_qty *decimal*(24, 8) NULL COMMENT "",
price_change *decimal*(24, 8) NULL COMMENT "",
price_change_percent *decimal*(10, 4) NULL COMMENT "",
weighted_avg_price *decimal*(24, 8) NULL COMMENT "",
volume *decimal*(30, 8) NULL COMMENT "Base asset volume",
quote_volume *decimal*(30, 8) NULL COMMENT "Quote asset volume",
count *bigint*(20) NULL COMMENT "Number of trades",
first_id *bigint*(20) NULL COMMENT "",
last_id *bigint*(20) NULL COMMENT ""
) ENGINE=OLAP
PRIMARY *KEY*(symbol, sys_run_date)
PARTITION BY date_trunc('day', sys_run_date)
DISTRIBUTED BY HASH(symbol) BUCKETS 1
PROPERTIES (
"compression" = "LZ4",
"fast_schema_evolution" = "true",
"partition_live_number" = "5",
"replicated_storage" = "true",
"replication_num" = "2"
);Subramaniam Sethurathinam
08/11/2026, 3:52 PMAleksandr Zakharchenko
08/11/2026, 6:14 PMtable_a (
id_1 varchar(1073741824) DEFAULT NULL,
id_2 varchar(1073741824) DEFAULT NULL,
attribute_1 varchar(1073741824) DEFAULT NULL,
status_value varchar(1073741824) DEFAULT NULL,
status_reason varchar(1073741824) DEFAULT NULL,
payload_data varchar(1073741824) DEFAULT NULL,
timestamp_epoch bigint(20) DEFAULT NULL,
timestamp_utc datetime DEFAULT NULL,
customer_id int(11) DEFAULT NULL,
location_id int(11) DEFAULT NULL
)
PARTITION BY (day(timestamp_utc))
PROPERTIES (
"write.format.default" = "PARQUET",
"location" = "s3a://<storage-path>/<container>/table_a",
"write.parquet.compression-codec" = "zstd"
);
I want to create an ASYNC partitioned materialized view in StarRocks that is doing SELECT * from this table. How do I do it?tiwata
08/12/2026, 12:24 AM/api/health shows http 200/Status OK when there are no active BEs and total_backend_num=0 (meaning no queries can be processed), I don't think this is sufficient.tiwata
08/12/2026, 12:59 AMJerry Zhu
08/12/2026, 2:49 AMMinn Fong
08/12/2026, 3:21 AMJunhyeog Lee
08/12/2026, 4:36 AMOutputFullTime / WaitWriteTime). Increasing pipeline_dop improved initial throughput, but increasing flush_thread_num_per_store did not help and may have made it slightly worse.
Could this be caused by MemTable/segment-writer backpressure, page-cache writeback, or storage sync latency? What metrics or configuration would you recommend checking to improve sustained load throughput and keep disk utilization more consistent?Dhruv
08/12/2026, 10:59 AMZurab Kiknavelidze
08/12/2026, 11:11 AMMohan
08/12/2026, 12:12 PMZurab Kiknavelidze
08/12/2026, 12:48 PMAleksandr Zakharchenko
08/12/2026, 1:36 PMGetting analyzing error. Detail message: RepoExecutorexecute sql failed: WITH MaxStartRunID AS ( SELECT task_name, cast(history_content_json->'startTaskRunId' as string) start_run_id FROM _statistics_.task_run_history WHERE (task_name, create_time) IN ( SELECT task_name, MAX(create_time) FROM _statistics_.task_run_history WHERE TRUE AND get_json_string(history_content_json, 'dbName') = 'default_cluster:test_db' AND task_name IN ('mv-10171','mv-10214','mv-10256','mv-10301') GROUP BY task_name ) ) SELECT t.history_content_json FROM _statistics_.task_run_history t JOIN MaxStartRunID msr ON t.task_name = msr.task_name AND cast(t.history_content_json->'startTaskRunId' as string) = msr.start_run_id ORDER BY t.create_time DESC.Mohan
08/12/2026, 8:19 PMMohan
08/12/2026, 9:17 PMPratik Kumar Kothari
08/13/2026, 6:36 AMSanthosh Vijayakumar
08/13/2026, 6:56 AMSơn Bùi
08/13/2026, 9:02 AMLý Thành
08/13/2026, 9:38 AMmohammad atif
08/13/2026, 11:00 AMDhruv
08/13/2026, 12:22 PMShiv Kumar
08/13/2026, 1:07 PMenable_query_history global variable. So basically my usecase is query monitoring like what all queries ran, errors, error reasons, etc. Also profiling for big queries