Yulong

Results 9 comments of Yulong

> @dineshvelmuruga What do you mean "read the image"? Do you mean read data with ExampleGen from S3? > > If you set the env vars on your pipeline as...

> > > @dineshvelmuruga What do you mean "read the image"? Do you mean read data with ExampleGen from S3? > > > If you set the env vars on...

> @dineshvelmuruga @wyljpn I believe that you are both setting your env vars incorrectly. While the values are likely correct, they need to be set at container runtime, not at...

@ConverJens > If I'm reading this correct you are now reading data from your pvc and csv example gen is supposed to output to s3, right? Yes. Adding "--runner=DirectRunner" still...

@ConverJens Sorry, I thought we only need to configure parameters for pipeline_operator_funcs, so I had deleted the parameters for beam args. After I passed the parameters in beam args, outputs...

@ConverJens Yes, thank you for your contributions!

> Hi, @mosche I encountered the same issue when running the below code. ``` public static class MinioS3ClientBuilderFactory extends DefaultS3ClientBuilderFactory { @Override public AmazonS3ClientBuilder createBuilder(S3Options s3Options) { AmazonS3ClientBuilder builder =...

I added a condition and it works! Remove the "content-length" only when it equals "0" ``` if (!StringUtils.isAllLowerCase(HttpHeaders.CONTENT_LENGTH) && headers.containsKey(HttpHeaders.CONTENT_LENGTH) && headers.get("content-length").equals("0")) { headers.remove(HttpHeaders.CONTENT_LENGTH.toLowerCase()); } ```