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

GPDB support #1801

Closed
andr-sokolov opened this issue Jun 29, 2022 · 6 comments
Closed

GPDB support #1801

andr-sokolov opened this issue Jun 29, 2022 · 6 comments
Assignees
Labels

Comments

@andr-sokolov
Copy link
Contributor

Hi,
PostgreSQL has forks, one of which is GPDB (https://github.com/greenplum-db/gpdb). I would like pgbackrest to work with GPDB too. Are you going to implement support for PostgreSQL forks in pgbackrest? Are there any ideas how to implement? If my colleagues and I prepare a PR to support GPDB, will it be merged?

@woblerr
Copy link

woblerr commented Jun 29, 2022

@andr-sokolov

This is a very interesting feature.
If the development is available in open form, where can I view it?

@andr-sokolov
Copy link
Contributor Author

@woblerr , welcome. arenadata#6 This patch is not ready to be in upstream, but it seems to be working. I want to rewrite it.

@dwsteele dwsteele self-assigned this Jun 29, 2022
@dwsteele
Copy link
Member

The way we have been planning to handle forks is by adding a --pg-version option (or something like that) to stanza-create that would force pgpackrest to accept the fork as version 10, 11, or whatever. In that case we would expect the fork to act exactly like Postgres does for that version.

@andr-sokolov
Copy link
Contributor Author

My proposal:

  • Add fork-name and fork-version version properties to the src/build/postgres/postgres.yaml file format. The default value of fork-name is PostgreSQL. Example of postgres.yaml here:
version:
  - 9.0
  - 9.1
  - 9.2
  - 9.3
  - 9.4
  - 9.4:
      fork-name: GPDB
      fork-version: 6
  - 9.5
  - 9.6
  - 10
  - 11
  - 12
  - 13
  - 14
  - 15:
      release: false

This means that GPDB 6 is based on PostgreSQL 9.4

  • Add forkName (enum) and forkVersion (unsigned int) fields to PgInterface structure.
  • Add FORK_NAME and FORK_VERSION macros. Their values will be checked in conditional preprocessor directives in src/postgres/interface/version.vendor.h
  • Implement the search in the pgInterface array not only by version, but also by the forkName field, the value for comparison with which will be taken from the --fork-name command line parameter of stanza-create. For backward compatibility purposes, the PostgreSQL interface will be searched without this parameter.
  • Use the value of fork-version property in the pgTablespaceId function. For GPDB 6 the function should return "GPDB_6_301908232". Place the pgTablespaceId function in interfaces.
  • Place PG_PAGE_SIZE_DEFAULT and PG_WAL_SEGMENT_SIZE_DEFAULT values in interfaces, because PG_PAGE_SIZE_DEFAULT=32768 and PG_WAL_SEGMENT_SIZE_DEFAULT=67108864 for GPDB 6.

Are there any objections? Can I start creating a PR?

@Stolb27
Copy link

Stolb27 commented Jul 1, 2022

I suggest removing the fork-version property, the forkVersion field and the FORK_VERSION macro. Since the pgTablespaceId function will be in interface, the PostgreSQL version and the fork name are enough to output a string of the desired format. In addition, the path in forks may have a different format.

@dwsteele
Copy link
Member

dwsteele commented Sep 7, 2022

Closing since there is now a PR under discussion.

@dwsteele dwsteele closed this as completed Sep 7, 2022
@github-actions github-actions bot locked and limited conversation to collaborators Dec 11, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

4 participants