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
@@ -175,6 +175,10 @@ indexes: # optional
175
175
http_host: '0.0.0.0'# optional
176
176
http_port: 9128# optional
177
177
178
+
types_mapping: # optional
179
+
'char(36)': 'UUID'
180
+
181
+
178
182
```
179
183
180
184
#### Required settings
@@ -194,6 +198,7 @@ http_port: 9128 # optional
194
198
-`auto_restart_interval` - interval (seconds) between automatic db_replicator restart. Default 3600 (1 hour). This is done to reduce memory usage.
195
199
-`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.
196
200
-`http_host`, `http_port` - http endpoint to control replication, use `/docs` for abailable commands
201
+
-`types_mappings` - custom types mapping, eg. you can map char(36) to UUID instead of String, etc.
0 commit comments