1

I have configured cstore_fdw successfully on our CitusDB installation running on an Ubuntu server in AWS.

I tried to install the same on one of our client's servers running CentOS 6.5. I could install it but cannot execute COPY commands.

Is there any documentation on using COPY with cstore_fdw-based tables in Citus?

jasonmp85
  • 6,749
  • 2
  • 25
  • 41
sajith.vim
  • 87
  • 6

2 Answers2

1

CitusDB with cstore_fdw is supported, but CitusDB itself does not support COPY. Instead you can use the \STAGE command by following these instructions.

What's the specific error message you saw on Ubuntu vs. CentOS?

jasonmp85
  • 6,749
  • 2
  • 25
  • 41
Marco Slot
  • 401
  • 3
  • 5
0

Citus supports COPY command starting from 5.1 release. You could use it as the same manner you would use with regular tables. Please see Citus documentation on bulk data loading.

Murat Tuncer
  • 126
  • 3