You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Staging Redis Connect redis-connect-mysql v0.4.0.7 job using Java 11.0.13 on virag-cdc started by root in /opt/redislabs/redis-connect-mysql/bin
195
+
Loading Redis Connect redis-connect-mysql Configurations from /opt/redislabs/redis-connect-mysql/config/samples/loader
196
+
04:20:11,322 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [/opt/redislabs/redis-connect-mysql/config/logback.xml] at [file:/opt/redislabs/redis-connect-mysql/config/logback.xml]
197
+
04:20:11,498 |-INFO in ch.qos.logback.classic.joran.action.ConfigurationAction - Will scan forchangesin [file:/opt/redislabs/redis-connect-mysql/config/logback.xml]
198
+
....
199
+
....
200
+
04:20:11.584 [main] INFO startup - ##################################################################
201
+
04:20:11.586 [main] INFO startup -
202
+
04:20:11.587 [main] INFO startup - REDIS CONNECT SETUP CLEAN - Deletes metadata related to Redis Connect from Job Management Database
203
+
204
+
04:20:11.587 [main] INFO startup -
205
+
04:20:11.587 [main] INFO startup - ##################################################################
206
+
....
207
+
....
208
+
04:20:13.910 [main] INFO startup - ##################################################################
209
+
04:20:13.912 [main] INFO startup -
210
+
04:20:13.913 [main] INFO startup - REDIS CONNECT SETUP CREATE - Seed metadata related to Redis Connect to Job Management Database
211
+
04:20:13.913 [main] INFO startup -
212
+
04:20:13.913 [main] INFO startup - ##################################################################
213
+
04:20:14.639 [main] INFO startup - Instance: 99@virag-cdc will attempt Job Management Database (Redis) with all the configurations and scripts, if applicable, needed to execute jobs
214
+
04:20:15.375 [main] INFO startup - Instance: 99@virag-cdc successfully established Redis connection for INIT service
215
+
04:20:15.377 [main] INFO startup - Instance: 99@virag-cdc successfully created Job Claim Assignment Stream and Consumer Group
216
+
04:20:15.391 [main] INFO startup - Instance: 99@virag-cdc successfully seeded Job related metadata
217
+
04:20:15.392 [main] INFO startup - Instance: 99@virag-cdc successfully seeded Metrics related metadata
218
+
04:20:15.392 [main] INFO startup - Instance: 99@virag-cdc successfully staged Job Management Database (Redis) with all the configurations and scripts, if applicable, needed to execute jobs
Copy file name to clipboardExpand all lines: connectors/mysql/demo/config/samples/loader/TaskCreator.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -7,4 +7,4 @@ producerConfig:
7
7
- table: RedisConnect.emp # schema.table
8
8
numJobs: 5
9
9
config: JobConfig.yml
10
-
loadQuery: "select * from (select Row_Number() over (order by (select 0)) as RowIndex, * from RedisConnect.emp) as emps Where emps.RowIndex >= ${start} and emps.RowIndex <= ${end}"
10
+
loadQuery: "SELECT * FROM (SELECT e.*, ROW_NUMBER() OVER (ORDER BY e.empno) RowIndex FROM RedisConnect.emp e) emps WHERE emps.RowIndex BETWEEN ${start} and ${end}"
0 commit comments