--
You received this message because you are subscribed to the Google Groups "Greenplum Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to gpdb-users+unsubscribe@greenplum.org.
To post to this group, send email to gpdb-...@greenplum.org.
Visit this group at https://groups.google.com/a/greenplum.org/group/gpdb-users/.
For more options, visit https://groups.google.com/a/greenplum.org/d/optout.
I think we can help more if we know more about what you are trying to do Daniel
On Tue, Jan 16, 2018 at 4:35 PM, Jasper Li <ja...@pivotal.io> wrote:
Besides, if you do need file on each segment, does 'copy ... on segment' satisfy your requirement?
Best wishesJasper--
On Wed, Jan 17, 2018 at 7:00 AM, Ivan Novick <ino...@pivotal.io> wrote:
What problem are you trying to solve?Most users use gpfdist protocol or s3 protocol or gphdfs protocol.Are you using 'file' protocol?
On Tue, Jan 16, 2018 at 2:40 PM, Daniel Wang <dan...@awakenetworks.com> wrote:
Hello,I'm trying to understand the impact of the limit on number of file-protocol accessed external files specified for a particular external table.This seems to be the best reference:http://engineering.pivotal.io/post/the_file_protocol_for_external_tables_in_greenplum_database/We can view the number of external files with pg_max_external_files ( https://gpdb.docs.pivotal.io/500/ref_guide/system_catalogs/pg_max_external_files.html ).-- Is this limit configurable (i.e., can we choose 100 files per segment server instead of just 1)?-- It seems to be a limit enforced during external table creation. Is it just per-external-table or is it global or per-query (i.e., if I run select * from <exttable> where ..., will they execute concurrently)?Happy to browse through the code if no one knows the answers, but would really like a starting point in this relatively large code base.Cheers,-Daniel
--
You received this message because you are subscribed to the Google Groups "Greenplum Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to gpdb-users+...@greenplum.org.
To post to this group, send email to gpdb-...@greenplum.org.
Visit this group at https://groups.google.com/a/greenplum.org/group/gpdb-users/.
For more options, visit https://groups.google.com/a/greenplum.org/d/optout.
--
--
You received this message because you are subscribed to the Google Groups "Greenplum Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to gpdb-users+...@greenplum.org.
To post to this group, send email to gpdb-...@greenplum.org.
Visit this group at https://groups.google.com/a/greenplum.org/group/gpdb-users/.
For more options, visit https://groups.google.com/a/greenplum.org/d/optout.
To unsubscribe from this group and stop receiving emails from it, send an email to gpdb-users+unsubscribe@greenplum.org.
To unsubscribe from this group and stop receiving emails from it, send an email to gpdb-users+unsubscribe@greenplum.org.
The maximum number of external table files allowed per segment host when using the external table file protocol is same as the segment number on each segment node, which is global, and can not changed by guc.
--
Hi Daniel,gpfdist is available in opensource version and it is your best choice to bulk-load the data.