-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SNOW-1813772 Enable old IT suites for iceberg tables #917
base: master
Are you sure you want to change the base?
Conversation
|
||
/** Ingest large amount of rows. */ | ||
@RunWith(Parameterized.class) | ||
public class StreamingIngestBigFilesIT { | ||
public abstract class BigFilesITBase { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this passing?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes it's passing with the JDBC uploader. The max chunk size in this test is 19MB.
|
||
@Parameter public String compressionAlgorithm; | ||
@Parameter(1) | ||
public Constants.IcebergSerializationPolicy icebergSerializationPolicy; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lets remove the runwith parameterized from the base class, and remove the parameter annotations from here too. Makes class design murky.
Let the derived classes have the runwith and the @parameter, and pass in the values via beforeAll.
I'm also debating the value of running this IT for iceberg when you've already authored a much better large file test thats in my PR rn.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clearly its not exercising multipart upload, if it was iceberg tests would've failed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed this IT and use the on with larger file size for Iceberg streaming.
9448f1c
to
160c4dc
Compare
Enable all remaining FDN only ITs for Iceberg table streaming.