テーブル作成後、作成したデータを各データノードにインポートします。 Enterprise Postgresが提供する高速データロード機能(pgx_loaderコマンド)を使った例 $ pgx_loader load -j 3 -c "copy warehouse from '/tmp/warehouse.csv' delimiter ',' csv" -d postgres -h sv1 ...
PSequel設定 データベース操作基本 ローカルのsqlファイルからSchema作成 test_table.sql CREATETABLEIFNOTEXISTStest_table(idserialPRIMARYKEY,nameVARCHAR(50)UNIQUENOTNULL,created_onTIMESTAMPNOTNULL); docker execで test_table.sqlをtest_dbに流す: docker exec -i postgres psql -U postgres test_db <...