{"id":29490212,"url":"https://github.com/apache/doris-sdk","last_synced_at":"2025-09-07T00:33:51.983Z","repository":{"id":161641700,"uuid":"636304767","full_name":"apache/doris-sdk","owner":"apache","description":"SDK for Apache Doris","archived":false,"fork":false,"pushed_at":"2024-04-07T02:47:21.000Z","size":36,"stargazers_count":8,"open_issues_count":0,"forks_count":7,"subscribers_count":35,"default_branch":"main","last_synced_at":"2025-09-04T00:47:10.183Z","etag":null,"topics":["bigquery","database","dbt","delta-lake","elt","etl","hadoop","hive","hudi","iceberg","lakehouse","olap","query-engine","real-time","redshift","snowflake","spark","sql"],"latest_commit_sha":null,"homepage":"https://doris.apache.org","language":"Thrift","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/apache.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGE-LOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-05-04T14:46:14.000Z","updated_at":"2025-03-25T03:09:26.000Z","dependencies_parsed_at":"2025-04-17T13:59:14.187Z","dependency_job_id":"3d39b391-fe17-4218-8bd4-8284f0131ddc","html_url":"https://github.com/apache/doris-sdk","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/apache/doris-sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fdoris-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fdoris-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fdoris-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fdoris-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/apache","download_url":"https://codeload.github.com/apache/doris-sdk/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fdoris-sdk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273983018,"owners_count":25202092,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-06T02:00:13.247Z","response_time":2576,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bigquery","database","dbt","delta-lake","elt","etl","hadoop","hive","hudi","iceberg","lakehouse","olap","query-engine","real-time","redshift","snowflake","spark","sql"],"created_at":"2025-07-15T12:01:02.202Z","updated_at":"2025-09-07T00:33:51.944Z","avatar_url":"https://github.com/apache.png","language":"Thrift","readme":"\u003c!--\nLicensed to the Apache Software Foundation (ASF) under one\nor more contributor license agreements.  See the NOTICE file\ndistributed with this work for additional information\nregarding copyright ownership.  The ASF licenses this file\nto you under the Apache License, Version 2.0 (the\n\"License\"); you may not use this file except in compliance\nwith the License.  You may obtain a copy of the License at\n\n  http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing,\nsoftware distributed under the License is distributed on an\n\"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\nKIND, either express or implied.  See the License for the\nspecific language governing permissions and limitations\nunder the License.\n--\u003e\n\n# Doris SDK\n\nThis repository contains the sdk for the [Apache Doris](https://doris.apache.org) project.\n\n## Build and Install\n\nReady to work\n\n1.Modify the `custom_env.sh.tpl` file and rename it to `custom_env.sh`\n\n2.Specify the thrift installation directory\n\n```bash\n##source file content\n#export THRIFT_BIN=\n#export MVN_BIN=\n#export JAVA_HOME=\n\n##amend as below,MacOS as an example\nexport THRIFT_BIN=/opt/homebrew/Cellar/thrift@0.16.0/0.16.0/bin/thrift\nexport MVN_BIN=/opt/homebrew/Cellar/maven/3.9.0/bin/mvn\nexport JAVA_HOME=/Library/Java/JavaVirtualMachines/zulu-8.jdk/Contents/Home\n```\n\nInstall `thrift` 0.16.0\n\nWindows:\n```bash\n  1. Download: `http://archive.apache.org/dist/thrift/0.16.0/thrift-0.16.0.exe`\n  2. Modify thrift-0.16.0.exe to thrift.exe\n```\n\nMacOS:\n```bash\n   brew install thrift@0.16.0\n```\n\nNote: Executing `brew install thrift@0.16.0` on MacOS may report an error that the version cannot be found. The solution is as follows, execute it in the terminal:\n```bash\n  1. brew tap-new $USER/local-tap\n  2. brew extract --version='0.16.0' thrift $USER/local-tap\n  3. brew install thrift@0.16.0\n```\n\nLinux:\n```bash\n  1. wget https://archive.apache.org/dist/thrift/0.16.0/thrift-0.16.0.tar.gz  # Download source package\n  2. yum install -y autoconf automake libtool cmake ncurses-devel openssl-devel lzo-devel zlib-devel gcc gcc-c++  # Install dependencies\n  3. tar zxvf thrift-0.16.0.tar.gz\n  4. cd thrift-0.16.0\n  5. ./configure --without-tests\n  6. make\n  7. make install\n  8. thrift --version  # Check the version after installation is complete\n```\nNote: If you have compiled Doris, you do not need to install thrift, you can directly use `$DORIS_HOME/thirdparty/installed/bin/thrift`\n\nExecute following command in `thrift-service` dir:\n```bash\n  sh build.sh\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapache%2Fdoris-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapache%2Fdoris-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapache%2Fdoris-sdk/lists"}