Go to file
Dan Roscigno a2b3245a4a
[Doc] update markdownlint for new version (#46037)
Signed-off-by: DanRoscigno <dan@roscigno.com>
2024-05-21 21:37:09 -04:00
.github [Tool] Fix inspection pipeline (#45257) 2024-05-08 11:14:24 +08:00
be [Enhancement] Optimize memory usage calculation in LakePersistentIndex (#44769) 2024-05-21 17:32:08 +08:00
bin [Tool] fix meta_tool.sh (#45587) 2024-05-15 18:19:21 +08:00
build-support [Enhancement] Add build host distributor into FE/BE version info (#41265) 2024-02-29 08:34:15 +08:00
community [Doc] Update membership.md (#31231) 2023-11-09 09:06:20 -08:00
conf [Enhancement] Using separate memtable flush executor for shared-data mode (#44535) 2024-04-28 12:44:59 +08:00
contrib [Refactor] removing airbyte and dbt connector from main repo and moving it into a dedicated repo (#42456) 2024-03-12 15:05:01 +08:00
docker [Enhancement] release staros v3.3-rc1 (#45446) 2024-05-13 10:44:00 +08:00
docs [Doc] update markdownlint for new version (#46037) 2024-05-21 21:37:09 -04:00
extra/grafana/kubernetes [Doc] Add Datasource variable to dashboard, and user can choose different datasources (#42739) 2024-03-18 15:48:17 +08:00
fe [Enhancement] adjust MV's warehouse logic (#45941) 2024-05-21 09:19:33 -07:00
fs_brokers/apache_hdfs_broker [Enhancement] Improve kerberos tmp keytab file permission (#40572) 2024-02-04 10:36:05 +08:00
gensrc [Enhancement] Add session variables to enable/disable late materialized join (#44534) 2024-05-20 14:36:32 +08:00
images Add shared-data architecture doc (#22865) 2023-05-05 17:30:21 +08:00
java-extensions [Enhancement] Bump FE/BE's hadoop to 3.4.0 (#45312) 2024-05-16 14:40:26 +08:00
licenses
licenses-binary [Doc] Add license for oracle jdbc catalog (#45464) 2024-05-11 13:01:01 +08:00
test [BugFix] Fix the bug that partition by range(str2date) does not support delete (#45939) 2024-05-21 16:17:30 +08:00
thirdparty [Enhancement] Bump Hadoop to 3.4.0 in thirdparty (#45724) 2024-05-16 20:56:15 +08:00
tools [Tool] Add diagnostics.sql script for troubleshooting (#28428) 2023-08-02 14:00:14 +08:00
webroot Add a download button in the query UI (#22153) 2023-04-21 19:12:16 +08:00
.clang-format [Tool] Remove duplicate lines in .clang-format (#28174) 2023-07-28 15:02:24 +08:00
.clang-tidy [Feature] upgrade c++17 to c++20 (#26432) 2023-07-17 03:48:12 +00:00
.dockerignore [Enhancement] refactor allin1 image (#28240) 2023-07-31 16:16:24 +08:00
.gitignore [UT] remove setting session variables have not been added (#43936) 2024-04-11 21:30:20 +08:00
.mergify.yml [Tool] Mergify: configuration update to allow comment from github-actions (#33491) 2023-10-23 08:34:57 -05:00
CODE_OF_CONDUCT.md
CONTRIBUTING.md [Doc] Fix broken link in CONTRIBUTING.md (#40314) 2024-01-30 15:27:56 +08:00
LICENSE.txt
NOTICE.txt
README.md Update README.md 2024-01-21 10:20:57 +08:00
SECURITY.md [INF] Add security policy (#34617) 2023-11-08 10:47:16 -08:00
build.sh [Enhancement] Bump FE/BE's hadoop to 3.4.0 (#45312) 2024-05-16 14:40:26 +08:00
codecov.yml [Tool] Cov split BE/FE by flags (#29855) 2023-08-24 13:52:54 +08:00
env.sh [BugFix] enhance env.sh parsing jdk11 version (#35638) 2023-11-23 14:04:02 +08:00
run-be-ut.sh [Enhancement] Add `without-starcache` build option to control whether build with starcache library. (#40599) 2024-04-25 09:47:05 +08:00
run-fe-ut.sh [Tool] Upload BE UT log (#31397) 2023-09-20 09:37:14 +08:00

README.md

Download | Docs | Benchmarks | Demo

JAVA&C++ Commit Activities Open Issues Website Slack Twitter

StarRocks, a Linux Foundation project, is the next-generation data platform designed to make data-intensive real-time analytics fast and easy. It delivers query speeds 5 to 10 times faster than other popular solutions. StarRocks can perform real-time analytics well while updating historical records. It can also enhance real-time analytics with historical data from data lakes easily. With StarRocks, you can get rid of the de-normalized tables and get the best performance and flexibility.

Learn more 👉🏻 Introduction to StarRocks



Features

  • 🚀 Native vectorized SQL engine: StarRocks adopts vectorization technology to make full use of the parallel computing power of CPU, achieving sub-second query returns in multi-dimensional analyses, which is 5 to 10 times faster than previous systems.
  • 📊 Standard SQL: StarRocks supports ANSI SQL syntax (fully supported TPC-H and TPC-DS). It is also compatible with the MySQL protocol. Various clients and BI software can be used to access StarRocks.
  • 💡 Smart query optimization: StarRocks can optimize complex queries through CBO (Cost Based Optimizer). With a better execution plan, the data analysis efficiency will be greatly improved.
  • Real-time update: The updated model of StarRocks can perform upsert/delete operations according to the primary key, and achieve efficient query while concurrent updates.
  • 🪟 Intelligent materialized view: The materialized view of StarRocks can be automatically updated during the data import and automatically selected when the query is executed.
  • Querying data in data lakes directly: StarRocks allows direct access to data from Apache Hive™, Apache Iceberg™, and Apache Hudi™ without importing.
  • 🎛️ Resource management: This feature allows StarRocks to limit resource consumption for queries and implement isolation and efficient use of resources among tenants in the same cluster.
  • 💠 Easy to maintain: Simple architecture makes StarRocks easy to deploy, maintain and scale out. StarRocks tunes its query plan agilely, balances the resources when the cluster is scaled in or out, and recovers the data replica under node failure automatically.

Architecture Overview

StarRockss streamlined architecture is mainly composed of two modules: Frontend (FE) and Backend (BE). The entire system eliminates single points of failure through seamless and horizontal scaling of FE and BE, as well as replication of metadata and data.

Starting from version 3.0, StarRocks supports a new shared-data architecture, which can provide better scalability and lower costs.


Resources

📚 Read the docs

Section Description
Deploy Learn how to run and configure StarRocks.
Articles How-tos, Tutorials, Best Practices and Architecture Articles.
Docs Full documentation.
Blogs StarRocks deep dive and user stories.

Get support


Contributing to StarRocks

We welcome all kinds of contributions from the community, individuals and partners. We owe our success to your active involvement.

  1. See Contributing.md to get started.
  2. Set up StarRocks development environment:
  1. Understand our GitHub workflow for opening a pull request; use this PR Template when submitting a pull request.
  2. Pick a good first issue and start contributing.

📝 License: StarRocks is licensed under Apache License 2.0.

👥 Community Membership: Learn more about different contributor roles in StarRocks community.


Used By

This project is used by the following companies. Learn more about their use cases: