Does anybody know how to read logs from a Kubernet...
# getting-started
b
Does anybody know how to read logs from a Kubernetes Pod that’s running a Meltano ETL pipeline ? somehow my stderr is empty
a
Hi @binoy_shah you might have something specific in your setup. To confirm for you curiosity, we currently run a lot of 'meltano elt' pods - stdout from a tap is sent to the target of course, but stderr is output as normal in our case. Things to check / share with the Meltano team: • Are you on the latest version? The logging has change recently and we are not running that version in our Kubernetes yet. • Does a regular 'meltano discover' or 'meltano config ...' output anything
Copy code
$ meltano config tap-spreadsheets-anywhere list
2022-02-07T15:49:11.299793Z [info     ] ascii passed initial chaos probing. Mean measured chaos is 0.300000 %
2022-02-07T15:49:11.300268Z [info     ] ascii should target any language(s) of ['Latin Based']
2022-02-07T15:49:11.307508Z [info     ] We detected language [('English', 1.0), ('Dutch', 1.0), ('Indonesian', 1.0), ('German', 1.0), ('Simple English', 1.0)] using ascii
2022-02-07T15:49:11.307622Z [info     ] ascii is most likely the one. Stopping the process.
tables [env: TAP_SPREADSHEETS_ANYWHERE_TABLES] current value: None (default)
	An array holding json objects that each describe a set of targeted source files. See docs for details.

To learn more about extractor 'tap-spreadsheets-anywhere' and its settings, visit <https://hub.meltano.com/extractors/spreadsheets-anywhere.html>

$
b
Thanks @aaron_phethean I will investigate more