Skip to content

Commit

Permalink
Merge pull request #5361 from BohuTANG/doc-azblob-config
Browse files Browse the repository at this point in the history
chore(doc): Add azblob config and title
  • Loading branch information
BohuTANG authored May 13, 2022
2 parents bd17e61 + cccbd7f commit 1923a1b
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

Databend is an open-source **Elastic** and **Workload-Aware** Modern Cloud Data Warehouse.

Databend uses the latest techniques in vectorized query processing to allow you to do blazing-fast data analytics on Object Storage.
Databend uses the latest techniques in vectorized query processing to allow you to do blazing-fast data analytics on Object Storage(MinIO, Amazon S3, Azure Blob Storage).

- __Instant Elasticity__

Expand Down
31 changes: 30 additions & 1 deletion docs/doc/50-manage/01-query/10-query-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ You can explore more flags with `./databend-query -h`.

### type

* Which storage type(Only support `"fs"` or `"s3"`) should use for the databend-query, e.g., `"s3"`.
* Which storage type(Must one of `"fs"` | `"s3"` | `"azblob"`) should use for the databend-query, e.g., `"s3"`.
* Default: `""`
* Env variable: `STORAGE_TYPE`
* Required.
Expand Down Expand Up @@ -140,6 +140,35 @@ You can explore more flags with `./databend-query -h`.
* Env variable: `STORAGE_S3SECRET_ACCESS_KEY`
* Required.

### storage.azblob

#### endpoint_url

* Azure Blob Storage endpoint URL, e.g., `"https://<your-storage-account-name>.blob.core.windows.net"`.
* Default: `""`
* Env variable: `STORAGE_AZBLOB_ENDPOINT_URL`
* Required.

#### container

* Azure Blob Storage container name.
* Default: `""`
* Env variable: `STORAGE_AZBLOB_CONTAINER`
* Required.

#### account_name

* Azure Blob Storage account name.
* Default: `""`
* Env variable: `STORAGE_AZBLOB_ACCOUNT_NAME`
* Required.

#### account_key

* Azure Blob Storage account key.
* Default: `""`
* Env variable: `STORAGE_AZBLOB_ACCOUNT_KEY`
* Required.

## A Toml File Demo

Expand Down
2 changes: 1 addition & 1 deletion website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const darkCodeTheme = require('prism-react-renderer/themes/dracula');
/** @type {import('@docusaurus/types').Config} */
const config = {
title: 'Databend',
tagline: 'The modern Cloud Data Warehouse, activate your Object Storage for sub-second analytics.',
tagline: 'The modern Cloud Data Warehouse, activate your Object Storage(MinIO, S3, Azure Blob Storage) for real-time analytics.',
url: 'https://databend.rs',
baseUrl: '/',
onBrokenLinks: 'throw',
Expand Down
4 changes: 2 additions & 2 deletions website/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ export default function Home(): JSX.Element {
const {siteConfig} = useDocusaurusContext();
return (
<Layout
title={`Databend - Activate your Object Storage for sub-second analytics`}
description={`A modern Elasticity and Performance Cloud Data Warehouse, activate your Object Storage for sub-second analytics`}>
title={`Databend - Activate your Object Storage for real-time analytics`}
description={`A modern Elasticity and Performance Cloud Data Warehouse, activate your Object Storage(MinIO, Amazon S3, Azure Blob Storage) for real-time analytics`}>
<HomepageHeader/>
</Layout>
);
Expand Down

1 comment on commit 1923a1b

@vercel
Copy link

@vercel vercel bot commented on 1923a1b May 13, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

databend – ./

databend-git-main-databend.vercel.app
databend.vercel.app
databend-databend.vercel.app
databend.rs

Please sign in to comment.