Skip to content

Commit df076bf

Browse files
authored
Add source path in partial data synchronization (#785)
* fix iotdb enterprise edition to timechodb * add source path in partial data synchronization * remove other changes * add scope param in table model
1 parent 032e1cd commit df076bf

File tree

24 files changed

+25
-1
lines changed

24 files changed

+25
-1
lines changed

src/UserGuide/Master/Table/User-Manual/Data-Sync_apache.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,7 @@ WITH SOURCE (
284284
'source' = 'iotdb-source',
285285
'mode.streaming' = 'true' -- Extraction mode for newly inserted data (after the pipe is created):
286286
-- Whether to extract data in streaming mode (if set to false, batch mode is used).
287+
'database-name'='testdb.*', -- Scope of Data Synchronization
287288
'start-time' = '2023.08.23T08:00:00+00:00', -- The event time at which data synchronization starts (inclusive).
288289
'end-time' = '2023.10.23T08:00:00+00:00' -- The event time at which data synchronization ends (inclusive).
289290
)

src/UserGuide/Master/Table/User-Manual/Data-Sync_timecho.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,7 @@ WITH SOURCE (
294294
'source' = 'iotdb-source',
295295
'mode.streaming' = 'true' -- Extraction mode for newly inserted data (after the pipe is created):
296296
-- Whether to extract data in streaming mode (if set to false, batch mode is used).
297+
'database-name'='testdb.*', -- Scope of Data Synchronization
297298
'start-time' = '2023.08.23T08:00:00+00:00', -- The event time at which data synchronization starts (inclusive).
298299
'end-time' = '2023.10.23T08:00:00+00:00' -- The event time at which data synchronization ends (inclusive).
299300
)

src/UserGuide/Master/Tree/User-Manual/Data-Sync_apache.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,7 @@ create pipe A2B
289289
WITH SOURCE (
290290
'source'= 'iotdb-source',
291291
'realtime.mode' = 'stream' -- The extraction mode for newly inserted data (after pipe creation)
292+
'path' = 'root.vehicle.**', -- Scope of Data Synchronization
292293
'start-time' = '2023.08.23T08:00:00+00:00', -- The start event time for synchronizing all data, including start-time
293294
'end-time' = '2023.10.23T08:00:00+00:00' -- The end event time for synchronizing all data, including end-time
294295
)

src/UserGuide/Master/Tree/User-Manual/Data-Sync_timecho.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,7 @@ create pipe A2B
297297
WITH SOURCE (
298298
'source'= 'iotdb-source',
299299
'realtime.mode' = 'stream' -- The extraction mode for newly inserted data (after pipe creation)
300+
'path' = 'root.vehicle.**', -- Scope of Data Synchronization
300301
'start-time' = '2023.08.23T08:00:00+00:00', -- The start event time for synchronizing all data, including start-time
301302
'end-time' = '2023.10.23T08:00:00+00:00' -- The end event time for synchronizing all data, including end-time
302303
)

src/UserGuide/V1.3.x/User-Manual/Data-Sync_apache.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,7 @@ create pipe A2B
289289
WITH SOURCE (
290290
'source'= 'iotdb-source',
291291
'realtime.mode' = 'stream' -- The extraction mode for newly inserted data (after pipe creation)
292+
'path' = 'root.vehicle.**', -- Scope of Data Synchronization
292293
'start-time' = '2023.08.23T08:00:00+00:00', -- The start event time for synchronizing all data, including start-time
293294
'end-time' = '2023.10.23T08:00:00+00:00' -- The end event time for synchronizing all data, including end-time
294295
)

src/UserGuide/V1.3.x/User-Manual/Data-Sync_timecho.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,7 @@ create pipe A2B
297297
WITH SOURCE (
298298
'source'= 'iotdb-source',
299299
'realtime.mode' = 'stream' -- The extraction mode for newly inserted data (after pipe creation)
300+
'path' = 'root.vehicle.**', -- Scope of Data Synchronization
300301
'start-time' = '2023.08.23T08:00:00+00:00', -- The start event time for synchronizing all data, including start-time
301302
'end-time' = '2023.10.23T08:00:00+00:00' -- The end event time for synchronizing all data, including end-time
302303
)

src/UserGuide/dev-1.3/User-Manual/Data-Sync_apache.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,7 @@ create pipe A2B
289289
WITH SOURCE (
290290
'source'= 'iotdb-source',
291291
'realtime.mode' = 'stream' -- The extraction mode for newly inserted data (after pipe creation)
292+
'path' = 'root.vehicle.**', -- Scope of Data Synchronization
292293
'start-time' = '2023.08.23T08:00:00+00:00', -- The start event time for synchronizing all data, including start-time
293294
'end-time' = '2023.10.23T08:00:00+00:00' -- The end event time for synchronizing all data, including end-time
294295
)

src/UserGuide/dev-1.3/User-Manual/Data-Sync_timecho.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,7 @@ create pipe A2B
297297
WITH SOURCE (
298298
'source'= 'iotdb-source',
299299
'realtime.mode' = 'stream' -- The extraction mode for newly inserted data (after pipe creation)
300+
'path' = 'root.vehicle.**', -- Scope of Data Synchronization
300301
'start-time' = '2023.08.23T08:00:00+00:00', -- The start event time for synchronizing all data, including start-time
301302
'end-time' = '2023.10.23T08:00:00+00:00' -- The end event time for synchronizing all data, including end-time
302303
)

src/UserGuide/latest-Table/User-Manual/Data-Sync_apache.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,7 @@ WITH SOURCE (
284284
'source' = 'iotdb-source',
285285
'mode.streaming' = 'true' -- Extraction mode for newly inserted data (after the pipe is created):
286286
-- Whether to extract data in streaming mode (if set to false, batch mode is used).
287+
'database-name'='testdb.*', -- Scope of Data Synchronization
287288
'start-time' = '2023.08.23T08:00:00+00:00', -- The event time at which data synchronization starts (inclusive).
288289
'end-time' = '2023.10.23T08:00:00+00:00' -- The event time at which data synchronization ends (inclusive).
289290
)

src/UserGuide/latest-Table/User-Manual/Data-Sync_timecho.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,7 @@ WITH SOURCE (
294294
'source' = 'iotdb-source',
295295
'mode.streaming' = 'true' -- Extraction mode for newly inserted data (after the pipe is created):
296296
-- Whether to extract data in streaming mode (if set to false, batch mode is used).
297+
'database-name'='testdb.*', -- Scope of Data Synchronization
297298
'start-time' = '2023.08.23T08:00:00+00:00', -- The event time at which data synchronization starts (inclusive).
298299
'end-time' = '2023.10.23T08:00:00+00:00' -- The event time at which data synchronization ends (inclusive).
299300
)

0 commit comments

Comments
 (0)