Skip to content

Commit c0fef85

Browse files
author
Maksim Zinal
committed
preparing the 1.5 release
1 parent cf3fb45 commit c0fef85

File tree

6 files changed

+5
-6
lines changed

6 files changed

+5
-6
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>tech.ydb.importer</groupId>
55
<artifactId>ydb-importer</artifactId>
6-
<version>1.5-SNAPSHOT</version>
6+
<version>1.5</version>
77
<!-- <version>X.Y[-SNAPSHOT]</version> -->
88
<packaging>jar</packaging>
99
<developers>

scripts/sample-db2.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!-- IBM Db2 to YDB importer job configuration example -->
33
<ydb-importer>
44
<workers>
5-
<pool size="8"/>
5+
<pool size="4"/>
66
</workers>
77
<source type="db2">
88
<jdbc-class>com.ibm.db2.jcc.DB2Driver</jdbc-class>

scripts/sample-informix.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!-- IBM Informix to YDB importer job configuration example -->
33
<ydb-importer>
44
<workers>
5-
<pool size="1"/>
5+
<pool size="4"/>
66
</workers>
77
<source type="informix">
88
<jdbc-class>com.informix.jdbc.IfxDriver</jdbc-class>

scripts/sample-mssql.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!-- Microsoft SQL Server to YDB importer job configuration example -->
33
<ydb-importer>
44
<workers>
5-
<pool size="8"/>
5+
<pool size="4"/>
66
</workers>
77
<source type="mssql">
88
<jdbc-class>com.microsoft.sqlserver.jdbc.SQLServerDriver</jdbc-class>

scripts/ydb-importer.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,4 @@
44
# https://cloud.yandex.com/en/docs/iam/operations/authorized-key/create
55
# export YDB_SERVICE_ACCOUNT_KEY_FILE_CREDENTIALS=$(pwd)/yc-fednew-iot1sa1.json
66

7-
# -Djavax.net.ssl.trustStore=work-cas.dat -Djavax.net.ssl.trustStorePassword=passw0rd
87
java -Xms256m -Xmx8192m -classpath 'lib/*' tech.ydb.importer.YdbImporter $@

src/main/java/tech/ydb/importer/YdbImporter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public class YdbImporter {
3434
private final static org.slf4j.Logger LOG = org.slf4j.LoggerFactory.getLogger(YdbImporter.class);
3535

3636
// X.Y[-SNAPSHOT]
37-
public static final String VERSION = "1.5-SNAPSHOT";
37+
public static final String VERSION = "1.5";
3838

3939
private final ImporterConfig config;
4040
private final TableMapList tableMaps;

0 commit comments

Comments
 (0)