Skip to content
This repository has been archived by the owner on Sep 6, 2023. It is now read-only.

Use Apache Beam 2.42.0 #51

Merged
merged 2 commits into from
Oct 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ It is horizontally-scalable on top of distributed system, since apache beam can

## Version Info

- Apache Beam: 2.34.0
- Apache Beam: 2.42.0
- Kuromoji: 0.7.7

## How to Use
Expand Down Expand Up @@ -54,7 +54,7 @@ It is horizontally-scalable on top of distributed system, since apache beam can
mvn clean package

# Run bigquery-to-datastore via the compiled JAR file
java -jar $(pwd)/target/kuromoji-for-bigquery-bundled-0.2.2.jar \
java -jar $(pwd)/target/kuromoji-for-bigquery-bundled-0.4.0.jar \
--project=test-project-id \
--schema=id:integer \
--inputDataset=test_input_dataset \
Expand All @@ -76,6 +76,7 @@ java -jar $(pwd)/target/kuromoji-for-bigquery-bundled-0.2.2.jar \
| 0.1.0 | 2.1.0 | 0.7.7 |
| 0.2.x | 2.20.0 | 0.7.7 |
| 0.3.x | 2.34.0 | 0.7.7 |
| 0.4.x | 2.42.0 | 0.7.7 |

## License

Expand Down
Binary file added lib/kuromoji-0.7.7.jar
Binary file not shown.
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@

<groupId>com.github.yuiskw</groupId>
<artifactId>kuromoji-for-bigquery</artifactId>
<version>0.3.0</version>
<version>0.4.0</version>

<packaging>jar</packaging>

<properties>
<beam.version>2.39.0</beam.version>
<beam.version>2.42.0</beam.version>

<bigquery.version>v2-rev459-1.25.0</bigquery.version>
<google-api-client.version>1.33.0</google-api-client.version>
Expand Down Expand Up @@ -361,8 +361,8 @@
<groupId>org.atilika.kuromoji</groupId>
<artifactId>kuromoji</artifactId>
<version>0.7.7</version>
<type>jar</type>
<scope>compile</scope>
<scope>system</scope>
<systemPath>${project.basedir}/lib/kuromoji-0.7.7.jar</systemPath>
</dependency>

</dependencies>
Expand Down