Ensure that the IP addresses and ports of servers where CNs and DNs are deployed can connect to those of the GDS server.
1 | INSERT INTO [Foreign table name] SELECT * FROM [Source table name]; |
Create batch processing scripts to export data in parallel. The degree of parallelism depends on the server resource usage. You can test several tables and monitor resource usage to determine whether to increase or reduce the amount. Common resource monitoring commands include top for memory and CPU usage, iostat for I/O usage, and sar for networks. For details about application cases, see Exporting Data Using Multiple Threads.
1 | INSERT INTO foreign_tpcds_reasons SELECT * FROM tpcds.reason; |
1 | INSERT INTO foreign_tpcds_reasons SELECT * FROM tpcds.reason WHERE r_reason_sk=1; |
1 | INSERT INTO foreign_tpcds_reasons SELECT RAWTOHEX(c) FROM tpcds.reason; |