I am transferring from MySQL to BigQuery with Embulk, but when I try to execute it in a certain environment after a long time, an error occurs.
embulk Error: OutputPlugin 'bigquery' is not found
If you take a closer look, you will see that the ruby version does not support faraday with the following error.
[91mERROR: Error installing embulk-output-bigquery:
faraday-net_http requires Ruby version >= 2.4.0.[0m[91m
There was a description in output-bigquery GitHub Issue .
Since it is running on Docker this time, the problem was solved by describing the following in the Docker file.
#Install Embulk
RUN wget -q https://dl.embulk.org/embulk-latest.jar -O /bin/embulk \
&& chmod +x /bin/embulk
# Response to this error
RUN embulk gem install representable -v 3.0.4
RUN embulk gem install faraday -v 0.17.4
# Add the plug-ins you want to use.
RUN embulk gem install embulk-input-mysql
RUN embulk gem install embulk-output-bigquery
・・・
Read More:
- How to Solve Error: mysqlclient 1.4.0 or newer is required; you have 0.10.0
- How to Solve Error: Rsa Public Key not Find
- How to Solve MYSQL ERROR: relation “table_name” does not exist
- How to Solve postgres Errror: ERROR #42883 operator does not exist: smallint ~~ unknown
- How to Fix MySQL ERROR 1130 (HY000): Host ‘XXXX’ is not allowed to connect to this MySQL server
- Docker: How to Solve MYSQL8 & Navicat remote connection error
- How to Solve MYSQL into outfile Error13
- How to Solve mysql [Err] 1067-Invalid default value for
- How to Solve SQL state [HY000]: general error 2503
- How to Solve Mysql8 load data error
- How to Solve Azkaban startup error
- How to Solve mysqld — console command error
- How to Solve MYSQL Error: No module named MySQLdb
- How to Solve Nacos startup error
- Mysqlclient Error: ERROR: No matching distribution found for mysqlclient/OSError: mysql_config not found
- How to Solve c3p0 connect mysql8.0 Error
- How to Solve MYSQL Error: Failed to start MySQL 8.0 database server
- How to Solve Navicat open view error
- How to Solve “Out of range value for column” Error
- [Mybatis] How to Solve the problem of Oracle query processing more than 1000 in conditions