Hiroyuki Sato
Hiroyuki Sato
Now I'm developing [`embulk-test`](https://github.com/hiroyuki-sato/embulk-test) gem for testing embulk ruby plugin. Please let me know if you have any comments. In my plan, the plugin developer runs the following steps. *...
I'm creating a new ruby plugin template. I'll appreciate if you have any comment. https://github.com/hiroyuki-sato/embulk/tree/split-ruby-test This branch works well to `bundle exec rake embulk:test:download_jar` command. Example output is below. Before...
Hello, @kakoni It is known the issue. Please refer https://github.com/treasure-data/digdag/issues/426 You need the following wrapper script with `fish`. ```bash #!/bin/bash exec /bin/bash "#{libexec}/embulk" "$@" ```
Hello, @kakoni It's for Windows. The first part is treated as a bat file. https://www.slideshare.net/frsyuki/fighting-against-chaotically-separated-values-with-embulk/42
Hello, @GitSumito I'm not familiar with this plugin much. It seems that the plugin failed to get table info from `template_table`. https://github.com/embulk/embulk-output-bigquery/blob/master/lib/embulk/output/bigquery/bigquery_client.rb#L47 Does this table exist? Have you ever tried...
```java class JRubyTest { private String msg; public JRubyTest() { System.out.println("no args"); this.msg = "default"; } public JRubyTest(String msg) { System.out.println("with args"); this.msg = msg; } public String hello(){ return...
Hello, @samuraraujo. Could you try `json` type?
Thanks! I'll keep this issue as open.
Hello, @Bagavathyshopf If you use CSV format, could you try JSON format? https://github.com/embulk/embulk-output-bigquery#formatter-performance-issue
Hello, @dungdt2 It seems that this issue similar to #1148 What OS do you use on ECS2? Could you tell us your Embulk and Java version? (ex. 0.9.22) I've never...