-
Notifications
You must be signed in to change notification settings - Fork 79
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
Question: Is columnar extension enabling all hydra capability on a new db inside the docker ? #52
Comments
Correct, creating the columnar extension is the only action which is done for you because we add this file to the image: Hydra adds other extensions, but these extensions need to be explicitly installed with template0 and template1 are built into Postgres and are not modified by Hydra; the default template is |
Thank you for the swift response but if you indulge me I still have some follow-up questions regarding:
|
Extensions can be "installed" into a database using You are welcome to create an issue for Postgis and we can use that to discuss and judge interest. However, as the image is open source and available, adding additional items to the image is left to you to customize to your needs, but this requires familiarity with Docker. Postgis is already available in Hydra's cloud product. |
Thank you for the answers. |
I am running latest docker for PG 14.
I would like to create a new hydra db inside the docker beside the default postgres db
to be able to test different schemas and as best practices states to have another db beside postgres.
I can enable columnar on the new db by
CREATE EXTENSION IF NOT EXISTS columnar;
Is this enough for all hydra capability/features ?
Is either template0 or template1 better/recommended ?
The text was updated successfully, but these errors were encountered: