Skip to content

Commit

Permalink
0005203: indexes for extract_request
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Jan 25, 2022
1 parent 95d7b20 commit 91f30e0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions symmetric-core/src/main/resources/symmetric-schema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,14 @@
<column name="parent_request_id" type="BIGINT" required="true" default="0" description="Parent request_id that will actually handle the extract for this request." />
<column name="last_update_time" type="TIMESTAMP" description="Timestamp when a process last updated this entry." />
<column name="create_time" type="TIMESTAMP" description="Timestamp when this entry was created." />
<index name="idx_er_ld_src_nd">
<index-column name="load_id"/>
<index-column name="source_node_id"/>
</index>
<index name="idx_er_src_nd_st">
<index-column name="source_node_id"/>
<index-column name="status"/>
</index>
</table>

<table name="file_incoming" description="As files are loaded from another node the file and source node are captured here for file sync to use to prevent file ping backs in bidirectional file synchronization.">
Expand Down

0 comments on commit 91f30e0

Please sign in to comment.