在Solaris上使用Greenplum數據庫版本3.2.3。錯誤:段連接失敗:allocateWriterGang試圖返回一個壞羣。 (cdbgang.c:2591)
第1步。創建一個表。
CREATE TABLE ivdb.OPTION_PRICE (
SecurityID integer NOT NULL,
Date timestamp NOT NULL,
Root char(5) NOT NULL,
Suffix char(2) NOT NULL,
Strike integer NOT NULL,
Expiration timestamp NOT NULL,
CallPut char(1),
BestBid real NOT NULL,
BestOffer real NOT NULL,
LastTradeDate timestamp NULL,
Volume integer NOT NULL,
OpenInterest integer NOT NULL,
SpecialSettlement char(1) DEFAULT '0',
ImpliedVolatility real NOT NULL,
Delta real NOT NULL,
Gamma real NOT NULL,
Vega real NOT NULL,
Theta real NOT NULL,
OptionID integer NOT NULL,
Adjustmentfactor integer DEFAULT 1 NOT NULL,
CONSTRAINT PK_OPTION_PRICE PRIMARY KEY (Date, Root, Suffix))
PARTITION BY RANGE (Date) (
START (timestamp '01/01/1996') INCLUSIVE
END (timestamp '01/01/2020') EXCLUSIVE
EVERY (INTERVAL '1 month'));
步驟2:從另一個表中插入數據。 (這一個是普通的香草,不分區的,沒有約束它564392723行。)
INSERT INTO OPTION_PRICE SELECT * FROM casey_option_price;
結果:
-- Executing query: INSERT INTO OPTION_PRICE SELECT * FROM casey_option_price; NOTICE: Releasing gangs to finish aborting the transaction. ERROR: Segment connection failed: allocateWriterGang attempted to return a bad gang. (cdbgang.c:2591) ********** Error ********** ERROR: Segment connection failed: allocateWriterGang attempted to return a bad gang. (cdbgang.c:2591) SQL state: XX000
壞團伙的東西帶來了整場演出停止,需要重新啓動數據庫來重新清理事情。
在網上沒有找到太多,有一個與greenplum打開的幫助臺票,我想我也會把它浮在這裏。如果在你做之前得到一個解決方案,將回來一個解決方案。
對不起,沒有足夠的代表標籤與「greenplum」。