Skip to content

Commit bd0a946

Browse files
committed
spellchecker + corrections
1 parent 3e56afe commit bd0a946

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+7410
-60
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ orphaned_pages.txt
3535
active_links.txt
3636
active_links.json
3737

38-
# Files used by scripts to autogenerate settings
38+
# Files used by scripts to autogenerate settings and do spellcheck
3939
FormatFactorySettingsDeclaration.h
4040
FormatFactorySettings.h
4141
Settings.cpp

docs/en/_snippets/_add_superset_detail.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Superset provides [installing Superset locally using Docker Compose](https://sup
66
There are a few tasks to be done before running `docker compose`:
77

88
1. Add the official ClickHouse Connect driver
9-
2. Optain a MapBox API key and add that as an environment variable (optional)
9+
2. Obtain a Mapbox API key and add that as an environment variable (optional)
1010
3. Specify the version of Superset to run
1111

1212
:::tip
@@ -21,11 +21,11 @@ To make the ClickHouse Connect driver available in the Superset deployment add i
2121
echo "clickhouse-connect" >> ./docker/requirements-local.txt
2222
```
2323

24-
## MapBox
24+
## Mapbox
2525

26-
This is optional, you can plot location data in Superset without a MapBox API key, but you will see a message telling you that you should add a key and the background image of the map will be missing (you will only see the data points and not the map background). MapBox provides a free tier if you would like to use it.
26+
This is optional, you can plot location data in Superset without a Mapbox API key, but you will see a message telling you that you should add a key and the background image of the map will be missing (you will only see the data points and not the map background). Mapbox provides a free tier if you would like to use it.
2727

28-
Some of the sample visualizations that the guides have you create use location, for example longitude and latitude, data. Superset includes support for MapBox maps. To use the MapBox visualizations you need a MapBox API key. Sign up for the [MapBox free tier](https://account.mapbox.com/auth/signup/), and generate an API key.
28+
Some of the sample visualizations that the guides have you create use location, for example longitude and latitude, data. Superset includes support for Mapbox maps. To use the Mapbox visualizations you need a Mapbox API key. Sign up for the [Mapbox free tier](https://account.mapbox.com/auth/signup/), and generate an API key.
2929

3030
Make the API key available to Superset:
3131

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
<details>
2+
<summary>Launch Apache Superset in Docker</summary>
3+
4+
Superset provides [installing Superset locally using Docker Compose](https://superset.apache.org/docs/installation/installing-superset-using-docker-compose/) instructions. After checking out the Apache Superset repo from GitHub you can run the latest development code, or a specific tag. We recommend release 2.0.0 as it is the latest release not marked as `pre-release`.
5+
6+
There are a few tasks to be done before running `docker compose`:
7+
8+
1. Add the official ClickHouse Connect driver
9+
2. Optain a Mapbox API key and add that as an environment variable (optional)
10+
3. Specify the version of Superset to run
11+
12+
:::tip
13+
The commands below are to be run from the top level of the GitHub repo, `superset`.
14+
:::
15+
16+
## Official ClickHouse Connect driver
17+
18+
To make the ClickHouse Connect driver available in the Superset deployment add it to the local requirements file:
19+
20+
```bash
21+
echo "clickhouse-connect" >> ./docker/requirements-local.txt
22+
```
23+
24+
## Mapbox
25+
26+
This is optional, you can plot location data in Superset without a Mapbox API key, but you will see a message telling you that you should add a key and the background image of the map will be missing (you will only see the data points and not the map background). Mapbox provides a free tier if you would like to use it.
27+
28+
Some of the sample visualizations that the guides have you create use location, for example longitude and latitude, data. Superset includes support for Mapbox maps. To use the Mapbox visualizations you need a Mapbox API key. Sign up for the [Mapbox free tier](https://account.mapbox.com/auth/signup/), and generate an API key.
29+
30+
Make the API key available to Superset:
31+
32+
```bash
33+
echo "MAPBOX_API_KEY=pk.SAMPLE-Use-your-key-instead" >> docker/.env-non-dev
34+
```
35+
36+
## Deploy Superset version 2.0.0
37+
38+
To deploy release 2.0.0 run:
39+
40+
```bash
41+
git checkout 2.0.0
42+
TAG=2.0.0 docker-compose -f docker-compose-non-dev.yml pull
43+
TAG=2.0.0 docker-compose -f docker-compose-non-dev.yml up
44+
```
45+
46+
</details>
47+

docs/en/_snippets/_gcp_regions.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
| Region | Service Attachment | Private DNS domain |
22
|--------------|-------------------------------------------------------------|------------------------------|
3-
|asia-southeast1| projects/dataplane-production/regions/asia-southeast1/serviceAttachments/production-asia-southeast1-clickhouse-cloud| asia-southeast1.p.gcp.clickhouse.cloud|
4-
|europe-west4| projects/dataplane-production/regions/europe-west4/serviceAttachments/production-europe-west4-clickhouse-cloud| europe-west4.p.gcp.clickhouse.cloud|
5-
|us-central1| projects/dataplane-production/regions/us-central1/serviceAttachments/production-us-central1-clickhouse-cloud| us-central1.p.gcp.clickhouse.cloud|
6-
|us-east1| projects/dataplane-production/regions/us-east1/serviceAttachments/production-us-east1-clickhouse-cloud| us-east1.p.gcp.clickhouse.cloud|
3+
|`asia-southeast1`| `projects/dataplane-production/regions/asia-southeast1/serviceAttachments/production-asia-southeast1-clickhouse-cloud`| `asia-southeast1.p.gcp.clickhouse.cloud`|
4+
|`europe-west4`| `projects/dataplane-production/regions/europe-west4/serviceAttachments/production-europe-west4-clickhouse-cloud`| `europe-west4.p.gcp.clickhouse.cloud` |
5+
|`us-central1`| `projects/dataplane-production/regions/us-central1/serviceAttachments/production-us-central1-clickhouse-cloud` | `us-central1.p.gcp.clickhouse.cloud` |
6+
|`us-east1`| `projects/dataplane-production/regions/us-east1/serviceAttachments/production-us-east1-clickhouse-cloud` | `us-east1.p.gcp.clickhouse.cloud` |
77

88

99

docs/en/about-us/adopters.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The following list of companies using ClickHouse and their success stories is as
1010

1111
<div class="adopters-table">
1212

13-
| Company | Industry | Usecase | Cluster Size | (Un)Compressed Data Size<abbr title="of single replica"><sup>\*</sup></abbr> | Reference |
13+
| Company | Industry | Use case | Cluster Size | (Un)Compressed Data Size<abbr title="of single replica"><sup>\*</sup></abbr> | Reference |
1414
|---------|----------|---------|--------------|------------------------------------------------------------------------------|-----------|
1515
| [1Flow](https://1flow.ai/) | Feedback automation | - ||| ClickHouse Cloud user |
1616
| [2gis](https://2gis.ru) | Maps | Monitoring ||| [Talk in Russian, July 2019](https://youtu.be/58sPkXfq6nw) |
@@ -24,10 +24,10 @@ The following list of companies using ClickHouse and their success stories is as
2424
| [AdScribe](http://www.adscribe.tv/) | Ads | TV Analytics ||| [A quote from CTO](https://altinity.com/24x7-support/) |
2525
| [Adapty](https://adapty.io/) | Subscription Analytics | Main product ||| [Twitter, November 2021](https://twitter.com/iwitaly/status/1462698148061659139) |
2626
| [Adevinta](https://www.adevinta.com/) | Software & Technology | Online Classifieds ||| [Blog, April 2023](https://clickhouse.com/blog/serving-real-time-analytics-across-marketplaces-at-adevinta) |
27-
| [Admiral](https://getadmiral.com/) | Martech | Engagement Management ||| [Webinar Slides, June 2020](https://altinity.com/presentations/2020/06/16/big-data-in-real-time-how-clickhouse-powers-admirals-visitor-relationships-for-publishers) |
27+
| [Admiral](https://getadmiral.com/) | MarTech | Engagement Management ||| [Webinar Slides, June 2020](https://altinity.com/presentations/2020/06/16/big-data-in-real-time-how-clickhouse-powers-admirals-visitor-relationships-for-publishers) |
2828
| [Admixer](https://admixer.com/) | Media & Entertainment | Ad Analytics ||| [Blog Post](https://clickhouse.com/blog/admixer-aggregates-over-1-billion-unique-users-a-day-using-clickhouse) |
2929
| [Aggregations.io](https://aggregations.io/) | Real-time analytics | Main product | - | - | [Twitter](https://twitter.com/jsneedles/status/1734606200199889282) |
30-
| [Ahrefs](https://ahrefs.com/) | SEO | Analytics | Main cluster is 100k+ CPU cores, 800TB RAM. | 110PB nvme storage, uncompressed data size on main cluster is 1EB. | [Job listing](https://ahrefs.com/jobs/data-scientist-search) |
30+
| [Ahrefs](https://ahrefs.com/) | SEO | Analytics | Main cluster is 100k+ CPU cores, 800TB RAM. | 110PB NVME storage, uncompressed data size on main cluster is 1EB. | [Job listing](https://ahrefs.com/jobs/data-scientist-search) |
3131
| [Airfold](https://www.airfold.co/) | API platform | Main Product | - | - | [Documentation](https://docs.airfold.co/workspace/pipes) |
3232
| [Aiven](https://aiven.io/) | Cloud data platform | Managed Service | - | - | [Blog post](https://aiven.io/blog/introduction-to-clickhouse) |
3333
| [Akamai](https://www.akamai.com/) | Software & Technology | CDN ||| [LinkedIn](https://www.linkedin.com/in/david-piatek-bb27368/) |
@@ -43,7 +43,7 @@ The following list of companies using ClickHouse and their success stories is as
4343
| [Android Hub](https://bestforandroid.com/) | Blogging, Analytics, Advertising data |||| [Official Website](https://bestforandroid.com/)|
4444
| [AnswerAI](https://www.answerai.co.uk/) | Software & Technology | AI Customer Support ||| [Twitter, May 2024](https://twitter.com/TomAnswerAi/status/1791062219678998880) |
4545
| [Anton](https://anton.tools/) | Software & Technology | Blockchain Indexer ||| [GitHub](https://github.com/tonindexer/anton) |
46-
| [Antrea](https://antrea.io/) | Software & Technology | Kubernets Network Security ||| [Documentation](https://antrea.io/docs/main/docs/network-flow-visibility/) |
46+
| [Antrea](https://antrea.io/) | Software & Technology | Kubernetes Network Security ||| [Documentation](https://antrea.io/docs/main/docs/network-flow-visibility/) |
4747
| [ApiRoad](https://apiroad.net/) | API marketplace | Analytics ||| [Blog post, November 2018, March 2020](https://pixeljets.com/blog/clickhouse-vs-elasticsearch/) |
4848
| [Apitally](https://apitally.io/) | Software & Technology | API Monitoring ||| [Twitter, March 2024](https://twitter.com/simongurcke/status/1766005582971170926) |
4949
| [Appsflyer](https://www.appsflyer.com) | Mobile analytics | Main product ||| [Talk in Russian, July 2019](https://www.youtube.com/watch?v=M3wbRlcpBbY) |
@@ -61,7 +61,7 @@ The following list of companies using ClickHouse and their success stories is as
6161
| [AzurGames](https://azurgames.com/) | Gaming | Analytics ||| [AWS Blog, Aug 2024](https://aws.amazon.com/blogs/gametech/azur-games-migrates-all-game-analytics-data-to-clickhouse-cloud-on-aws/) |
6262
| [B2Metric](https://b2metric.com/) | Marketing | Analytics ||| [ProductHunt, July 2023](https://www.producthunt.com/posts/b2metric-decision-intelligence?bc=1) |
6363
| [BIGO](https://www.bigo.sg/) | Video | Computing Platform ||| [Blog Article, August 2020](https://www.programmersought.com/article/44544895251/) |
64-
| [Badoo](https://badoo.com) | Dating | Timeseries || 1.6 mln events/sec (2018) | [Slides in Russian, December 2019](https://presentations.clickhouse.com/meetup38/forecast.pdf) |
64+
| [Badoo](https://badoo.com) | Dating | Time series || 1.6 mln events/sec (2018) | [Slides in Russian, December 2019](https://presentations.clickhouse.com/meetup38/forecast.pdf) |
6565
| [Baidu](https://www.baidu.com/) | Internet services | Data warehousing | - | - | [GitHub](https://github.com/ClickHouse/ClickHouse/pull/60361) |
6666
| [Baselime](https://baselime.io/) | Software & Technology | Observability for Serverless ||| [Official website](https://baselime.io/) |
6767
| [Basic RUM](https://www.basicrum.com/) | Software & Technology | Real User Monitoring ||| [Official website](https://www.basicrum.com/) |
@@ -74,11 +74,11 @@ The following list of companies using ClickHouse and their success stories is as
7474
| [Better Stack](https://betterstack.com/) | Cloud, SaaS | Log Management | - | - | [Official Website](https://betterstack.com/logtail) |
7575
| [BiliBili](https://www.bilibili.com/) | Video sharing |||| [Blog post, June 2021](https://chowdera.com/2021/06/20210622012241476b.html) |
7676
| [Binom](https://binom.org/) | Analytics | Website analytics ||| [Twitter, 2023](https://twitter.com/BinomTracker/status/1722948130948206940) |
77-
| [Bitquery](https://bitquery.io/) | Software & Technology | Blockchain Data Company ||| [HackerNews, December 2020](https://bitquery.io/blog/blockchain-intelligence-system) |
77+
| [Bitquery](https://bitquery.io/) | Software & Technology | Blockchain Data Company ||| [Hacker News, December 2020](https://bitquery.io/blog/blockchain-intelligence-system) |
7878
| [Bloomberg](https://www.bloomberg.com/) | Finance, Media | Monitoring ||| [Meetup Video, December 2022](https://www.youtube.com/watch?v=HmJTIrGyVls&list=PL0Z2YDlm0b3iNDUzpY1S3L_iV4nARda_U&index=9) [Slides, December 2022](https://github.com/ClickHouse/clickhouse-presentations/blob/master/meetup67/ClickHouse%20for%20Financial%20Analytics%20-%20Bloomberg.pdf) |
7979
| [Bloxy](https://bloxy.info) | Blockchain | Analytics ||| [Slides in Russian, August 2018](https://github.com/ClickHouse/clickhouse-presentations/blob/master/meetup17/4_bloxy.pptx) |
8080
| [Bonree](https://www.bonree.com/) | Software & Technology | Performance Monitoring & Observability ||| ClickHouse Meetup in Hangzhou, May 2024 |
81-
| [Bonside](https://www.bonside.com/) | FinTech | - ||| [HackerNews, July 2023](https://news.ycombinator.com/item?id=36619722) |
81+
| [Bonside](https://www.bonside.com/) | FinTech | - ||| [Hacker News, July 2023](https://news.ycombinator.com/item?id=36619722) |
8282
| [Botify](https://www.botify.com/) | SaaS | SEO ||| [Blog Article, September 2022](https://tech.marksblogg.com/billion-taxi-rides-doublecloud-clickhouse.html) |
8383
| [Braintrust](https://www.usebraintrust.com/) | Software & Technology | Real-time Analytics ||| [Written Blog from Meetup Video, July 2024](https://clickhouse.com/blog/building-better-ai-products-faster-how-braintrust-uses-clickhouse-for-real-time-data-analysis) |
8484
| [ByConity](https://byconity.github.io/)| Software & Technology | Big Data Analysis Engine ||| [GitHub](https://github.com/ByConity/ByConity) |
@@ -87,7 +87,7 @@ The following list of companies using ClickHouse and their success stories is as
8787
| [CERN](http://public.web.cern.ch/public/) | Research | Experiment ||| [Press release, April 2012](https://www.yandex.com/company/press_center/press_releases/2012/2012-04-10/) |
8888
| [CHEQ](https://cheq.ai/) | Software & Technology | GTM Security ||| [Meetup Video, January 2023](https://www.youtube.com/watch?v=rxIO6w4er3k&list=PL0Z2YDlm0b3iNDUzpY1S3L_iV4nARda_U&index=7) [Slides, January 2023](https://github.com/ClickHouse/clickhouse-presentations/blob/master/meetup68/ClickHouse%20Meetup%20-%20CHEQ.pptx.pdf) |
8989
| [Campaign Deputy](https://campaigndeputy.com/) | SaaS | Analytics, Logs ||| [Twitter, February 2023](https://twitter.com/joshabartley/status/1627669208074014721), [Tweet, July 2023](https://twitter.com/joshabartley/status/1677008728711651331) |
90-
| [Canopus Networks](https://canopusnetworks.com/) | AI for telcos | Real-time analytics | - | - | [Meetup Presentation](https://github.com/ClickHouse/clickhouse-presentations/blob/master/2024-meetup-sydney/Talk%20Track%201%20-%20Canopus%20Networks.pdf) |
90+
| [Canopus Networks](https://canopusnetworks.com/) | AI for Telecom | Real-time analytics | - | - | [Meetup Presentation](https://github.com/ClickHouse/clickhouse-presentations/blob/master/2024-meetup-sydney/Talk%20Track%201%20-%20Canopus%20Networks.pdf) |
9191
| [Capgo.app](https://capgo.app/) | App development | Real-time statistics | - | - | [Twitter](https://twitter.com/martindonadieu/status/1735728943406219736) |
9292
| [CardsMobile](https://cardsmobile.ru/) | Finance | Analytics ||| [VC.ru](https://vc.ru/s/cardsmobile/143449-rukovoditel-gruppy-analiza-dannyh) |
9393
| [Castle](https://castle.io/) | Fraud Detection | Main product ||| [Community Slack](https://clickhouse.com/slack) |

0 commit comments

Comments
 (0)