Greg Foreman

Results 6 comments of Greg Foreman

Hello @markap14 , thanks for posting. Yes, the existing method (dynamic properties) requires knowing what the user metadata keys will be in advance. My client has a scenario where one...

@markap14 one other approach could be to have a special dynamic property that the processor uses to read key/value pairs from the dynamic property value. Maybe something like a key...

@markap14 i created a custom s3 nar with the following mod: ``` final Map userMetadata = new HashMap(); for (final Entry entry : context.getProperties().entrySet()) { if (entry.getKey().isDynamic()) { final String...

@exceptionfactory thanks for the idea on an approach. I guess a decision needs to be made: Should the PutS3Object processor support dynamic metadata keys? +1 here for supporting dynamic metadata...

@exceptionfactory thanks for responding. I see your point about the 404 scenario, good catch. I will add the property and submit the changes.

@dan-s1 and @exceptionfactory thanks for the reviews/suggestions. Updates committed.