Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update postgresql.md #2435

Merged
merged 46 commits into from
Mar 16, 2023
Merged
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
f31c710
DOC-1382: Connect - Preview (#1918)
lanceleonard May 12, 2022
600e40c
DOC-1397: Connect - Initial docs (#1953)
lanceleonard May 31, 2022
8701d22
DOC-1398: Connect preview - data type conversions (#1959)
lanceleonard May 31, 2022
da51214
Updating to current version of master
lanceleonard Aug 31, 2022
a16ec41
Updating to current version of master
lanceleonard Nov 28, 2022
38d3b0b
Updating to current latest
lanceleonard Nov 28, 2022
b7cc6f9
Initial name change pass
lanceleonard Nov 28, 2022
0e04a14
Updating architecture image
lanceleonard Nov 29, 2022
2be62b8
Fixing typo
lanceleonard Dec 19, 2022
fde35b1
Updating setup steps
lanceleonard Dec 19, 2022
2e98450
Additional fixes for setup
lanceleonard Dec 19, 2022
05f21ba
Updating to latest version of master
lanceleonard Jan 4, 2023
9b4ef49
Updating to current master
lanceleonard Jan 31, 2023
ac9fd05
DOC-1758: RDI preview: branding/content migration (#2336)
lanceleonard Feb 16, 2023
c12341f
Updates preview content for 0.91
nermiller Mar 3, 2023
03ec6a1
Merge branch 'master' into release-0.91
nermiller Mar 3, 2023
704726e
revert versioning
nermiller Mar 3, 2023
cb4195c
Deletes extra closing tag
nermiller Mar 3, 2023
c153e96
Fixes conflicts
nermiller Mar 3, 2023
8cf6952
Update layouts/partials/flex/body-beforecontent.html
nermiller Mar 3, 2023
00b0fdd
Link and other updates
nermiller Mar 4, 2023
581c7cf
Updates upgrade image
nermiller Mar 4, 2023
39220cd
Update content/rdi/_index.md
nermiller Mar 10, 2023
d6de646
Update content/rdi/_index.md
nermiller Mar 10, 2023
8f1d7a4
Update content/rdi/_index.md
nermiller Mar 10, 2023
f4813ed
Update content/rdi/architecture.md
nermiller Mar 10, 2023
c7fe4f0
Update content/rdi/architecture.md
nermiller Mar 10, 2023
7f59b94
Update content/rdi/upgrade.md
nermiller Mar 10, 2023
c3f02bc
Update content/rdi/upgrade.md
nermiller Mar 10, 2023
071f9c3
Update content/rdi/upgrade.md
nermiller Mar 10, 2023
f048a8d
Update content/rdi/upgrade.md
nermiller Mar 10, 2023
c4e7957
Update content/rdi/upgrade.md
nermiller Mar 10, 2023
93c2dc4
Update content/rdi/quickstart/write-behind-guide.md
nermiller Mar 10, 2023
8e68b4d
Update content/rdi/quickstart/write-behind-guide.md
nermiller Mar 10, 2023
5a6b131
Update layouts/partials/home/options.html
nermiller Mar 10, 2023
037ce23
Update layouts/partials/home/options.html
nermiller Mar 10, 2023
3b6a717
Update content/rdi/installation/install-redis-gears.md
nermiller Mar 10, 2023
22f3113
Update content/rdi/installation/debezium-server-configuration.md
nermiller Mar 10, 2023
39b45d5
Update content/rdi/troubleshoot.md
nermiller Mar 10, 2023
1b7b605
Update content/rdi/troubleshoot.md
nermiller Mar 10, 2023
9976fb0
Update content/rdi/data-transformation/_index.md
nermiller Mar 10, 2023
14fc359
Update content/rdi/quickstart/write-behind-guide.md
nermiller Mar 10, 2023
2edd4e7
Update content/rdi/quickstart/write-behind-guide.md
nermiller Mar 10, 2023
61c20fd
Applies Yaron's feedback
nermiller Mar 10, 2023
f305ae8
Update postgresql.md
yaronp68 Mar 14, 2023
e1e762d
Merge branch '0.91-build' into patch-7
nermiller Mar 16, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions content/rdi/reference/debezium/postgresql.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,15 @@ debezium.transforms.AddPrefix.type=org.apache.kafka.connect.transforms.RegexRout
debezium.transforms.AddPrefix.regex=.*
debezium.transforms.AddPrefix.replacement=data:$0

# Logging
# Uncomment the following lines if running Debezium Server as a Java standalone process (non-containerized).
#quarkus.log.file.enable=true
#quarkus.log.file.path=<LOG_FILE_PATH>
#quarkus.log.file.rotation.max-file-size=100M
#quarkus.log.file.rotation.rotate-on-boot=true
#quarkus.log.file.rotation.file-suffix=.yyyy-MM-dd.gz
#quarkus.log.file.rotation.max-backup-index=3

# The default minimum log level for every log category, change only quarkus.log.level when needed.
quarkus.log.min-level=TRACE
# The default log level for every log category.
Expand Down