-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathyokozuna.hrl
538 lines (460 loc) · 21.1 KB
/
yokozuna.hrl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
%% -------------------------------------------------------------------
%%
%% Copyright (c) 2012 Basho Technologies, Inc. All Rights Reserved.
%%
%% This file is provided to you under the Apache License,
%% Version 2.0 (the "License"); you may not use this file
%% except in compliance with the License. You may obtain
%% a copy of the License at
%%
%% http://www.apache.org/licenses/LICENSE-2.0
%%
%% Unless required by applicable law or agreed to in writing,
%% software distributed under the License is distributed on an
%% "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
%% KIND, either express or implied. See the License for the
%% specific language governing permissions and limitations
%% under the License.
%%
%% -------------------------------------------------------------------
%%%===================================================================
%%% Includes
%%%===================================================================
-include_lib("xmerl/include/xmerl.hrl").
%%%===================================================================
%%% Types
%%%===================================================================
%% Shorthand for existing types
-type datetime() :: calendar:datetime().
-type od() :: orddict:orddict().
-type ordset(T) :: ordsets:ordset(T).
-type proplist() :: proplists:proplist().
-type ring() :: riak_core_ring:riak_core_ring().
-type timestamp() :: erlang:timestamp().
-type pipe() :: riak_pipe:pipe().
-type index_set() :: ordset(index_name()).
-type base64() :: binary().
-type hash() :: binary().
-type filename() :: string().
%% milliseconds
-type ms() :: non_neg_integer().
-type seconds() :: non_neg_integer().
-type predicate(A) :: fun((A) -> boolean()).
%% An iso8601 datetime as binary, e.g. <<"20121221T000000">>.
-type iso8601() :: binary().
-type tree_name() :: atom().
%% Index into the ring
-type idx() :: non_neg_integer().
%% N value
-type n() :: pos_integer().
%% Number of partitions
-type q() :: pos_integer().
%% Partition, the starting idx() of a partition
-type p() :: non_neg_integer().
%% Logical Partition
-type lp() :: pos_integer().
%% Preflist, list of partition/owner pairs
-type preflist() :: [{p(),term()}].
%% Short representation of a preflist, partition + n_val
-type short_preflist() :: {p(), n()}.
%% Riak bucket
-type bucket() :: Name :: binary() | {Type :: binary(), Name :: binary()}.
%% Riak key
-type key() :: binary().
%% Bucket/Key pair
-type bkey() :: {bucket(), key()}.
%% Distance between LPs
-type dist() :: non_neg_integer().
%% Mapping from logical partition to partition
-type logical_idx() :: [{lp(), p()}].
-type logical_filter() :: all | [lp()].
-type filter() :: all | [p()].
-type p_node() :: {p(), node()}.
-type lp_node() :: {lp(), node()}.
-type p_set() :: [p_node()].
-type logical_cover_pair() :: {lp_node(), logical_filter()}.
-type logical_cover_set() :: [logical_cover_pair()].
-type solr_host_mapping() :: [{node(), {string(),string()}}].
-type plan() :: {[node()], logical_cover_set(), solr_host_mapping()}.
-type ring_event() :: {ring_event, riak_core_ring:riak_core_ring()}.
-type event() :: ring_event().
%% index-write reasons
-type repair() :: full_repair | tree_repair | failed_repair.
-type write_reason() :: delete | handoff | put | anti_entropy |
{delete, repair()} | {anti_entropy, repair()}
| {anti_entropy_delete, repair()}
| anti_entropy_delete.
%% @doc The `component()' type represents components that may be
%% enabled or disabled at runtime. Typically a component is
%% disabled in a live, production cluster in order to isolate
%% issues.
%%
%% `search' - The ability to run queries. This will only prevent
%% query requests that arrive via HTTP or Protocol Buffers. The
%% operator will still be able to run searches via
%% `yokozuna:search/3' to potentially aid in diagnosis of issues.
%%
%% `index' - The ability to index Riak Objects as they are written.
%% While disabled inconsistency will arise between KV and Yokozuna
%% as data is written. Either the operator will have to take
%% action to manually index the missing data or wait for AAE to
%% take care of it.
-type component() :: search | index.
-type object_pair() :: {obj(), obj() | no_old_object}.
-type solr_entry() :: {bkey(), object_pair(), write_reason(), p(), short_preflist(),
hash()}.
-type solr_entries() :: [solr_entry()].
-type solrq_id() :: pid() | atom().
-type solrq_helper_id() :: pid() | atom().
%%%===================================================================
%%% Macros
%%%===================================================================
-define(FMT(S, Args), lists:flatten(io_lib:format(S, Args))).
-define(IF(Expression, Action),
if Expression -> Action, ok;
true -> ok
end).
-define(ATOM_TO_BIN(A), list_to_binary(atom_to_list(A))).
-define(BIN_TO_ATOM(B), list_to_atom(binary_to_list(B))).
-define(BIN_TO_INT(B), list_to_integer(binary_to_list(B))).
-define(BIN_TO_FLOAT(B), list_to_float(binary_to_list(B))).
-define(INT_TO_BIN(I), list_to_binary(integer_to_list(I))).
-define(INT_TO_STR(I), integer_to_list(I)).
-define(INT_TO_ATOM(I), list_to_atom(integer_to_list(I))).
-define(FLOAT_TO_BIN(F), list_to_binary(float_to_list(F))).
-define(PARTITION_BINARY(S), S#state.partition_binary).
-define(HEAD_CTYPE, "content-type").
-define(DEFAULT_CTYPE, "text/plain").
-define(YZ_HEAD_EXTRACTOR, "yz-extractor").
-define(DATA_DIR, application:get_env(riak_core, platform_data_dir)).
%% Default timeout for index (put) creation.
-define(DEFAULT_IDX_CREATE_TIMEOUT, 45000).
-define(MAYBE(Check, Expression, Default),
case Check of
true -> Expression;
false -> Default
end).
-define(MAYBE(Check, Expression),
?MAYBE(Check, Expression, ok)).
%% Core security requires `{BucketType, Bucket}'. Technically, these
%% arent so strict, and so we refer to them as `{Resource,
%% SubResource}' where `Resource' is a resource like index or schema
%% and `SubResource' is a specific instance.
-define(YZ_SECURITY_INDEX, <<"index">>).
-define(YZ_SECURITY_SCHEMA, <<"schema">>).
-define(YZ_SECURITY_SEARCH_PERM, "search.query").
-define(YZ_SECURITY_ADMIN_PERM, "search.admin").
-define(YZ_COVER_TICK_INTERVAL, app_helper:get_env(?YZ_APP_NAME, cover_tick, 2000)).
-define(YZ_SOLR_TICK_INTERVAL, app_helper:get_env(?YZ_APP_NAME, solr_tick, 5000)).
-define(YZ_DEFAULT_SOLR_PORT, 8983).
-define(YZ_DEFAULT_SOLR_STARTUP_WAIT, 30).
%% TODO: See if using mochiglobal for this makes difference in performance.
-define(YZ_ENABLED, app_helper:get_env(?YZ_APP_NAME, enabled, false)).
-define(YZ_ROOT_DIR, app_helper:get_env(?YZ_APP_NAME, root_dir,
app_helper:get_env(riak_core, platform_data_dir)++"/yz")).
-define(YZ_TEMP_DIR, app_helper:get_env(?YZ_APP_NAME, temp_dir,
app_helper:get_env(riak_core, platform_data_dir)++"/yz_temp")).
%% The request timeout for Solr calls. Defaults to 60 seconds.
-define(YZ_SOLR_REQUEST_TIMEOUT, app_helper:get_env(?YZ_APP_NAME,
solr_request_timeout,
60000)).
%% The request timeout for Solr's entrop_data call. Defaults to 60 seconds.
-define(YZ_SOLR_ED_REQUEST_TIMEOUT, app_helper:get_env(?YZ_APP_NAME,
solr_ed_request_timeout,
?YZ_SOLR_REQUEST_TIMEOUT)).
-define(YZ_SOLR_PORT_RPC_TIMEOUT, app_helper:get_env(?YZ_APP_NAME,
solr_port_rpc_timeout,
3000)).
-define(YZ_SOLR_MAX_SESSIONS, max_sessions).
-define(YZ_SOLR_MAX_PIPELINE_SIZE, max_pipeline_size).
-define(YZ_CONFIG_IBROWSE_MAX_SESSIONS, ibrowse_max_sessions).
-define(YZ_CONFIG_IBROWSE_MAX_PIPELINE_SIZE, ibrowse_max_pipeline_size).
-define(YZ_PRIV, code:priv_dir(?YZ_APP_NAME)).
-define(YZ_CORE_CFG_FILE, "solrconfig.xml").
-define(YZ_INDEX_CMD, #yz_index_cmd).
-define(YZ_SEARCH_CMD, #yz_search_cmd).
-define(YZ_APP_NAME, yokozuna).
-define(YZ_SVC_NAME, yokozuna).
-define(YZ_APP_ATOM(Suffix), yokozuna_Suffix).
-define(YZ_META_INDEXES, {yokozuna, indexes}).
-define(YZ_META_SCHEMAS, {yokozuna, schemas}).
-define(YZ_META_EXTRACTORS, {yokozuna, extractors}).
-define(YZ_CAPS_CMD_EXTRACTORS, {yokozuna, extractor_map_in_cmd}).
-define(YZ_CAPS_HANDLE_LEGACY_DEFAULT_BUCKET_TYPE_AAE,
{yokozuna, handle_legacy_default_bucket_type_aae}).
-define(YZ_ERR_NOT_ENOUGH_NODES,
"Not enough nodes are up to service this request.").
-define(YZ_ERR_INDEX_NOT_FOUND,
"No index ~p found.").
-define(YZ_ERR_QUERY_FAILURE,
"Query unsuccessful check the logs.").
%% Given the `StartTime' calculate the amount of time elapsed in
%% microseconds.
-define(YZ_TIME_ELAPSED(StartTime), timer:now_diff(os:timestamp(), StartTime)).
-define(RS_SVC, riak_search).
-define(SOLR_HOST_CONTEXT, "/internal_solr").
%%%===================================================================
%%% Anti Entropy
%%%===================================================================
%% Directory to store the hashtrees.
-define(YZ_AAE_DIR,
application:get_env(?YZ_APP_NAME, anti_entropy_data_dir)).
%% How often to check for entropy, in milliseconds. Defaults to 15
%% seconds.
-define(YZ_ENTROPY_TICK,
app_helper:get_env(?YZ_APP_NAME, anti_entropy_tick,
app_helper:get_env(riak_kv, anti_entropy_tick, 15000)
)).
%% The length of time a tree is considered valid, in milliseconds. If
%% a tree is older than it is considered expired and must be rebuilt
%% from scratch. Defaults to 1 week.
-define(YZ_ENTROPY_EXPIRE,
app_helper:get_env(?YZ_APP_NAME, anti_entropy_expire,
app_helper:get_env(riak_kv, anti_entropy_expire, 604800000)
)).
%% The amount of time to wait for progress to be made before declaring
%% a timeout, in milliseconds.
-define(YZ_ENTROPY_TIMEOUT,
app_helper:get_env(?YZ_APP_NAME, anti_entropy_timeout,
app_helper:get_env(riak_kv, anti_entropy_timeout, 300000)
)).
%% The maximum number of concurrent anti-entropy operations such as
%% building trees or performing exchanges. The default is 2.
-define(YZ_ENTROPY_CONCURRENCY,
app_helper:get_env(?YZ_APP_NAME, anti_entropy_concurrency,
app_helper:get_env(riak_kv, anti_entropy_concurrency, 2)
)).
%% How many trees can be built per time period, in milliseconds:
%% `{Trees, Period}'. Defaults to 1 tree per hour.
-define(YZ_ENTROPY_BUILD_LIMIT,
app_helper:get_env(?YZ_APP_NAME, anti_entropy_build_limit,
app_helper:get_env(riak_kv, anti_entropy_build_limit, {1, 3600000})
)).
-define(YZ_ENTROPY_LOCK_TIMEOUT,
app_helper:get_env(?YZ_APP_NAME, anti_entropy_lock_timeout, 10000)).
-define(YZ_ENABLE_DIST_QUERY,
app_helper:get_env(?YZ_APP_NAME, enable_dist_query, true)).
-define(YZ_ENTROPY_THROTTLE_KEY, aae_throttle).
-define(YZ_ENTROPY_THROTTLE_LIMITS_KEY, aae_throttle_limits).
-define(YZ_ENTROPY_THROTTLE_DEFAULT_LIMITS,
[{-1,0}, {500,10}, {1000,50}, {5000,250}, {10000,1000}, {50000,3000}]).
-define(YZ_ENTROPY_THROTTLE_ENABLED_KEY, aae_throttle_enabled).
-type hashtree() :: hashtree:hashtree().
-type exchange() :: {p(), {p(), n()}}.
-type exchange_mode() :: automatic | manual.
-type tree() :: pid().
-type trees() :: [{p(), tree()}].
-type ed_filter() :: [{before, iso8601()} |
{continuation, ed_continuation()} |
{partition, lp()} |
{limit, pos_integer()}].
-type ed_continuation() :: none | base64().
-type ed_pairs() :: [{DocID::binary(), Hash::base64()}].
-record(entropy_data, {
more=false :: boolean(),
continuation :: ed_continuation(),
pairs :: ed_pairs()
}).
-type entropy_data() :: #entropy_data{}.
-type keydiff() :: hashtree:keydiff().
%%%===================================================================
%%% Riak KV
%%%===================================================================
-ifdef(namespaced_types).
-type yz_dict() :: dict:dict().
-type yz_queue() :: queue:queue().
-else.
-type yz_dict() :: dict().
-type yz_queue() :: queue().
-endif.
-type obj() :: riak_object:riak_object().
-type obj_metadata() :: yz_dict().
%%%===================================================================
%%% Docs
%%%===================================================================
-type field_name() :: atom() | binary().
-type field_value() :: binary().
-type field() :: {field_name(), field_value()}.
-type fields() :: [field()].
-type doc() :: {doc, fields()}.
%%%===================================================================
%%% Extractors
%%%===================================================================
-type mime_type() :: binary() | string() | default.
-type extractor_name() :: atom().
-type extractor_def() :: extractor_name() | {extractor_name(), proplist()}.
-type extractor_map() :: [{mime_type(), extractor_def()}].
-define(NO_OPTIONS, []).
%%%===================================================================
%%% Logging
%%%===================================================================
-define(DEBUG(Fmt, Args), lager:debug(Fmt, Args)).
-define(ERROR(Fmt), lager:error(Fmt)).
-define(ERROR(Fmt, Args), lager:error(Fmt, Args)).
-define(INFO(Fmt, Args), lager:info(Fmt, Args)).
-define(NOTICE(Fmt, Args), lager:notice(Fmt, Args)).
-define(NOTICE(Fmt), lager:notice(Fmt)).
-define(WARN(Fmt, Args), lager:warning(Fmt, Args)).
%%%===================================================================
%%% Indexes
%%%===================================================================
-type indexes() :: [index_name()].
-type index_name() :: binary().
-type reload_opt() :: {schema, boolean()} | {timeout, ms()}.
-type reload_opts() :: [reload_opt()].
-type reload_errs() :: [{node(), {error, term()}}].
-define(TOMBSTONE, <<>>).
-define(YZ_INDEX_TOMBSTONE, <<"_dont_index_">>).
-define(YZ_SHOULD_INDEX(Index), Index =/= ?YZ_INDEX_TOMBSTONE).
-define(YZ_INDEX, search_index).
%%%===================================================================
%%% Solr Config
%%%===================================================================
-define(YZ_SOLR_CONFIG_NAME, "solr.xml").
-define(YZ_SOLR_CONFIG_TEMPLATE,
filename:join([?YZ_PRIV, "template_solr.xml"])).
%%%===================================================================
%%% Schemas
%%%===================================================================
-define(YZ_DEFAULT_SCHEMA_FILE,
filename:join([?YZ_PRIV, "default_schema.xml"])).
-define(YZ_DEFAULT_SCHEMA_NAME, <<"_yz_default">>).
-define(YZ_SCHEMA_BUCKET, <<"_yz_schema">>).
-type raw_schema() :: binary().
%% xmerl does not export these types,
%% so we just define them to be equal
%% to their records
-type xmlElement() :: #xmlElement{}.
-type xmlDocument() :: #xmlDocument{}.
-type schema() :: xmlElement() | xmlDocument().
-type schema_name() :: binary().
%%%===================================================================
%%% Solr Fields
%%%===================================================================
%% ID
-define(YZ_ID_FIELD, '_yz_id').
-define(YZ_ID_FIELD_S, "_yz_id").
-define(YZ_ID_FIELD_B, <<"_yz_id">>).
-define(YZ_ID_FIELD_XML, ?YZ_FIELD_XML(?YZ_ID_FIELD_S, "true")).
-define(YZ_ID_FIELD_XPATH, "/schema/fields/field[@name=\"_yz_id\" and @type=\"_yz_str\" and @indexed=\"true\" and @stored=\"true\" and @required=\"true\" and @multiValued=\"false\"]").
%% Entropy Data
-define(YZ_ED_FIELD, '_yz_ed').
-define(YZ_ED_FIELD_S, "_yz_ed").
-define(YZ_ED_FIELD_XML, ?YZ_FIELD_XML(?YZ_ED_FIELD_S)).
-define(YZ_ED_FIELD_XPATH, "/schema/fields/field[@name=\"_yz_ed\" and @type=\"_yz_str\" and @indexed=\"true\" and @multiValued=\"false\"]").
%% First Partition Number
-define(YZ_FPN_FIELD, '_yz_fpn').
-define(YZ_FPN_FIELD_S, "_yz_fpn").
-define(YZ_FPN_FIELD_B, <<"_yz_fpn">>).
-define(YZ_FPN_FIELD_XML, ?YZ_FIELD_XML(?YZ_FPN_FIELD_S)).
-define(YZ_FPN_FIELD_XPATH, "/schema/fields/field[@name=\"_yz_fpn\" and @type=\"_yz_str\" and @indexed=\"true\" and @multiValued=\"false\"]").
%% Sibling VTags
-define(YZ_VTAG_FIELD, '_yz_vtag').
-define(YZ_VTAG_FIELD_S, "_yz_vtag").
-define(YZ_VTAG_FIELD_B, <<"_yz_vtag">>).
-define(YZ_VTAG_FIELD_XML, ?YZ_FIELD_XML(?YZ_VTAG_FIELD_S)).
-define(YZ_VTAG_FIELD_XPATH, "/schema/fields/field[@name=\"_yz_vtag\" and @type=\"_yz_str\" and @indexed=\"true\" and @multiValued=\"false\"]").
%% Partition Number
-define(YZ_PN_FIELD, '_yz_pn').
-define(YZ_PN_FIELD_S, "_yz_pn").
-define(YZ_PN_FIELD_B, <<"_yz_pn">>).
-define(YZ_PN_FIELD_XML, ?YZ_FIELD_XML(?YZ_PN_FIELD_S)).
-define(YZ_PN_FIELD_XPATH, "/schema/fields/field[@name=\"_yz_pn\" and @type=\"_yz_str\" and @indexed=\"true\" and @multiValued=\"false\"]").
%% Riak key
-define(YZ_RK_FIELD, '_yz_rk').
-define(YZ_RK_FIELD_S, "_yz_rk").
-define(YZ_RK_FIELD_B, <<"_yz_rk">>).
-define(YZ_RK_FIELD_XML, ?YZ_FIELD_XML(?YZ_RK_FIELD_S)).
-define(YZ_RK_FIELD_XPATH, "/schema/fields/field[@name=\"_yz_rk\" and @type=\"_yz_str\" and @indexed=\"true\" and @stored=\"true\" and @multiValued=\"false\"]").
%% Riak bucket type
-define(YZ_RT_FIELD, '_yz_rt').
-define(YZ_RT_FIELD_S, "_yz_rt").
-define(YZ_RT_FIELD_B, <<"_yz_rt">>).
-define(YZ_RT_FIELD_XML, ?YZ_FIELD_XML(?YZ_RT_FIELD_S)).
-define(YZ_RT_FIELD_XPATH, "/schema/fields/field[@name=\"_yz_rt\" and @type=\"_yz_str\" and @indexed=\"true\" and @stored=\"true\" and @multiValued=\"false\"]").
%% Riak bucket
-define(YZ_RB_FIELD, '_yz_rb').
-define(YZ_RB_FIELD_S, "_yz_rb").
-define(YZ_RB_FIELD_B, <<"_yz_rb">>).
-define(YZ_RB_FIELD_XML, ?YZ_FIELD_XML(?YZ_RB_FIELD_S)).
-define(YZ_RB_FIELD_XPATH, "/schema/fields/field[@name=\"_yz_rb\" and @type=\"_yz_str\" and @indexed=\"true\" and @stored=\"true\" and @multiValued=\"false\"]").
%% Riak extraction error
-define(YZ_ERR_FIELD, '_yz_err').
-define(YZ_ERR_FIELD_S, "_yz_err").
-define(YZ_ERR_FIELD_B, <<"_yz_err">>).
-define(YZ_ERR_FIELD_XML, ?YZ_FIELD_XML(?YZ_ERR_FIELD_S)).
-define(YZ_ERR_FIELD_XPATH, "/schema/fields/field[@name=\"_yz_err\" and @type=\"_yz_str\" and @indexed=\"true\" and @multiValued=\"false\"]").
-define(YZ_IS_YZ_FIELD_S(Name),
Name == ?YZ_ID_FIELD_S orelse
Name == ?YZ_ED_FIELD_S orelse
Name == ?YZ_FPN_FIELD_S orelse
Name == ?YZ_VTAG_FIELD_S orelse
Name == ?YZ_PN_FIELD_S orelse
Name == ?YZ_RK_FIELD_S orelse
Name == ?YZ_RB_FIELD_S orelse
Name == ?YZ_ERR_FIELD_S).
-define(YZ_UK_XML, {uniqueKey, [?YZ_ID_FIELD_S]}).
-define(YZ_FIELD_XML(Name), ?YZ_FIELD_XML(Name, false)).
-define(YZ_FIELD_XML(Name, Required),
{field,
[{name,Name},
{type,?YZ_STR_FT_S},
{indexed,"true"},
{stored,"true"},
{required,Required}],
[]}).
%% Field Types
-define(YZ_STR_FT_S, "_yz_str").
-define(YZ_STR_FT_XML,
{fieldType,
[{name,?YZ_STR_FT_S},
{class,"solr.StrField"},
{sortMissingLast,"true"}],
[]}).
-define(YZ_IS_YZ_FT_S(Name), Name == ?YZ_STR_FT_S).
-define(YZ_STR_FT_XPATH, "/schema/types/fieldType[@name=\"_yz_str\" and @class=\"solr.StrField\" and @sortMissingLast=\"true\"]").
%%%===================================================================
%%% fuse/error-thresholding
%%%===================================================================
-define(ERR_THRESH_FAIL_COUNT, err_thresh_fail_count).
-define(ERR_THRESH_FAIL_INTERVAL, err_thresh_fail_interval).
-define(ERR_THRESH_RESET_INTERVAL, err_thresh_reset_interval).
-define(FUSE_CTX, solrq_fuse_ctx).
%%%===================================================================
%%% batching
%%%===================================================================
-define(SOLRQ_BATCH_MIN, solrq_batch_min).
-define(SOLRQ_BATCH_MIN_DEFAULT, 10).
-define(SOLRQ_BATCH_MAX, solrq_batch_max).
-define(SOLRQ_BATCH_MAX_DEFAULT, 500).
-define(SOLRQ_BATCH_FLUSH_INTERVAL, solrq_batch_flush_interval).
-define(SOLRQ_BATCH_FLUSH_INTERVAL_DEFAULT, 500).
-define(SOLRQ_HWM, solrq_hwm).
-define(SOLRQ_HWM_DEFAULT, 1000).
-define(SOLRQ_HWM_PURGE_STRATEGY, solrq_hwm_purge_strategy).
-define(PURGE_NONE, off).
-define(PURGE_ONE, purge_one).
-define(PURGE_IDX, purge_index).
-define(PURGE_ALL, purge_all).
-type solrq_batch_min() :: pos_integer().
-type solrq_batch_max() :: pos_integer().
-type solrq_batch_flush_interval() :: non_neg_integer()|infinity.
-type solrq_hwm() :: non_neg_integer().
-type purge_strategy() :: ?PURGE_NONE|?PURGE_ONE|?PURGE_IDX.
%%%===================================================================
%%% draining
%%%===================================================================
-define(EXCHANGE_FSM_PID, exchange_fsm_pid).
-define(YZ_INDEX_HASHTREE_PARAMS, yz_index_hashtree_update_params).
-define(DRAIN_PARTITION, drain_partition).
-define(SOLRQ_DRAIN_TIMEOUT, solrq_drain_timeout).
-define(SOLRQ_DRAIN_TIMEOUT_DEFAULT, 60000).
-define(SOLRQ_DRAIN_ENABLE, solrq_drain_enable).
-define(SOLRQ_DRAIN_ENABLE_DEFAULT, true).
-define(SOLRQ_DRAIN_CANCEL_TIMEOUT, solrq_drain_cancel_timeout).
-define(SOLRQ_DRAIN_CANCEL_TIMEOUT_DEFAULT, 5000).
-type drain_param() ::
{?EXCHANGE_FSM_PID, pid()} |
{?YZ_INDEX_HASHTREE_PARAMS, {tree(), p(), short_preflist()}} |
{?DRAIN_PARTITION, n()}.
-type drain_params() :: [drain_param()].