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
Copy file name to clipboardExpand all lines: README.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -170,6 +170,10 @@ indexes: # optional
170
170
http_host: '0.0.0.0'# optional
171
171
http_port: 9128# optional
172
172
173
+
types_mapping: # optional
174
+
'char(36)': 'UUID'
175
+
176
+
173
177
```
174
178
175
179
#### Required settings
@@ -188,6 +192,7 @@ http_port: 9128 # optional
188
192
-`auto_restart_interval` - interval (seconds) between automatic db_replicator restart. Default 3600 (1 hour). This is done to reduce memory usage.
189
193
-`indexes` - you may want to add some indexes to accelerate performance, eg. ngram index for full-test search, etc. To apply indexes you need to start replication from scratch.
190
194
-`http_host`, `http_port` - http endpoint to control replication, use `/docs` for abailable commands
195
+
-`types_mappings` - custom types mapping, eg. you can map char(36) to UUID instead of String, etc.
0 commit comments