1. 25 8月, 2020 1 次提交
    • M
      docs - add information on upgrading to PostGIS 2.5.4 (#10550) · cf020c44
      Mel Kiyama 提交于
      * docs - add information on upgrading to PostGIS 2.5.4
      
      Upgrade instructions 2.1.5 to different versions of 2.5.4
      
      * docs - upgrade to PostGIS 2.5.4 review comments
      
      * docs - more review comment updates.
      reorder upgrade sections.
      clarify removing PostGIS package, is for removing the gppkg
      
      * docs - minor edit
      
      * docs - review updates - more emphasis on removing PostGIS from a database deleting objects.
      -Create separate paragraph in Upgrading section.
      -Add warning in Removing PostGIS section
      
      * docs - minor review comment update
      
      * small edits
      Co-authored-by: NDavid Yozie <dyozie@pivotal.io>
      cf020c44
  2. 20 8月, 2020 2 次提交
  3. 14 8月, 2020 1 次提交
  4. 08 8月, 2020 4 次提交
  5. 07 8月, 2020 1 次提交
  6. 06 8月, 2020 1 次提交
  7. 05 8月, 2020 1 次提交
  8. 29 7月, 2020 2 次提交
  9. 25 7月, 2020 1 次提交
  10. 17 7月, 2020 2 次提交
    • M
      docs - update utility docs with IP/hostname information. (#10379) · 54dbd926
      Mel Kiyama 提交于
      * docs - update utility docs with IP/hostname information.
      
      Add information to gpinitsystem, gpaddmirrors, and gpexpand ref. docs
      --Information about using hostnames vs. IP addresses
      --Information about configuring hosts that are configured with mulitple NICs
      
      Also updated some examples in gpinitsystem
      
      * docs - review comment updates. Add more information from dev.
      
      * docs - change examples to show valid configurations that support failorver.
      Also fix typos and minor edits.
      
      * docs - updates based on review comments.
      54dbd926
    • L
      docs - greenplumr input.signature (#10477) · 1c294e95
      Lisa Owen 提交于
      1c294e95
  11. 16 7月, 2020 1 次提交
    • M
      docs - add information for SSL with standby master (#10438) · 581ef05c
      Mel Kiyama 提交于
      * docs - add information for SSL with standby master
      
      --SSL file should not be in $MASTER_DATA_DIRECTORY
      
      Also
      --Add not about not using NULL ciphers
      --Correct default directory for SSL files to $MASTER_DATA_DIRECTORY
      
      * docs - review comment updates
      581ef05c
  12. 13 7月, 2020 1 次提交
  13. 08 7月, 2020 1 次提交
  14. 03 7月, 2020 2 次提交
  15. 02 7月, 2020 1 次提交
  16. 30 6月, 2020 1 次提交
  17. 29 6月, 2020 1 次提交
  18. 26 6月, 2020 4 次提交
  19. 24 6月, 2020 1 次提交
  20. 23 6月, 2020 1 次提交
  21. 19 6月, 2020 1 次提交
    • M
      docs - add views pg_stat_all_tables and indexes (#10248) · 74c5bb7d
      Mel Kiyama 提交于
      * docs - add views pg_stat_all_tables and indexes
      
      pg_stat_all_indexes
      pg_stat_all_tables
      
      Also add some statistics GUCs.
      --track_activities
      --track_counts
      
      * docs - clarify seq_scan and idx_scan refer to the total number of scans from all segments
      
      * docs - minor edits
      74c5bb7d
  22. 18 6月, 2020 1 次提交
    • M
      docs - update postGIS 2.5.4 docs (#10297) · 39a25f82
      Mel Kiyama 提交于
      * docs - update postGIS 2.5.4 docs
      
      Updates for Greenplum PostGIS 2.5.4 v2
      
      --Add list of PostGIS extensions
      --Add support for PostGIS TIGER geocoder, address standardizer and address rules files.
      --Update install/uninstall instructions to use CREATE EXTENSION command
      --Remove postgis_manager.sh script
      --Remove PostGIS Raster limitation.
      
      * docs updated PostGIS 2.5.4 docs based on review comments.
      
      * docs - removed postgis_raster extension.
      
      * docs - review comment updates  -Added section for installing the PostGIS package
      -Updated section on removing PostGIS package
      -Fix typos.
      
      * docs - updated platform requirements for PostGIS 2.5.4 v2
      -also removed "beta" from GreenplumR
      39a25f82
  23. 17 6月, 2020 1 次提交
  24. 12 6月, 2020 1 次提交
  25. 11 6月, 2020 2 次提交
  26. 10 6月, 2020 2 次提交
  27. 09 6月, 2020 1 次提交
  28. 08 6月, 2020 1 次提交
    • P
      Retire guc gp_session_role (#9396) · f6297b96
      Paul Guo 提交于
      Use guc gp_role only now and replace the functionality of guc gp_session_role with it
      also. Previously we have both gucs. The difference of the two gucs are (copied
      from code comment):
      
       * gp_session_role
       *
       * - does not affect the operation of the backend, and
       * - does not change during the lifetime of PostgreSQL session.
       *
       * gp_role
       *
       * - determines the operating role of the backend, and
       * - may be changed by a superuser via the SET command.
      
      This is not friendly for coding. For example, You could find Gp_role and
      Gp_session_role are set as GP_ROLE_DISPATCH on Postmaster & many aux processes
      on all nodes (even QE nodes) in a cluster, so you can see that to differ from
      QD postmaster and QE postmaster, current gpdb uses an additional -E option in
      postmaster arguments. These makes developers confusing when writing role branch
      related code given we have three related variables.  Also some related code is
      even buggy now (e.g. 'set gp_role' even FATAL quits).
      
      With this patch we just have gp_role now. Some changes which might be
      interesting in the patch are:
      
      1. For postmaster, we should specify '-c gp_role=' (e.g. via pg_ctl argument) to
         determine the role else we assume the utility role.
      
      2. For stand-alone backend, utility role is enforced (no need to specify by
         users).
      
      3. Could still connect QE/QD nodes using utility mode with PGOPTIONS, etc as
         before.
      
      4. Remove the '-E' gpdb hacking and align the '-E' usage with upstream.
      
      5. Move pm_launch_walreceiver out of the fts related shmem given the later is
         not used on QE.
      Reviewed-by: NBhuvnesh Chaudhary <bchaudhary@pivotal.io>
      Reviewed-by: NGang Xiong <gxiong@pivotal.io>
      Reviewed-by: NHao Wu <gfphoenix78@gmail.com>
      Reviewed-by: NYandong Yao <yyao@pivotal.io>
      f6297b96