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
Would be nice to be able to generate bulk import data for the CI test that covers a subset of the table instead of the entire table. This may be possible with a -o min=y -o max=z config command line options, not sure. If it is possible, could update example test scripts to suggest using it.
The text was updated successfully, but these errors were encountered:
There are existing test options test.ci.ingest.row.min and test.ci.ingest.row.max that would support this. What is really needed is the ability to set those on the command line as follows.
Other continuous ingest programs support setting test properties on the command line, however the bulk command does not. The scripts and java code need to be tweaked so that the -o options can make it to ContinuousEnv in the map reduce code.
Also it would be much more natural if the min and max option had hex values instead of decimal, because all of the data and split points are hex.
Once the min and max options are supported, the map reduce job should intersect those with the tablet split point only using the split points that fall within the min and max range. If this not done the map reduce job could end up generating empty files.
Would be nice to be able to generate bulk import data for the CI test that covers a subset of the table instead of the entire table. This may be possible with a
-o min=y -o max=z
config command line options, not sure. If it is possible, could update example test scripts to suggest using it.The text was updated successfully, but these errors were encountered: