11 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
77
views
ADBC Flight SQL query on StarRocks database drops column names
I am using the ADBC Flight SQL driver to query a StarRocks database. This works well (and is insanely fast) when the query is a SELECT on a single table. But as soon as I add a JOIN to the query, all ...
0
votes
0
answers
78
views
Flink SQL Job: com.starrocks.data.load.stream.exception.StreamLoadFailException: Could not get load state because
I'm encountering a Flink job failure and would appreciate any input on what might be misconfigured:
2025‐07‐28 17:30:52
org.apache.flink.runtime.JobException: Recovery is suppressed by ...
1
vote
1
answer
74
views
How to run ALTER TABLE to SET a property on all tables from a database
I want to create either a SQL function/procedure or just a SQL statement to ALTER TABLE all base tables in a StarRocks/MySQL database with SET ("property_name" = "properly_value").
...
0
votes
0
answers
76
views
Update materialized view with latest s3 file starrocks
So with starrocks I have a pipe that looks for new files in my s3 bucket, now I would like to have this file in a temporary table which would get overwritten with the latest file that lands in my s3 ...
-1
votes
1
answer
95
views
curl -T golang equivalent to be used in Starrocks
I need to use transcript curl expression to Golang, however when I try to convert
curl --location-trusted -u <username>:<password> -H "label:123" \ -H "Expect:100-...
1
vote
0
answers
109
views
flink syncs mysql to starrocks
Here's the background:
StarRocks 3.1.2, Flink 1.16, flink-sql-connection-mysql-cdc-2.2.0.jar, flink-connector-starrocks-1.2.9_flink-1.16.jar
Mysql5.7.4 enabled binlog
sql is as follows:
CREATE TABLE ...
0
votes
1
answer
105
views
Dynamodb to starrocks etl
I need to etl a set of tables from DynamoDB to StarRocks. Has anyone used the StarRocks Load tool to accomplish this? If so, can you share how?
Second related question: some of the tables are very ...
1
vote
0
answers
428
views
StarRocks - error in creating a database and table
We are using below query to add the table in the starrocks: -
CREATE DATABASE IF NOT EXISTS `DataSync`;
CREATE TABLE IF NOT EXISTS `DataSync`.`Person` (
`PersonID` INT NOT NULL COMMENT ""...
1
vote
1
answer
323
views
StarRocks Does not read the hdfs correctly by hdfs-site.xml & core-site.xml
I start a hive with spark thriftserver and set the hdfs as the storage.
And I copied the hdfs-site.xml and core-site.xml
core-site.xml
<?xml version="1.0" encoding="UTF-8"?>
...
2
votes
1
answer
448
views
Fail to build StarRocks FE [duplicate]
When I was trying to build StarRocks on my Mac, I met an error. Following is error messaging
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ...
0
votes
1
answer
146
views
Convert column to bitmap/HLL during kafka routine loading to StarRocks
I intend to do count distinct in SR, and noticed columns can be converted to bitmap or HLL during loading. But I only find the transformation during stream load and broker load, is there any way to ...