You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Attempting to use the --split-tables-larger-than and in the case of a table with a pk of int or when switching to use CTID, pgcopydb is not splitting the copy. For example, given the following table:
And specifying the following option, no split occurs:
pgcopydb list table-parts --schema-name public --table-name order_line --split-tables-larger-than 50GB
14:33:52.344 1099240 INFO Running pgcopydb version 0.17-1.pgdg110+1 from "/usr/bin/pgcopydb"
14:33:52.387 1099240 INFO Using work dir "/home/shaneborden_google_com/pgcopy_tmp/pgcopydb"
14:33:52.388 1099240 INFO Table public.order_line is 97 GB large which is larger than --split-tables-larger-than 50 GB, and does not have a unique column of type integer: splitting by CTID
14:33:52.388 1099240 INFO Table public.order_line COPY will be split 0-ways
Part | Min | Max | Count
-------------+--------------+--------------+-------------
If I switch to use a table with a singular pk, it still does not work:
And utilizing the following command the split still will not work:
pgcopydb list table-parts --schema-name public --table-name uuid_mod_test --split-tables-larger-than 1MB
15:05:47.567 1099748 INFO Running pgcopydb version 0.17-1.pgdg110+1 from "/usr/bin/pgcopydb"
15:05:47.609 1099748 INFO Using work dir "/home/shaneborden_google_com/pgcopy_tmp/postgres/pgcopydb"
15:05:47.610 1099748 INFO Table public.uuid_mod_test COPY will be split 0-ways
Part | Min | Max | Count
-------------+--------------+--------------+-------------
What is needed to split these tables?
The text was updated successfully, but these errors were encountered:
Attempting to use the --split-tables-larger-than and in the case of a table with a pk of int or when switching to use CTID, pgcopydb is not splitting the copy. For example, given the following table:
And specifying the following option, no split occurs:
If I switch to use a table with a singular pk, it still does not work:
And utilizing the following command the split still will not work:
What is needed to split these tables?
The text was updated successfully, but these errors were encountered: