That was my fear. This is what I'd like to have for all configurable parsers:
https://github.com/apache/tika/blob/main/tika-pipes/tika-emitters/tika-emitter-s3/src/main/java/org/apache/tika/pipes/emitter/s3/S3Emitter.java#L60 We don't yet. On Wed, Feb 10, 2021 at 10:59 AM Peter Kronenberg <[email protected]> wrote: > > I’m not seeing any of the params listed, only the parsers and mime-types > > -----Original Message----- > From: Tim Allison <[email protected]> > Sent: Wednesday, February 10, 2021 10:42 AM > To: [email protected] > Subject: Re: Config defaults > > Try one of these options from tika-app. I'd like to document every > configurable parser in javadocs for each parser...not there yet. > > } else if (arg.equals("--dump-minimal-config")) { > pipeMode = false; > dumpConfig(TikaConfigSerializer.Mode.MINIMAL); > } else if (arg.equals("--dump-current-config")) { > pipeMode = false; > dumpConfig(TikaConfigSerializer.Mode.CURRENT); > } else if (arg.equals("--dump-static-config")) { > pipeMode = false; > dumpConfig(TikaConfigSerializer.Mode.STATIC); > } else if (arg.equals("--dump-static-full-config")) { > pipeMode = false; > dumpConfig(TikaConfigSerializer.Mode.STATIC_FULL); > > On Wed, Feb 10, 2021 at 10:24 AM Peter Kronenberg <[email protected]> > wrote: > > > > Where are the tika-config defaults defined? Is there a ‘canonical’ list of > > defaults, sort of like the .properties files?
