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
1. If `--create` is specified it will attempt to create any missing tables. Existing tables will not be touched even if the schema does not match what is expected.
65
-
2. If `--truncate` is specified any tables about to be sampled will be first truncated.
66
-
3. Any sampled tables that are referenced by other tables will first be
67
-
materialized into temporary tables on the source database.
65
+
2. If `--truncate` is specified any tables about to be sampled will be first truncated. subsetter expects there to be no existing data in the destination database unless configured to run in _merge_ mode.
66
+
3. Any sampled tables that are referenced by other tables will first be materialized into temporary tables on the source database.
68
67
4. Data is copied for each table from the source to destination.
69
68
70
-
The sampler also supports filters which allow you to transform and anonymize your
71
-
data using simple column filters. Check the [example](subsetter.example.yaml) config's
72
-
'sampler.filters' section for more details on what filters are available and how to
73
-
configure them. If needed, custom Python plugins can be used to perform
74
-
arbitrary transformations.
75
-
76
69
## Plan and sample in one action
77
70
78
71
There's also a `subset` subcommand to perform the `plan` and `sample` actions
0 commit comments