1. 25 7月, 2019 8 次提交
  2. 24 7月, 2019 7 次提交
  3. 23 7月, 2019 8 次提交
    • L
      docs - revisit citext module doc contents (#8120) · cc2bd393
      Lisa Owen 提交于
      cc2bd393
    • A
      Add --tablespace-dir option to pg_regress · 7a6ea5e8
      Adam Berlin 提交于
      This allows a user to specify regress options to consistently make
      isolation2 tests for pg_basebackup_with_tablespaces pass.
      
      Currently, the tests fail if the user's source directory creates
      a tablespace location directory path that is longer than the 100
      character limit for pg_basebackup to add a tablespace location
      directory to the backup.
      7a6ea5e8
    • A
      Remove pipeline that is not being used. · f9d8eb1c
      Adam Berlin 提交于
      f9d8eb1c
    • Z
      Refactor and improve cdbpath_motion_for_join · e2731add
      Zhenghua Lyu 提交于
      This commit refactor the function `cdbpath_motion_for_join` to make
      it clear and generate better plan for some cases.
      
      In distributed computing system, to gather distributed data into a
      singleQE should always be the last choice. Previous code for general
      and segmentgeneral, when they are not ok_to_replicate, will try to
      gather other locus to singleQD. This commit improves this by firstly
      trying to add redistributed motion.
      
      The logic for the join result's locus (outer's locus is general):
        1. if outer is ok to replicated, then result's locus is the same
           as inner's locus
        2. if outer is not ok to replicated (like left join or wts cases)
           2.1 if inner's locus is hashed or hashOJ, we try to redistribute
               outer as the inner, if fails, make inner singleQE
           2.2 if inner's locus is strewn, we try to redistribute
               outer and inner, if fails, make inner singleQE
           2.3 just return the inner's locus, no motion is needed
      
      The logic for the join results' locus (outer's locus is segmentgenral):
      - if both are SegmentGeneral:
           1. if both locus are equal, no motion needed, simply return
           2. For update cases. If resultrelation
              is SegmentGeneral, the update must execute
              on each segment of the resultrelation, if resultrelation's
              numsegments is larger, the only solution is to broadcast
              other
           3. no motion is needed, change both numsegments to common
             - if only one of them is SegmentGeneral:
               1. consider update case, if resultrelation is SegmentGeneral,
                  the only solution is to broadcast the other
               2. if other's locus is singleQE or entry, make SegmentGeneral
                  to other's locus
               3. the remaining possibility of other's locus is partitioned
                  3.1 if SegmentGeneral is not ok_to_replicate, try to
                      add redistribute motion, if fails gather each to
                      singleQE
                  3.2 if SegmentGeneral's numsegments is larger, just return
                      other's locus
                  3.3 try to add redistribute motion, if fails, gather each
                      to singleQE
      e2731add
    • Z
      Remove Replicated Locus in cdbpath_motion_for_join · 20248a31
      Zhenghua Lyu 提交于
      Locus type Replicated can only be generated by join operation.
      And in the function cdbpathlocus_join there is a rule:
          `<any locus type> join <Replicated> => any locus type`
      
      Proof by contradiction, it shows that when code arrives here,
      it is impossible that any of the two input paths' locus
      is Replicated. So we add two asserts here.
      20248a31
    • A
      Re-enable `COPY (query) TO` on utility mode · 41a8cf29
      Adam Lee 提交于
      It was disabled by accident several months ago while implementing
      `COPY (query) TO ON SEGMENT`, re-enable it.
      
      ```
      commit bad6cebc
      Author: Jinbao Chen <jinchen@pivotal.io>
      Date:   Tue Nov 13 12:37:13 2018 +0800
      
          Support 'copy (select statement) to file on segment' (#6077)
      ```
      
      WARNING: there are no safety protections on utility mode, it's not
      recommended except disaster recovery situation.
      Co-authored-by: NWeinan WANG <wewang@pivotal.io>
      41a8cf29
    • D
      Behave CLI tests: use n1-standard-2 for ccp clusters · d26a2d65
      David Krieger 提交于
      The recent sysctl changes(42930ed1) modified the ccp nodes.
      Somehow, this causes memory issues on our ccp nodes for
      Behave.  There was a recent, similar modification for
      gpexpand(6f494638).
      d26a2d65
    • W
      Rid resource group on hashagg spill evaluation (#8199) · 40d955d6
      Weinan WANG 提交于
      Resource group believe memory access speed always faster than disk,
      and it adds hashagg executor node spill mechanism into its memory management.
      If the hash table size overwhelms `max_mem`, in resource group model, the hash
      table does not spill and fan out data. Resource group wants to grant more memory
      for the hash table. However, this strategy impact hash collision rate, so that
      some performance regression in some OLAP query.
      
      We rid resource group guc when hashagg evaluate if it needs to spill.
      Co-authored-by: NAdam Li <ali@pivotal.io>
      40d955d6
  4. 22 7月, 2019 8 次提交
    • A
      Fix memory quota calculation of aggregation · 79c83ea1
      Adam Lee 提交于
      MemoryAccounting_RequestQuotaIncrease() returns a number in bytes, but
      here expects kB.
      79c83ea1
    • tubocurarine's avatar
      Fix compile issue for PyGreSQL on MacOS. · 0acc22e1
      tubocurarine 提交于
      When building file `_pg.so` on MacOS platform, distutil will invoke
      clang compiler with arguments `-arch x86_64 -arch i386`. But type
      `int128` is not available for i386 architecture, thus following error occurs:
      
      ```
      In file included from pgmodule.c:32:
      In file included from include/postgres.h:47:
      include/c.h:427:9: error: __int128 is not supported on this target
      typedef PG_INT128_TYPE int128
              ^
      include/pg_config.h:838:24: note: expanded from macro 'PG_INT128_TYPE'
                             ^
      In file included from pgmodule.c:32:
      In file included from include/postgres.h:47:
      include/c.h:433:18: error: __int128 is not supported on this target
      ```
      
      By adding `['-arch', 'x86_64']` into `extra_compile_args`, distutil will
      remove `-arch i386` from compiler arguments, thus fixes compile error.
      0acc22e1
    • A
      Refactor to remove raw_buf_done from external scan · 585e90b6
      Adam Lee 提交于
      scan->raw_buf_done was used for custom external table only, refactor
      to remove the MERGE_FIXME.
      
      cstate->raw_buf_len is safe to use since we operate pstate->raw_buf
      directly in this case.
      585e90b6
    • A
      Remove some unnecessary MERGE_FIXMEs · b6afd44c
      Adam Lee 提交于
      About the `isjoininner`, I searched the history commit in merge branch,
      it was removed by "e2fa76d8 - Use parameterized paths to generate
      inner indexscans more flexibly" on upstream from 9.2, that MERGE_FIXME
      was there because at that time functions which rely on `isjoininner`
      refused to compile.
      b6afd44c
    • A
      Expand sreh rejected count to int64 · 1f8254a8
      Adam Lee 提交于
      If there are more than INT_MAX rejected rows, this will overflow. That
      is possible at least if you specify the segment reject limit as a
      percentage.
      
      Still keep the SEGMENT REJECT LIMIT value as int, expanding that will
      break lots of things like catalog but benefit too little.
      1f8254a8
    • A
      Place cdbsreh counting into copy function · 1425f036
      Adam Lee 提交于
      Now the processed and rejected counting are in the NextCopyFrom() only,
      which reads next tuple from file, makes much more sense.
      1425f036
    • A
      Implement macros Trap and TrapMacro for frontend · c6cb74ab
      Adam Lee 提交于
      For future usage, and to remove a MERGE_FIXME.
      c6cb74ab
    • N
      Keep the order of reusing idle gangs · 51a7ea27
      Ning Yu 提交于
      For example:
      In the same session,
      query 1 has 3 slices and it creates gang 1, gang 2 and gang 3.
      query 2 has 2 slices, we hope it reuses gang 1 and gang 2 instead of other
      cases like gang 3 and gang 2.
      
      In this way, the two queries can have the same send-receive port pair. It's
      useful in platform like Azure. Because Azure limits the number of different
      send-receive port pairs (AKA flow) in a certain time period.
      Co-authored-by: NHubert Zhang <hzhang@pivotal.io>
      Co-authored-by: NPaul Guo <pguo@pivotal.io>
      Co-authored-by: NNing Yu <nyu@pivotal.io>
      51a7ea27
  5. 20 7月, 2019 2 次提交
  6. 19 7月, 2019 1 次提交
  7. 18 7月, 2019 6 次提交
    • D
      Remove remnants of ignore-header in atmsort/gpdiff · dd053277
      Daniel Gustafsson 提交于
      Commit 3168a627 removed support for
      ignoring table header whitespace differences in test output, but the
      patch was a few bricks shy of a load. There were enough leftover bits
      that the option could be invoked, but without it actually working.
      This removes the leftovers.
      
      Looking at this it became clear that we had a whitespace ignore which
      was dead code, as it couldn't be triggered from the outside. Rather
      than trying to revive more cruft in atmsort, this removes the code
      since we clearly aren't using it.
      Reviewed-by: NAshwin Agrawal <aagrawal@pivotal.io>
      dd053277
    • A
      Address some minor comments. · 297b5618
      Adam Berlin 提交于
      297b5618
    • A
      Remove unused function. · 249a551a
      Adam Berlin 提交于
      249a551a
    • A
      Speed up tests by using xlog noop · b981d314
      Adam Berlin 提交于
      - also, wait for primaries to recover after panics
      - also, checkpoint at the end of each test to set redo point to not leak into next text
      b981d314
    • H
      Fix direct dispatch answer file to use one-phase commit message. · 3d7c411a
      Hubert Zhang 提交于
      One phase commit message change to `Distributed Commit (one-phase)`
      We need to fix the new case introduced by commit #6f9368
      in direct disptach answer file.
      3d7c411a
    • W
      Fix flaky in query_info_hook_test when interconnect in TCP mode (#8163) · 31d8434a
      Wang Hao 提交于
      The goal of query_info_hook_test is to ensure query_info_collect_hook
      are placed in porper location for emitting query execution metrics.
      This test was flaky due to uncertain order of calling between QD and
      QEs when the interconnect in TCP mode.
      This fix simply silent all QEs from emitting messages.
      This is acceptable from the scope of this test because we just want
      to make sure hooks are called at correct timing for each backend.
      It should not be disturbed by query dispatching between QD and QEs.
      31d8434a