Hitoshi Tanaka

Results 51 comments of Hitoshi Tanaka

> A concern is that requests and payments won't be rolled back when commit of job accounts fails. I think it is permissible because it will be rare case (or...

If all configuration elements can be overwritten, we may not need variables. > A concern here is that merging the job-specific configuration to the global configuration might be difficult to...

I'm using `EmbulkEmbed` in my Java application. ``` Bootstrap bootstrap = new EmbulkEmbed.Bootstrap(); bootstrap.addModules(new Module() { @Override public void configure(Binder binder) { InjectedPluginSource.registerPluginTo(binder, InputPlugin.class, "mysql", MySQLInputPlugin.class); InjectedPluginSource.registerPluginTo(binder, OutputPlugin.class, "mysql", MySQLOutputPlugin.class);...

@dmikurube > Did you have any specific reason to use initializeCloseable, not initialize? I use `EmbulkEmbed` in multiple threads. And embulk will be executed at any times and multiple times....

@dmikurube If embulk (and plugins) releases resources at end of execution (without calling `close`), `close` is not needed.

`Path#toRealPath` converts short file names to long file names.

@fukasawah Thank you for reporting the issue! As you wrote, embulk-output-jdbc plugins doesn't support resuming. I'll correct the document.

I've updated the documents. https://github.com/embulk/embulk-output-jdbc/commit/435baf58133a4db1d03fda536e0ae5d2e19f94a1

Hello, @makkaba It may be a case-sensitive problem of column names. If the actual column name is `SDATE`, embulk-output-mysql will distinguish it from the column `sdate`, and values in the...

@makkaba Thank you for your reply. I'd like to know the actual column names on MySQL. Would you show the result of `desc target_table` on MySQL client? ex) > mysql>...