1. 14 3月, 2019 1 次提交
  2. 06 2月, 2019 2 次提交
    • H
      Re-implement compression of hash join/agg spill files. · d130fe19
      Heikki Linnakangas 提交于
      This re-implements compression that was lost in the WorkFile/BufFile
      refactoring. This new implementation uses Zstandard rather than zlib.
      
      Compression can be enabled with "gp_workfile_compression=on". It is
      disabled by default.
      Reviewed-by: NMel Kiyama <mkiyama@pivotal.io>
      Reviewed-by: NYandong Yao <yyao@pivotal.io>
      d130fe19
    • H
      Replace WorkFile stuff with plain BufFiles. · f1ef3668
      Heikki Linnakangas 提交于
      Temporary files have been somewhat inconsistent across different
      operations. Some operations used the Greenplum-specific "workfile" API,
      while others used the upstream BufFile API directly.
      
      The workfile API provides some extra features: workfiles are visible in
      the gp_toolkit views, and you can limit their size with the
      gp_workfile_limit_* GUCs. The temporary files that didn't go through the
      workfile API were exempt, which is not cool.
      
      To make things consistent, remove the workfile APIs. Use BufFiles
      directly everywhere. Re-implement the user-facing view and tracking the
      limits, on top of the BufFile API, so that those features are not lost.
      
      The workfile API also supported compressing the temporary files using
      zlib. That feature is lost with this commit, but will be re-introduced by
      the next commit.
      
      Another feature that this removes, is checksumming temporary files.
      That doesn't seem very useful, so we can probably live without it. But
      if it's still needed, then that should also be re-implemented on top
      of the BufFile API later.
      
      Discussion: https://groups.google.com/a/greenplum.org/d/msg/gpdb-dev/8Xe9MGor0pM/SjqiOo83BAAJReviewed-by: NMel Kiyama <mkiyama@pivotal.io>
      Reviewed-by: NYandong Yao <yyao@pivotal.io>
      f1ef3668
  3. 22 12月, 2018 1 次提交
  4. 07 12月, 2018 1 次提交
    • D
      Remove alert sending support via email and SNMP · 65822b80
      Daniel Gustafsson 提交于
      The support for sending alerts via Email or SNMP was quite a kludge,
      and there are much better external tools for managing alerts than
      what we can supply in core anyways so this retires the capability.
      
      All references to alert sending in the docs are removed, but there
      needs to be section written about how to migrate off this feature
      in the release notes or a similar location.
      
      Discussion: https://github.com/greenplum-db/gpdb/pull/6384
      65822b80
  5. 05 12月, 2018 1 次提交
  6. 29 11月, 2018 1 次提交
    • A
      Remove gp_num_contents_in_cluster GUC. · 5f10a924
      Ashwin Agrawal 提交于
      Given the online gpexpand work, the gp_num_contents_in_cluster GUC is
      unused. So, delete the same from code to avoid confusions and eliminate this
      long argument required to start a postgres instance in gpdb.
      5f10a924
  7. 15 10月, 2018 1 次提交
    • N
      Retire threaded dispatcher · 87394a7b
      Ning Yu 提交于
      Now there is only the async dispatcher.  The dispatcher API interface is
      kept so we might add new backend in the future.
      
      The GUC gp_connections_per_thread is also retired which was used to
      switch between the async and threaded backends.
      87394a7b
  8. 25 8月, 2018 1 次提交
  9. 09 7月, 2018 1 次提交
  10. 27 6月, 2018 1 次提交
  11. 13 1月, 2018 2 次提交
  12. 28 7月, 2017 1 次提交
    • C
      Conditionalize gpcc (#2832) · d09f216c
      Chuck Litzell 提交于
      * De-conflate gpperfmon & gpcc. Conditionalize gpcc. Remove unreferenced topics.
      
      * Update GPAdminGuide.ditaval
      
      Remove addition to Admin Guide ditaval
      
      * Fixes from review.
      d09f216c
  13. 13 5月, 2017 1 次提交
    • C
      Relocates gpperfmon reference from GPCC (#2388) · 1058db9f
      Chuck Litzell 提交于
      * Relocates gpperfmon reference from GPCC
      
      * Remove emcconnect history and itorators from PDF ditamap
      
      * Remove iterator metrics subtopic from PDF ditamap
      
      * Additional edits to acknowledge gpperfmon without GPCC
      
      * Incorporate gpperfmon.conf reference into gpperfmon_install reference
      1058db9f
  14. 26 2月, 2017 1 次提交
    • D
      Remove gp_external_grant_privileges · 1e20c783
      Daniel Gustafsson 提交于
      The gp_external_grant_privileges GUC was needed before 4.0 to let
      non superusers create external tables for gphdfs and http protocols.
      This GUC was however deprecated during the 4.3 cycle so remove all
      traces of it. The utility of the GUC was replaced in 4.0 when rights
      management for external tables was implemented with the normal GRANT
      REVOKE framework so this has been dead code for quite some time.
      
      Remove GUC, code which handles it, all references to it from the
      documentation and a release notes entry.
      1e20c783
  15. 25 1月, 2017 1 次提交