Hello everyone!
I modified tap-jira --variant-singer.io abit.
I made it locally runnable (gave pip_url as -e /<local_path_to_tap>, copy pasted the tap-setting from meltano_hubs .yaml file to meltano.yaml and installed it locally).
It runs, but the encoding from stdout isn't utf-8 for some reason.
Any ideas what i have to do fix the encoding?
Appreciate all the help!
e
edgar_ramirez_mondragon
10/30/2023, 5:20 PM
Hi @rasmus_bobkov!
Well, the first step would be to identify what part of the tap's output isn't utf-8. You can send the output to a file and inspect the lines to see if there's anything suspicious:
Copy code
meltano invoke tap-jira > out.jsonl
r
rasmus_bobkov
10/31/2023, 7:28 AM
Heya @edgar_ramirez_mondragon!
The entire output is not in utf-8 (i'm missing all the Estonian letters i need, like ö,ä,ö,ü )
{"type": "RECORD", "stream": "fields", "record": {"id": "customfield_18536", "name": "Tehnilise teenuse t\u00fc\u00fcp"}, "time_extracted": "2023-10-31T072438.096611Z"}
similarly for all other mentioned characters
rasmus_bobkov
10/31/2023, 7:33 AM
I also tested the tap-jira built with meltanoSDK, this one is meant for jira cloud API (https://github.com/MeltanoLabs/tap-jira).
routed it against jira on prem API and again same thing...no utf-8.
it works fine when i install it via "meltano add extractor <plugin_name>
rasmus_bobkov
10/31/2023, 9:21 AM
i'm actually mistaken, i have the same problem also when i install it via "meltano add extractor <plugin_name>"
I didn't have this issue before, strange