1. 13 6月, 2017 3 次提交
  2. 12 6月, 2017 1 次提交
  3. 10 6月, 2017 8 次提交
  4. 09 6月, 2017 11 次提交
  5. 08 6月, 2017 12 次提交
  6. 07 6月, 2017 5 次提交
    • A
      Update HA documentation (#2528) · 81ebe75b
      Andreas Scherbaum 提交于
      * Update HA documentation
      
      Mirrors must reside on different storage systems too.
      Master fail-over must be triggered externally.
      10-Gb Ethernet is optional.
      81ebe75b
    • P
      Add pipeline job to run icw under TCP interconnect · ae8c0a21
      Pengzhou Tang 提交于
      ae8c0a21
    • P
      Fix an unexpectd cursor error under TCP interconnect · 09aca5fa
      Pengzhou Tang 提交于
      Under former TCP interconnect, after declaring a cursor for an invalid
      query like "declare c1 cursor for select c1/0 from foo", the following FETCH
      command can still fetch an empty row instead of an error. This is
      incorrect and does not consist with UDP interconnect.
      
      The RCA is senders of TCP interconnect always send an EOF message to
      their peers regardless of the errors on segments, so the receivers can
      not tell the difference of EOF or an error.
      
      The solution in this commit is do not send the EOF to the peers if senders is
      encountering an error and let the QD to check the whole segments status when it
      can not read data from interconnect for a long time.
      09aca5fa
    • P
      restore TCP interconnect · 353a937d
      Pengzhou Tang 提交于
      This commit restore TCP interconnect and fix some hang issues.
      
      * restore TCP interconnect code
      * Add GUC called gp_interconnect_tcp_listener_backlog for tcp to control the backlog param of listen call
      * use memmove instead of memcpy because the memory areas do overlap.
      * call checkForCancelFromQD() for TCP interconnect if there are no data for a while, this can avoid QD from getting stuck.
      * revert cancelUnfinished related modification in 8d251945, otherwise some queries will get stuck
      * move and rename faultinjector "cursor_qe_reader_after_snapshot" to make test cases pass under TCP interconnect.
      353a937d
    • P
      Misc changes of gp_log_gang · 9d5b10ae
      Pengzhou Tang 提交于
      * Change the default level of gp_log_gang to off.
      * Log the query plan size in level TERSE, it's useful for debugging.
      9d5b10ae