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

Fix typo - Feature qmanagerdb #158

Merged
merged 5 commits into from
Nov 13, 2023
Merged
Changes from 1 commit
Commits
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
Prev Previous commit
Fix mappings - Adds 7.1.9 QueueManager for postgresql
Fix typo on svc name - Adds 7.1.9 QueueManager for postgresql

In 7.1.9 QueueManager uses RDBMS. postgresql only supported in 7.1.9.0 & CHF1, Switch to back to legacy H2 included in CHF2, other db's later

Signed-off-by: Chuck Levesque <[email protected]>
clevesque committed Nov 10, 2023
commit 803c79003bfa97e328e55dfdf8c90d8a0fd60776
12 changes: 6 additions & 6 deletions roles/config/cluster/base/templates/configs/databases-7.1.9.j2
Original file line number Diff line number Diff line change
@@ -61,9 +61,9 @@ QUERY_PROCESSOR:
query_processor_database_password: {{ databases.QUERY_PROCESSOR.password }}
QUEUEMANAGER:
SERVICEWIDE:
queue_manager_database_host: {{ databases.QUEUE_MANAGER.host }}
queue_manager_database_port: {{ databases.QUEUE_MANAGER.port }}
queue_manager_database_type: {{ databases.QUEUE_MANAGER.type | cloudera.cluster.format_database_type }}
queue_manager_database_name: {{ databases.QUEUE_MANAGER.name }}
queue_manager_database_username: {{ databases.QUEUE_MANAGER.user }}
queue_manager_database_password: {{ databases.QUEUE_MANAGER.password }}
queuemanager_database_host: {{ databases.QUEUEMANAGER.host }}
queuemanager_database_port: {{ databases.QUEUEMANAGER.port }}
queuemanager_database_type: {{ databases.QUEUEMANAGER.type | cloudera.cluster.format_database_type }}
queuemanager_database_name: {{ databases.QUEUEMANAGER.name }}
queuemanager_database_user: {{ databases.QUEUEMANAGER.user }}
queuemanager_database_password: {{ databases.QUEUEMANAGER.password }}