-
Notifications
You must be signed in to change notification settings - Fork 297
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/kafka2' into kafka2
- Loading branch information
Showing
32 changed files
with
337 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
slug: /en/manage/security/compliance-and-certification | ||
sidebar_label: Compliance and Certification | ||
title: Compliance and Certification | ||
--- | ||
|
||
# Compliance and Certification | ||
|
||
ClickHouse Cloud adheres to the following compliance frameworks: | ||
- [SOC 2](https://secureframe.com/hub/soc-2/what-is-soc-2) | ||
- [ISO 27001](https://www.iso.org/standard/27001) | ||
- [GDPR](https://gdpr-info.eu/) | ||
- [CCPA](https://oag.ca.gov/privacy/ccpa) | ||
|
||
We also provide a secure method to pay by credit card that is compliant with [PCI SAQ A v4.0](https://www.pcisecuritystandards.org/document_library/). | ||
|
||
To download detailed reports, please see our [Trust Center](https://trust.clickhouse.com/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,10 +22,15 @@ Let's verify it worked - you should see the four rows of data that were inserted | |
SELECT * FROM helloworld.my_first_table | ||
``` | ||
|
||
:::tip | ||
Insert a large number of rows per batch - tens of thousands or even millions of rows at once. Don't worry - ClickHouse can easily handle that type of volume! | ||
:::note Need help inserting large datasets? | ||
If you need help inserting large datasets or encounter any errors when importing data into ClickHouse Cloud, please contact us at [email protected] and we can assist. | ||
::: | ||
|
||
|
||
## Insert large batches | ||
|
||
Insert a large number of rows per batch - tens of thousands or even millions of rows at once. Inserting in batches optimizes for insert performance. Don't worry - ClickHouse can easily handle that type of volume! | ||
|
||
:::tip | ||
If you can not insert a lot of rows at once and you are using an HTTP client, use the [`async_insert` setting](../operations/settings/settings.md#async-insert), which batches your smaller inserts before inserting them into the table. | ||
::: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
docs/en/integrations/data-ingestion/kafka/confluent/index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
sidebar_label: Confluent Platform | ||
sidebar_position: 1 | ||
slug: /en/integrations/kafka/cloud/confluent | ||
description: Kafka Connectivity with Confluent Cloud | ||
--- | ||
|
||
# Integrating Confluent Cloud with ClickHouse | ||
|
||
Confluent platform provides two options to integration with ClickHouse | ||
|
||
* [ClickHouse Connect Sink on Confluent Cloud](./custom-connector.md) using the custom connectors feature | ||
* [HTTP Sink Connector for Confluent Platform](./kafka-connect-http.md) that integrates Apache Kafka with an API via HTTP or HTTPS |
Oops, something went wrong.