This repository has been archived by the owner on Jan 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy path_toc.yml
1411 lines (1366 loc) · 67.6 KB
/
_toc.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
root: index
defaults:
maxdepth: 1
entries:
# -------- GET STARTED --------
- file: docs/get-started
title: Get started
entries:
- file: docs/platform/concepts/free-plan
- file: docs/platform/concepts/free-trial
- file: docs/marketplace-setup
entries:
- file: docs/platform/howto/billing-aws-marketplace-subscription
title: Set up AWS Marketplace subscriptions
- file: docs/platform/howto/billing-azure-marketplace-subscription
title: Set up Azure Marketplace subscriptions
- file: docs/platform/howto/billing-google-cloud-platform-marketplace-subscription
title: Set up Google Cloud Marketplace subscriptions
- file: docs/tools/aiven-console
- file: docs/platform/concepts/beta_services
- file: docs/platform/howto/feature-preview
# -------- ORGANIZATIONS, UNITS, PROJECTS --------
- file: docs/platform/howto/list-account
entries:
- file: docs/platform/concepts/projects_accounts_access
- file: docs/tools/aiven-console/howto/create-accounts
- file: docs/platform/howto/manage-organizations
- file: docs/platform/howto/manage-project
- file: docs/platform/reference/project-member-privileges
- file: docs/platform/howto/manage-unassigned-projects
# -------- BILLING --------
- file: docs/platform/concepts/list-billing
title: Billing and payments
entries:
- file: docs/platform/concepts/hourly-billing-model
- file: docs/platform/concepts/corporate-billing
- file: docs/platform/concepts/tax-information
- file: docs/platform/howto/update-tax-status
- file: docs/platform/howto/list-billing
title: Payment methods
entries:
- file: docs/platform/howto/manage-payment-card
- file: docs/platform/howto/list-marketplace-payments
title: Marketplace subscriptions
entries:
- file: docs/platform/howto/move-to-aws-marketplace-billing
title: Move to AWS Marketplace
- file: docs/platform/howto/move-to-azure-marketplace-billing
title: Move to Azure Marketplace
- file: docs/platform/howto/move-to-gcp-marketplace-billing
title: Move to Google Cloud Marketplace
- file: docs/platform/howto/list-billing-groups
title: Billing groups
entries:
- file: docs/platform/concepts/billing-groups
title: Billing groups overview
- file: docs/platform/howto/create-billing-groups
- file: docs/platform/howto/use-billing-groups
- file: docs/platform/howto/billing-assign-projects
- file: docs/platform/howto/change-billing-contact
- file: docs/platform/howto/payment-issues-plan-upgrades
title: Payment problems when upgrading
- file: docs/platform/howto/custom-plans
# -------- USERS AND ACCESS --------
- file: docs/platform/howto/list-user
title: User and access management
entries:
- file: docs/platform/howto/manage-org-users
title: Invite and remove organization users
- file: docs/platform/concepts/managed-users
- file: docs/platform/howto/manage-domains
- file: docs/platform/howto/delete-user
- file: docs/platform/howto/make-super-admin
- file: docs/platform/howto/list-user-profile
entries:
- file: docs/platform/howto/edit-user-profile
- file: docs/platform/howto/change-your-email-address
- file: docs/platform/howto/list-authentication
entries:
- file: docs/platform/howto/add-authentication-method
- file: docs/platform/reference/password-policy
- file: docs/platform/howto/user-2fa
- file: docs/platform/howto/set-authentication-policies
title: Set authentication policies
- file: docs/platform/concepts/authentication-tokens
- file: docs/platform/howto/create_authentication_token
- file: docs/platform/howto/list-identity-providers
title: Identity providers
entries:
- file: docs/platform/howto/saml/add-identity-providers
- file: docs/platform/howto/saml/add-auth0-idp
- file: docs/platform/howto/saml/add-azure-idp
- file: docs/platform/howto/saml/add-fusionauth-idp
- file: docs/platform/howto/saml/add-jumpcloud-idp
- file: docs/platform/howto/saml/add-okta-idp
- file: docs/platform/howto/saml/add-onelogin-idp
- file: docs/platform/howto/saml/add-google-idp
- file: docs/platform/howto/list-groups
entries:
- file: docs/platform/howto/manage-groups
title: Create and manage groups
- file: docs/platform/howto/add-groups-projects
- file: docs/tools/aiven-console/howto/create-manage-teams
- file: docs/platform/howto/technical-emails
- file: docs/platform/howto/reactivate-suspended-project
# -------- SERVICE MANAGEMENT --------
- file: docs/platform/howto/list-service
title: Service management
entries:
- file: docs/platform/concepts/choosing-timeseries-database
- file: docs/platform/howto/create_new_service
- file: docs/platform/howto/rename-a-service.rst
- file: docs/platform/howto/tag-resources
- file: docs/platform/howto/search-services
title: Search for services
- file: docs/platform/howto/recover-a-deleted-service
- file: docs/platform/howto/create_new_service_user
- file: docs/platform/concepts/service-forking
- file: docs/platform/howto/console-fork-service.rst
- file: docs/platform/concepts/service_backups
- file: docs/platform/concepts/service-power-cycle
- file: docs/platform/howto/pause-from-cli.rst
- file: docs/platform/concepts/service-resources
- file: docs/platform/concepts/service-memory-limits
- file: docs/platform/concepts/out-of-memory-conditions
- file: docs/platform/howto/prepare-for-high-load
- file: docs/platform/howto/scale-services
- file: docs/platform/concepts/dynamic-disk-sizing
- file: docs/platform/howto/disk-autoscaler
title: Disk autoscaling
- file: docs/platform/howto/cleanup-powered-off-services
- file: docs/platform/howto/add-storage-space
- file: docs/platform/howto/access-service-logs
- file: docs/platform/howto/service-metrics
- file: docs/platform/howto/migrate-services-cloud-region
- file: docs/platform/howto/migrate-services-vpc
- file: docs/platform/reference/eol-for-major-versions
- file: docs/platform/concepts/maintenance-window
# -------- NETWORKING AND SECURITY --------
- file: docs/platform/howto/list-network
title: Networking and security
entries:
- file: docs/platform/reference/list_of_clouds
- file: docs/platform/concepts/availability-zones
- file: docs/platform/howto/list-byoc
title: Bring your own cloud (BYOC)
entries:
- file: docs/platform/concepts/byoc
title: About BYOC
- file: docs/platform/howto/byoc/enable-byoc
title: Enable BYOC
- file: docs/platform/howto/byoc/create-custom-cloud
title: Create custom cloud
- file: docs/platform/howto/byoc/assign-project-custom-cloud
title: Attach projects
- file: docs/platform/howto/byoc/add-customer-info-custom-cloud
title: Add customer contacts
- file: docs/platform/howto/byoc/rename-custom-cloud
title: Rename custom cloud
- file: docs/platform/howto/byoc/delete-custom-cloud
title: Delete custom cloud
- file: docs/platform/concepts/enhanced-compliance-env
- file: docs/platform/concepts/aiven-node-firewall-configuration
- file: docs/platform/concepts/cloud-security
- file: docs/platform/concepts/disaster-recovery-test-scenarios
- file: docs/platform/concepts/tls-ssl-certificates
- file: docs/platform/howto/download-ca-cert
- file: docs/platform/howto/restrict-access
- file: docs/platform/howto/public-access-in-vpc.rst
- file: docs/platform/concepts/static-ips
- file: docs/platform/reference/service-ip-address
- file: docs/platform/howto/static-ip-addresses.rst
- file: docs/platform/howto/private-ip-resolution.rst
- file: docs/platform/howto/attach-vpc-aws-tgw
- file: docs/platform/howto/manage-vpc-peering
- file: docs/platform/howto/vpc-peering-gcp
- file: docs/platform/howto/vpc-peering-aws
- file: docs/platform/howto/vnet-peering-azure
- file: docs/platform/howto/vpc-peering-upcloud
- file: docs/platform/howto/use-aws-privatelinks.rst
- file: docs/platform/howto/use-azure-privatelink
- file: docs/platform/howto/use-google-private-service-connect
# -------- MONITORING AND LOGS --------
- file: docs/platform/howto/list-monitoring
entries:
- file: docs/platform/howto/monitoring-services
- file: docs/platform/concepts/logs-metrics-alerts
- file: docs/tutorials/anomaly-detection
title: Streaming anomaly detection
- file: docs/integrations/cloudwatch
title: Amazon CloudWatch
entries:
- file: docs/integrations/cloudwatch/cloudwatch-metrics
title: CloudWatch metrics
- file: docs/integrations/cloudwatch/list-cloudwatch-logs
title: CloudWatch Logs
entries:
- file: docs/integrations/cloudwatch/cloudwatch-logs-console
- file: docs/integrations/cloudwatch/cloudwatch-logs-cli
- file: docs/integrations/datadog
title: Datadog
entries:
- file: docs/integrations/datadog/datadog-metrics
- file: docs/platform/howto/integrations/datadog-increase-metrics-limit
- file: docs/integrations/datadog/datadog-logs
- file: docs/integrations/datadog/add-custom-tags-to-datadog
- file: docs/integrations/send-logs-to-elasticsearch
title: Elasticsearch logs
- file: docs/integrations/cloudlogging
title: Google Cloud Logging
- file: docs/integrations/google-bigquery
title: Google BigQuery
- file: docs/integrations/rsyslog
title: RSyslog
entries:
- file: docs/integrations/rsyslog/logtail
title: Logtail
- file: docs/integrations/rsyslog/loggly
title: Loggly
- file: docs/platform/howto/integrations/access-jmx-metrics-jolokia
title: Jolokia metrics
- file: docs/platform/howto/integrations/prometheus-metrics
title: Prometheus metrics
entries:
- file: docs/integrations/prometheus-system-metrics
# --------- INTEGRATIONS -----------
- file: docs/integrations
title: Integrations
entries:
- file: docs/platform/concepts/service-integration
- file: docs/platform/howto/create-service-integration
# -------- TOOLS --------
- file: docs/tools
entries:
# -------- CLI --------
- file: docs/tools/cli
entries:
- file: docs/tools/cli/account
entries:
- glob: docs/tools/cli/account/*
- file: docs/tools/cli/billing-group
- file: docs/tools/cli/cloud
- file: docs/tools/cli/credits
- file: docs/tools/cli/events
- file: docs/tools/cli/mirrormaker
- file: docs/tools/cli/project
- file: docs/tools/cli/service
entries:
- glob: docs/tools/cli/service/*
- file: docs/tools/cli/ticket
- file: docs/tools/cli/user
entries:
- glob: docs/tools/cli/user/*
- file: docs/tools/cli/vpc
# -------- API --------
- file: docs/tools/api
title: Aiven API
# -------- TERRAFORM --------
- file: docs/tools/terraform
title: Aiven Provider for Terraform
entries:
- file: docs/tools/terraform/get-started
title: Get started
- file: docs/tools/terraform/concepts/data-sources
- file: docs/tools/terraform/howto/terraform-logging
title: Enable debug logging
- file: docs/tools/terraform/howto/promote-to-master-pg-rr
title: Promote PostgreSQL read-only replica to primary
- file: docs/tools/terraform/howto/config-postgresql-provider
title: Use PostgreSQL Provider with Aiven Provider
- file: docs/tools/terraform/list-upgrade-terraform
title: Upgrade Aiven Provider
entries:
- file: docs/tools/terraform/howto/upgrade-provider-v1-v2
title: Upgrade from v1 to v2
- file: docs/tools/terraform/howto/upgrade-provider-v2-v3
title: Upgrade from v2 to v3
- file: docs/tools/terraform/howto/upgrade-provider-v3-v4
title: Upgrade from v3 to v4
- file: docs/tools/terraform/howto/upgrade-to-opensearch
- file: docs/tools/terraform/howto/update-deprecated-resources
- file: docs/tools/terraform/list-vpc-terraform
title: Virtual network peering
entries:
- file: docs/tools/terraform/howto/vpc-peering-aws
title: Set up AWS virtual network peering
- file: docs/tools/terraform/howto/vnet-peering-azure
title: Set up Azure virtual network peering
- file: docs/tools/terraform/howto/vpc-peering-gcp
title: Set up Google Cloud Platform virtual network peering
- file: docs/tools/terraform/reference/troubleshooting
entries:
- file: docs/tools/terraform/reference/troubleshooting/private-access-error
title: Private access error when using VPC
# -------- KUBERNETES --------
- file: docs/tools/kubernetes
title: Aiven Operator for Kubernetes
# -------- KAFKA --------
- file: docs/products/kafka
title: Apache Kafka
entries:
- file: docs/products/kafka/get-started
title: Get started
- file: docs/products/kafka/howto/fake-sample-data
title: Sample data generator
- file: docs/products/kafka/concepts
title: Concepts
entries:
- file: docs/products/kafka/concepts/upgrade-procedure
title: Upgrade procedure
- file: docs/products/kafka/concepts/horizontal-vertical-scaling
title: Scaling options
- file: docs/products/kafka/concepts/acl
- file: docs/products/kafka/concepts/schema-registry-authorization
- file: docs/products/kafka/concepts/kafka-rest-api
- file: docs/products/kafka/concepts/log-compaction
- file: docs/products/kafka/concepts/partition-segments
- file: docs/products/kafka/concepts/auth-types
- file: docs/products/kafka/concepts/non-leader-for-partition
- file: docs/products/kafka/concepts/configuration-backup
- file: docs/products/kafka/concepts/monitor-consumer-group
- file: docs/products/kafka/concepts/consumer-lag-predictor
title: Consumer lag predictor
- file: docs/products/kafka/concepts/kafka-quotas
title: Quotas
- file: docs/products/kafka/concepts/list-kafka-tiered-storage
title: Tiered storage
entries:
- file: docs/products/kafka/concepts/kafka-tiered-storage
title: Overview
- file: docs/products/kafka/concepts/tiered-storage-how-it-works
title: How it works
- file: docs/products/kafka/concepts/tiered-storage-guarantees
title: Guarantees
- file: docs/products/kafka/concepts/tiered-storage-limitations
title: Limitations
- file: docs/products/kafka/howto
title: HowTo
entries:
- file: docs/products/kafka/howto/list-code-samples
entries:
- file: docs/products/kafka/howto/connect-with-python
title: Connect with Python
- file: docs/products/kafka/howto/connect-with-java
title: Connect with Java
- file: docs/products/kafka/howto/connect-with-go
title: Connect with Go
- file: docs/products/kafka/howto/connect-with-command-line
title: Connect with command line
- file: docs/products/kafka/howto/connect-with-nodejs
title: Connect with NodeJS
- file: docs/products/kafka/howto/list-tools
title: Tools
entries:
- file: docs/products/kafka/howto/kafka-tools-config-file
- file: docs/products/kafka/howto/kcat
- file: docs/products/kafka/howto/kafka-conduktor
- file: docs/products/kafka/howto/kafdrop
- file: docs/products/kafka/howto/provectus-kafka-ui
- file: docs/products/kafka/howto/kpow
- file: docs/products/kafka/howto/kafka-klaw
- file: docs/products/kafka/howto/list-security
title: Security
entries:
- file: docs/products/kafka/howto/keystore-truststore
title: Configure Java SSL keystore and truststore to access Apache Kafka
- file: docs/products/kafka/howto/manage-acls
- file: docs/products/kafka/howto/monitor-logs-acl-failure
- file: docs/products/kafka/howto/kafka-sasl-auth
- file: docs/products/kafka/howto/renew-ssl-certs
- file: docs/products/kafka/howto/enable-oidc
title: Enable OAUTH2/OIDC authentication
- file: docs/products/kafka/howto/kafka-custom-serde-encrypt
title: Encrypt data using a custom serde
- file: docs/products/kafka/howto/list-admin
title: Administration tasks
entries:
- file: docs/products/kafka/howto/list-schema-registry
title: Schema registry
entries:
- file: docs/products/kafka/howto/enable-karapace
- file: docs/products/kafka/howto/best-practices
- file: docs/products/kafka/howto/configure-with-kafka-cli
- file: docs/products/kafka/howto/set-kafka-parameters
- file: docs/products/kafka/howto/viewing-resetting-offset
- file: docs/products/kafka/howto/configure-log-cleaner
- file: docs/products/kafka/howto/prevent-full-disks
- file: docs/products/kafka/howto/use-zookeeper
- file: docs/products/kafka/howto/avoid-out-of-memory-error
- file: docs/products/kafka/howto/optimizing-resource-usage
title: Optimizing resource usage
- file: docs/products/kafka/howto/enabled-consumer-lag-predictor
title: Enable consumer lag predictor
- file: docs/products/kafka/howto/manage-quotas
- file: docs/products/kafka/howto/list-integration
title: Integrations
entries:
- file: docs/products/kafka/howto/integrate-service-logs-into-kafka-topic
- file: docs/products/kafka/howto/kafka-streams-with-aiven-for-kafka
- file: docs/products/kafka/howto/flink-with-aiven-for-kafka
- file: docs/products/kafka/howto/datadog-customised-metrics
- file: docs/products/kafka/howto/kafka-prometheus-privatelink
- file: docs/products/kafka/howto/ksql-docker
title: Use ksqlDB with Aiven for Apache Kafka
- file: docs/products/kafka/howto/add-missing-producer-consumer-metrics
- file: docs/products/kafka/howto/list-topic-schema
title: Topic/schema management
entries:
- file: docs/products/kafka/howto/create-topic
- file: docs/products/kafka/howto/create-topics-automatically
- file: docs/products/kafka/howto/get-topic-partition-details
- file: docs/products/kafka/howto/schema-registry
- file: docs/products/kafka/howto/change-retention-period
- file: docs/products/kafka/howto/kafka-tiered-storage-get-started
title: Tiered storage
entries:
- file: docs/products/kafka/howto/enable-kafka-tiered-storage
title: Enable tiered storage
- file: docs/products/kafka/howto/configure-topic-tiered-storage
title: Configure tiered storage for topic
- file: docs/products/kafka/howto/tiered-storage-overview-page
title: Tiered storage overview page
- file: docs/products/kafka/reference
title: Reference
entries:
- file: docs/products/kafka/reference/advanced-params
title: Advanced parameters
- file: docs/products/kafka/reference/kafka-metrics-prometheus
title: Metrics available via Prometheus
- file: docs/products/kafka/troubleshooting
title: Troubleshooting
entries:
- file: docs/products/kafka/troubleshooting/troubleshoot-consumer-disconnections
title: Troubleshoot consumer disconnections
- file: docs/products/kafka/kafka-connect
title: Apache Kafka Connect
entries:
- file: docs/products/kafka/kafka-connect/get-started
- file: docs/products/kafka/kafka-connect/concepts
entries:
- file: docs/products/kafka/kafka-connect/concepts/list-of-connector-plugins
- file: docs/products/kafka/kafka-connect/concepts/jdbc-source-modes
- file: docs/products/kafka/kafka-connect/concepts/connect-plugin-list-not-available
- file: docs/products/kafka/kafka-connect/howto
title: HowTo
entries:
- file: docs/products/kafka/kafka-connect/howto/list-admin
entries:
- file: docs/products/kafka/kafka-connect/howto/best-practices
- file: docs/products/kafka/kafka-connect/howto/bring-your-own-kafka-connect-cluster
- file: docs/products/kafka/kafka-connect/howto/enable-connect
- file: docs/products/kafka/kafka-connect/howto/enable-automatic-restart
- file: docs/products/kafka/kafka-connect/howto/manage-logging-level
title: Manage Kafka Connect logging level
- file: docs/products/kafka/kafka-connect/howto/request-new-connector
- file: docs/products/kafka/kafka-connect/howto/list-source-connectors
entries:
- file: docs/products/kafka/kafka-connect/howto/jdbc-source-connector-pg
title: PostgreSQL to Kafka
- file: docs/products/kafka/kafka-connect/howto/debezium-source-connector-pg
title: PostgreSQL to Kafka with Debezium
- file: docs/products/kafka/kafka-connect/howto/jdbc-source-connector-mysql
title: MySQL to Kafka
- file: docs/products/kafka/kafka-connect/howto/debezium-source-connector-mysql
title: MySQL to Kafka with Debezium
- file: docs/products/kafka/kafka-connect/howto/jdbc-source-connector-sql-server
title: SQL Server to Kafka
- file: docs/products/kafka/kafka-connect/howto/debezium-source-connector-sql-server
title: SQL Server to Kafka with Debezium
- file: docs/products/kafka/kafka-connect/howto/mongodb-poll-source-connector
title: MongoDB to Kafka
- file: docs/products/kafka/kafka-connect/howto/debezium-source-connector-pg-node-replacement
- file: docs/products/kafka/kafka-connect/howto/debezium-source-connector-mongodb
title: MongoDB to Kafka with Debezium
- file: docs/products/kafka/kafka-connect/howto/cassandra-streamreactor-source
title: Cassandra to Kafka
- file: docs/products/kafka/kafka-connect/howto/mqtt-source-connector
title: MQTT to Kafka
- file: docs/products/kafka/kafka-connect/howto/gcp-pubsub-source
title: Google Pub/Sub to Kafka
- file: docs/products/kafka/kafka-connect/howto/gcp-pubsub-lite-source
title: Google Pub/Sub Lite to Kafka
- file: docs/products/kafka/kafka-connect/howto/couchbase-source
title: Couchbase to Kafka
- file: docs/products/kafka/kafka-connect/howto/list-sink-connectors
entries:
- file: docs/products/kafka/kafka-connect/howto/jdbc-sink
title: Kafka to another database with JDBC
- file: docs/products/kafka/kafka-connect/howto/s3-sink-prereq
- file: docs/products/kafka/kafka-connect/howto/s3-sink-connector-aiven
title: Kafka to S3 (Aiven)
- file: docs/products/kafka/kafka-connect/howto/s3-iam-assume-role
- file: docs/products/kafka/kafka-connect/howto/s3-sink-connector-confluent
title: Kafka to S3 (Confluent)
- file: docs/products/kafka/kafka-connect/howto/gcs-sink-prereq
- file: docs/products/kafka/kafka-connect/howto/gcs-sink
title: Kafka to GCS
- file: docs/products/kafka/kafka-connect/howto/gcp-bigquery-sink-prereq
- file: docs/products/kafka/kafka-connect/howto/gcp-bigquery-sink
title: Kafka to Big Query
- file: docs/products/kafka/kafka-connect/howto/opensearch-sink
title: Kafka to OpenSearch
- file: docs/products/kafka/kafka-connect/howto/elasticsearch-sink
title: Kafka to Elasticsearch
- file: docs/products/kafka/kafka-connect/howto/snowflake-sink-prereq
- file: docs/products/kafka/kafka-connect/howto/snowflake-sink
title: Kakfa to Snowflake
- file: docs/products/kafka/kafka-connect/howto/http-sink
title: Kafka to HTTP
- file: docs/products/kafka/kafka-connect/howto/mongodb-sink-mongo
title: Kafka to MongoDB
- file: docs/products/kafka/kafka-connect/howto/mongodb-sink-lenses
title: Kafka to MongoDB (by Lenses)
- file: docs/products/kafka/kafka-connect/howto/influx-sink
title: Kafka to InfluxDB
- file: docs/products/kafka/kafka-connect/howto/redis-streamreactor-sink
title: Kafka to Redis
- file: docs/products/kafka/kafka-connect/howto/cassandra-streamreactor-sink
title: Kafka to Cassandra
- file: docs/products/kafka/kafka-connect/howto/couchbase-sink
title: Kafka to Couchbase
- file: docs/products/kafka/kafka-connect/howto/gcp-pubsub-sink
title: Kafka to Google Pub/Sub
- file: docs/products/kafka/kafka-connect/howto/gcp-pubsub-lite-sink
title: Kafka to Google Pub/Sub Lite
- file: docs/products/kafka/kafka-connect/howto/splunk-sink
title: Kafka to Splunk
- file: docs/products/kafka/kafka-connect/howto/mqtt-sink-connector
title: Kafka to MQTT
- file: docs/products/kafka/kafka-connect/reference
title: Reference
entries:
- file: docs/products/kafka/kafka-connect/reference/advanced-params
title: Advanced parameters
- file: docs/products/kafka/kafka-connect/reference/s3-sink-formats
title: AWS S3 sink connector naming and data format
entries:
- file: docs/products/kafka/kafka-connect/reference/s3-sink-additional-parameters
- file: docs/products/kafka/kafka-connect/reference/s3-sink-additional-parameters-confluent
- file: docs/products/kafka/kafka-connect/reference/gcs-sink-formats
- file: docs/products/kafka/kafka-connect/reference/connect-metrics-prometheus
title: Metrics available via Prometheus
- file: docs/products/kafka/kafka-mirrormaker
title: Apache Kafka MirrorMaker2
entries:
- file: docs/products/kafka/kafka-mirrormaker/get-started
- file: docs/products/kafka/kafka-mirrormaker/concepts
entries:
- file: docs/products/kafka/kafka-mirrormaker/concepts/disaster-recovery-migration
entries:
- file: docs/products/kafka/kafka-mirrormaker/concepts/disaster-recovery/active-active-setup
title: Active-Active Setup
- file: docs/products/kafka/kafka-mirrormaker/concepts/disaster-recovery/active-passive-setup
title: Active-Passive Setup
- file: docs/products/kafka/kafka-mirrormaker/concepts/replication-flow-topics-regex
- file: docs/products/kafka/kafka-mirrormaker/concepts/mirrormaker2-tuning
- file: docs/products/kafka/kafka-mirrormaker/howto
title: HowTo
entries:
- file: docs/products/kafka/kafka-mirrormaker/howto/integrate-external-kafka-cluster
- file: docs/products/kafka/kafka-mirrormaker/howto/setup-replication-flow
- file: docs/products/kafka/kafka-mirrormaker/howto/setup-mirrormaker-monitoring
- file: docs/products/kafka/kafka-mirrormaker/howto/remove-mirrormaker-prefix
- file: docs/products/kafka/kafka-mirrormaker/reference
title: Reference
entries:
- glob: docs/products/kafka/kafka-mirrormaker/reference/*
- file: docs/products/kafka/karapace
title: Karapace
entries:
- file: docs/products/kafka/karapace/get-started
- file: docs/products/kafka/karapace/concepts
title: Concepts
entries:
- file: docs/products/kafka/karapace/concepts/schema-registry-authorization
- file: docs/products/kafka/karapace/concepts/acl-definition
- file: docs/products/kafka/karapace/concepts/kafka-rest-proxy-authorization
- file: docs/products/kafka/karapace/howto
title: HowTo
entries:
- file: docs/products/kafka/karapace/howto/enable-karapace
- file: docs/products/kafka/karapace/howto/enable-schema-registry-authorization
- file: docs/products/kafka/karapace/howto/enable-oauth-oidc-kafka-rest-proxy
- file: docs/products/kafka/karapace/howto/manage-schema-registry-authorization
- file: docs/products/kafka/karapace/howto/manage-kafka-rest-proxy-authorization
# -------- FLINK --------
- file: docs/products/flink
title: Apache Flink
entries:
- file: docs/products/flink/list-overview
title: Overview
entries:
- file: docs/products/flink/concepts/flink-architecture
title: Architecture overview
- file: docs/products/flink/concepts/flink-features
title: Aiven for Apache Flink features
- file: docs/products/flink/concepts/managed-service-features
title: Managed service features
- file: docs/products/flink/reference/plans-pricing
title: Plans and pricing
- file: docs/products/flink/reference/flink-limitations
title: Limitations
- file: docs/products/flink/get-started
title: Quickstart
- file: docs/products/flink/concepts
title: Concepts
entries:
- file: docs/products/flink/concepts/flink-applications
title: Aiven Flink applications
- file: docs/products/flink/concepts/supported-syntax-sql-editor
- file: docs/products/flink/concepts/custom-jars
title: Custom JARs
- file: docs/products/flink/concepts/tables
title: Flink tables
- file: docs/products/flink/concepts/checkpoints
- file: docs/products/flink/concepts/savepoints
- file: docs/products/flink/concepts/event-processing-time
- file: docs/products/flink/concepts/watermarks
- file: docs/products/flink/concepts/windows
- file: docs/products/flink/concepts/kafka-connectors
title: Standard and upsert connectors
- file: docs/products/flink/concepts/kafka-connector-requirements
- file: docs/products/flink/howto
title: HowTo
entries:
- file: docs/products/flink/howto/list-get-started
title: Get started
- file: docs/products/flink/howto/list-integrations
title: Integrate service
entries:
- file: docs/products/flink/howto/create-integration
title: Data service integrations
- file: docs/products/flink/howto/ext-kafka-flink-integration
title: Integrate with Apache Kafka
- file: docs/products/flink/howto/connect-bigquery
title: Integrate with Google BigQuery
- file: docs/products/flink/howto/create-flink-applications
title: Apache Flink applications
entries:
- file: docs/products/flink/howto/create-sql-application
title: Create an SQL application
- file: docs/products/flink/howto/create-jar-application
title: Create a JAR application
- file: docs/products/flink/howto/manage-flink-applications
title: Manage Apache Flink applications
- file: docs/products/flink/howto/restart-strategy-jar-applications
title: Restart Strategy for JAR Applications
- file: docs/products/flink/howto/list-flink-tables
title: Apache Flink tables
entries:
- file: docs/products/flink/howto/manage-flink-tables
title: Manage Apache Flink tables
- file: docs/products/flink/howto/list-flink-table-integrations
title: Create Apache Flink tables with data sources
entries:
- file: docs/products/flink/howto/connect-kafka
title: Apache Kafka-based Apache Flink table
- file: docs/products/flink/howto/flink-confluent-avro
title: Confluent Avro-based Apache Flink table
- file: docs/products/flink/howto/connect-pg
title: PostgreSQL-based Apache Flink table
- file: docs/products/flink/howto/connect-opensearch
title: OpenSearch-based Apache Flink table
- file: docs/products/flink/howto/pg-cdc-connector
title: PostgreSQL CDC connector-based Apache Flink table
- file: docs/products/flink/howto/slack-connector
title: Slack-based Apache Flink table
- file: docs/products/flink/howto/datagen-connector
title: DataGen-based Apache Flink table
- file: docs/products/flink/howto/list-manage-cluster
title: Manage cluster
- file: docs/products/flink/howto/advanced-topics
entries:
- file: docs/products/flink/howto/timestamps_opensearch
- file: docs/products/flink/reference
title: Reference
entries:
- file: docs/products/flink/reference/advanced-params
title: Advanced parameters
# -------- CASSANDRA --------
- file: docs/products/cassandra
title: Apache Cassandra
entries:
- file: docs/products/cassandra/overview
title: Overview
- file: docs/products/cassandra/get-started
title: Quickstart
- file: docs/products/cassandra/concepts
title: Concepts
entries:
- file: docs/products/cassandra/concepts/tombstones
title: Tombstones
- file: docs/products/cassandra/concepts/cross-cluster-replication
title: Cross-cluster replication
- file: docs/products/cassandra/howto
title: HowTo
entries:
- file: docs/products/cassandra/howto/list-get-started
title: Get started
- file: docs/products/cassandra/howto/list-code-samples
title: Connect to service
entries:
- file: docs/products/cassandra/howto/connect-cqlsh-cli
title: Connect with cqlsh
- file: docs/products/cassandra/howto/connect-python
title: Connect with Python
- file: docs/products/cassandra/howto/connect-go
title: Connect with Go
- file: docs/products/cassandra/howto/list-manage-service
title: Manage service
entries:
- file: docs/products/cassandra/howto/use-dsbulk-with-cassandra
title: Manage data with DSBULK
- file: docs/products/cassandra/howto/use-nosqlbench-with-cassandra
title: Stress test with nosqlbench
- file: docs/products/cassandra/howto/zdm-proxy
title: Migrate to Aiven
- file: docs/products/cassandra/howto/list-manage-cluster
title: Manage cluster
- file: docs/products/cassandra/howto/list-cross-cluster-replication
title: Cross-cluster replication
entries:
- file: docs/products/cassandra/howto/enable-cross-cluster-replication
title: Enable CCR
- file: docs/products/cassandra/howto/manage-cross-cluster-replication
title: Manage CCR
- file: docs/products/cassandra/howto/disable-cross-cluster-replication
title: Disable CCR
- file: docs/products/cassandra/reference
title: Reference
entries:
- file: docs/products/cassandra/reference/advanced-params
title: Advanced parameters
- file: docs/products/cassandra/reference/cassandra-metrics-prometheus
title: Metrics via Prometheus
- file: docs/products/cassandra/reference/cassandra-metrics-datadog
title: Metrics via Datadog
# -------- CLICKHOUSE --------
- file: docs/products/clickhouse
title: ClickHouse
entries:
- file: docs/products/clickhouse/list-overview
title: Overview
entries:
- file: docs/products/clickhouse/concepts/features-overview
title: Features overview
- file: docs/products/clickhouse/concepts/service-architecture
title: Architecture overview
- file: docs/products/clickhouse/reference/plans-pricing
title: Plans and pricing
- file: docs/products/clickhouse/reference/limitations
title: Limits and limitations
- file: docs/products/clickhouse/get-started
title: Quickstart
- file: docs/products/clickhouse/concepts
title: Concepts
entries:
- file: docs/products/clickhouse/concepts/olap
- file: docs/products/clickhouse/concepts/columnar-databases
- file: docs/products/clickhouse/concepts/indexing
- file: docs/products/clickhouse/concepts/disaster-recovery
title: Disaster recovery
- file: docs/products/clickhouse/concepts/strings
title: Strings
- file: docs/products/clickhouse/concepts/federated-queries
title: Federated queries
- file: docs/products/clickhouse/concepts/clickhouse-tiered-storage
title: Tiered storage
- file: docs/products/clickhouse/howto
title: HowTo
entries:
- file: docs/products/clickhouse/howto/list-get-started
title: Get started
entries:
- file: docs/products/clickhouse/howto/load-dataset
title: Load data
- file: docs/products/clickhouse/howto/secure-service
title: Secure a service
- file: docs/products/clickhouse/howto/list-connect-to-service
title: Connect to service
entries:
- file: docs/products/clickhouse/howto/connect-with-clickhouse-cli
title: Connect with the ClickHouse client
- file: docs/products/clickhouse/howto/connect-with-go
title: Connect with Go
- file: docs/products/clickhouse/howto/connect-with-python
title: Connect with Python
- file: docs/products/clickhouse/howto/connect-with-nodejs
title: Connect with Node.js
- file: docs/products/clickhouse/howto/connect-with-php
title: Connect with PHP
- file: docs/products/clickhouse/howto/connect-with-java
title: Connect with Java
- file: docs/products/clickhouse/howto/list-manage-service
title: Manage service
entries:
- file: docs/products/clickhouse/howto/manage-users-roles
title: Manage users and roles
- file: docs/products/clickhouse/howto/manage-databases-tables
title: Manage databases and tables
- file: docs/products/clickhouse/howto/query-databases
title: Query databases
- file: docs/products/clickhouse/howto/materialized-views
title: Create materialized views
- file: docs/products/clickhouse/howto/monitor-performance
title: Monitor performance
- file: docs/products/clickhouse/howto/use-shards-with-distributed-table
title: Read and write data across shards
- file: docs/products/clickhouse/howto/copy-data-across-instances
title: Copy data across ClickHouse servers
- file: docs/products/clickhouse/howto/fetch-query-statistics
title: Fetch query statistics
- file: docs/products/clickhouse/howto/run-federated-queries
title: Run federated queries
- file: docs/products/clickhouse/howto/list-manage-cluster
title: Manage cluster
- file: docs/products/clickhouse/howto/list-integrations
title: Integrate service
entries:
- file: docs/products/clickhouse/howto/connect-to-grafana
title: Connect to Grafana
- file: docs/products/clickhouse/howto/integrate-kafka
title: Connect to Apache Kafka
- file: docs/products/clickhouse/howto/integrate-postgresql
title: Connect to PostgreSQL
- file: docs/products/clickhouse/howto/data-service-integration
title: Connect a service as a data source (Apache Kafka and PostgreSQL)
- file: docs/products/clickhouse/howto/integration-databases
title: Connect services via integration databases
- file: docs/products/clickhouse/howto/connect-with-jdbc
title: Connect to external DBs with JDBC
- file: docs/products/clickhouse/howto/list-tiered-storage
title: Tiered storage
entries:
- file: docs/products/clickhouse/howto/enable-tiered-storage
title: Enable tiered storage
- file: docs/products/clickhouse/howto/configure-tiered-storage
title: Configure tiered storage
- file: docs/products/clickhouse/howto/check-data-tiered-storage
title: Check tiered storage status
- file: docs/products/clickhouse/howto/transfer-data-tiered-storage
title: Transfer data in tiered storage
- file: docs/products/clickhouse/reference
title: Reference
entries:
- file: docs/products/clickhouse/reference/supported-table-engines
title: Table engines
- file: docs/products/clickhouse/reference/supported-interfaces-drivers
title: Interfaces and drivers
- file: docs/products/clickhouse/reference/metrics-list
title: Metrics in Grafana
- file: docs/products/clickhouse/reference/clickhouse-metrics-datadog
title: Metrics via Datadog
- file: docs/products/clickhouse/reference/clickhouse-metrics-prometheus
title: Metrics via Prometheus
- file: docs/products/clickhouse/reference/supported-table-functions
title: Table functions
- file: docs/products/clickhouse/reference/s3-supported-file-formats
title: S3 file formats
- file: docs/products/clickhouse/reference/supported-input-output-formats
title: Formats for ClickHouse-Kafka data exchange
- file: docs/products/clickhouse/reference/advanced-params
title: Advanced parameters
# ---------Dragonfly --------------
- file: docs/products/dragonfly
title: Dragonfly
entries:
- file: docs/products/dragonfly/concepts/overview
title: Overview
- file: docs/products/dragonfly/get-started
title: Quickstart
- file: docs/products/dragonfly/concepts
title: Concepts
entries:
- file: docs/products/dragonfly/concepts/ha-dragonfly
- file: docs/products/dragonfly/howto
title: HowTo
entries:
- file: docs/products/dragonfly/howto/list-code-samples
title: Connect to service
entries:
- file: docs/products/dragonfly/howto/connect-redis-cli
- file: docs/products/dragonfly/howto/connect-go
- file: docs/products/dragonfly/howto/connect-node
- file: docs/products/dragonfly/howto/connect-python
- file: docs/products/dragonfly/howto/list-migrate-data
title: Data migration
entries:
- file: docs/products/dragonfly/howto/migrate-aiven-redis-df-console
title: Migrate Aiven for Redis
- file: docs/products/dragonfly/howto/migrate-ext-redis-df-console
title: Migrate external Redis
- file: docs/products/dragonfly/reference
title: Reference
entries:
- file: docs/products/dragonfly/reference/advanced-params
title: Advanced parameters
# -------- GRAFANA --------
- file: docs/products/grafana
title: Grafana
entries:
- file: docs/products/grafana/list-overview
title: Overview
entries:
- file: docs/products/grafana/concepts/grafana-features
title: Features overview
- file: docs/products/grafana/reference/plans-pricing
title: Plans and pricing
- file: docs/products/grafana/get-started
title: Quickstart
- file: docs/products/grafana/howto
title: HowTo
entries:
- file: docs/products/grafana/howto/list-user-access
title: User access
entries:
- file: docs/products/grafana/howto/log-in
title: Log in to Aiven for Grafana
- file: docs/products/grafana/howto/rotating-grafana-service-credentials
- file: docs/products/grafana/howto/oauth-configuration
title: OAuth configuration
- file: docs/products/grafana/howto/list-manage-dashboards
title: Manage dashboards
entries:
- file: docs/products/grafana/howto/dashboard-previews
title: Dashboard previews
- file: docs/products/grafana/howto/replace-expression-string
- file: docs/products/grafana/howto/send-emails
title: Alerts and notifcations
- file: docs/products/grafana/howto/list-manage-cluster
title: Manage cluster
- file: docs/products/grafana/howto/pitr-process-for-grafana
title: Point-in-time recovery process
- file: docs/products/grafana/reference
title: Reference
entries:
- file: docs/products/grafana/reference/advanced-params
title: Advanced parameters
- file: docs/products/grafana/reference/plugins
title: Plugins
# -------- INFLUXDB --------
- file: docs/products/influxdb
title: InfluxDB
entries:
- file: docs/products/influxdb/get-started
title: Get started
- file: docs/products/influxdb/concepts
title: Concepts
entries:
- file: docs/products/influxdb/concepts/continuous-queries
- file: docs/products/influxdb/concepts/influxdb-retention-policy
- file: docs/products/influxdb/howto
title: HowTo
entries:
- file: docs/products/influxdb/howto/migrate-data-self-hosted-influxdb-aiven
- file: docs/products/influxdb/reference
title: Reference
entries:
- glob: docs/products/influxdb/reference/*
# -------- M3DB --------
- file: docs/products/m3db
title: M3DB