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 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511
|
package Search::Elasticsearch::Client::1_0::Direct;
use Moo;
with 'Search::Elasticsearch::Client::1_0::Role::API';
with 'Search::Elasticsearch::Role::Client::Direct';
our $VERSION='6.81';
use Search::Elasticsearch 6.00 ();
use Search::Elasticsearch::Util qw(parse_params is_compat);
use namespace::clean;
sub _namespace {__PACKAGE__}
has 'cluster' => ( is => 'lazy', init_arg => undef );
has 'nodes' => ( is => 'lazy', init_arg => undef );
has 'indices' => ( is => 'lazy', init_arg => undef );
has 'snapshot' => ( is => 'lazy', init_arg => undef );
has 'cat' => ( is => 'lazy', init_arg => undef );
has 'tasks' => ( is => 'lazy', init_arg => undef );
has 'bulk_helper_class' => ( is => 'rw' );
has 'scroll_helper_class' => ( is => 'rw' );
has '_bulk_class' => ( is => 'lazy' );
has '_scroll_class' => ( is => 'lazy' );
#===================================
sub create {
#===================================
my ( $self, $params ) = parse_params(@_);
my $defn = $self->api->{index};
$params->{op_type} = 'create';
$self->perform_request( { %$defn, name => 'create' }, $params );
}
#===================================
sub _build__bulk_class {
#===================================
my $self = shift;
my $bulk_class = $self->bulk_helper_class
|| 'Client::' . $self->api_version . '::Bulk';
$self->_build_helper( 'bulk', $bulk_class );
}
#===================================
sub _build__scroll_class {
#===================================
my $self = shift;
my $scroll_class = $self->scroll_helper_class
|| 'Client::' . $self->api_version . '::Scroll';
$self->_build_helper( 'scroll', $scroll_class );
}
#===================================
sub bulk_helper {
#===================================
my ( $self, $params ) = parse_params(@_);
$params->{es} ||= $self;
$self->_bulk_class->new($params);
}
#===================================
sub scroll_helper {
#===================================
my ( $self, $params ) = parse_params(@_);
$params->{es} ||= $self;
$self->_scroll_class->new($params);
}
#===================================
sub _build_cluster { shift->_build_namespace('Cluster') }
sub _build_nodes { shift->_build_namespace('Nodes') }
sub _build_indices { shift->_build_namespace('Indices') }
sub _build_snapshot { shift->_build_namespace('Snapshot') }
sub _build_cat { shift->_build_namespace('Cat') }
sub _build_tasks { shift->_build_namespace('Tasks') }
#===================================
__PACKAGE__->_install_api('');
1;
=pod
=encoding UTF-8
=head1 NAME
Search::Elasticsearch::Client::1_0::Direct - Thin client with full support for Elasticsearch 1.x APIs
=head1 VERSION
version 6.81
=head1 SYNOPSIS
Create a client:
use Search::Elasticsearch;
my $e = Search::Elasticsearch->new(
client => '1_0::Direct'
);
Index a doc:
$e->index(
index => 'my_index',
type => 'blog_post',
id => 123,
body => {
title => "Elasticsearch clients",
content => "Interesting content...",
date => "2013-09-23"
}
);
Get a doc:
$e->get(
index => 'my_index',
type => 'my_type',
id => 123
);
Search for docs:
$results = $e->search(
index => 'my_index',
body => {
query => {
match => {
title => "elasticsearch"
}
}
}
);
Index-level requests:
$e->indices->create( index => 'my_index' );
$e->indices->delete( index => 'my_index' )
Cluster-level requests:
$health = $e->cluster->health;
Node-level requests:
$info = $e->nodes->info;
$stats = $e->nodes->stats;
Snapshot and restore:
$e->snapshot->create_repository(
repository => 'my_backups',
type => 'fs',
settings => {
location => '/mnt/backups'
}
);
$e->snapshot->create(
repository => 'my_backups',
snapshot => 'backup_2014'
);
`cat` debugging:
say $e->cat->allocation;
say $e->cat->health;
=head1 DESCRIPTION
The L<Search::Elasticsearch::Client::1_0::Direct> class provides the
Elasticsearch 1.x compatible client that is returned by:
$e = Search::Elasticsearch->new( cxn => '1_0::Direct' );
It is intended to be as close as possible to the native REST API that
Elasticsearch uses, so that it is easy to translate the
L<Elasticsearch reference documentation|http://www.elasticsearch/guide>
for an API to the equivalent in this client.
This class provides the methods for L<document CRUD|/DOCUMENT CRUD METHODS>,
L<bulk document CRUD|/BULK DOCUMENT CRUD METHODS> and L<search|/SEARCH METHODS>.
It also provides access to clients for managing L<indices|/indices()>
and the L<cluster|/cluster()>.
=head1 CONVENTIONS
=head2 Parameter passing
Parameters can be passed to any request method as a list or as a hash
reference. The following two statements are equivalent:
$e->search( size => 10 );
$e->search({size => 10});
=head2 Path parameters
Any values that should be included in the URL path, eg C</{index}/{type}>
should be passed as top level parameters:
$e->search( index => 'my_index', type => 'my_type' );
Alternatively, you can specify a C<path> parameter directly:
$e->search( path => '/my_index/my_type' );
=head2 Query-string parameters
Any values that should be included in the query string should be passed
as top level parameters:
$e->search( size => 10 );
If you pass in a C<\%params> hash, then it will be included in the
query string parameters without any error checking. The following:
$e->search( size => 10, params => { from => 5, size => 5 })
would result in this query string:
?from=5&size=10
=head2 Body parameter
The request body should be passed in the C<body> key:
$e->search(
body => {
query => {...}
}
);
The body can also be a UTF8-decoded string, which will be converted into
UTF-8 bytes and passed as is:
$e->indices->analyze( body => "The quick brown fox");
=head2 Filter path parameter
Any API which returns a JSON body accepts a C<filter_path> parameter
which will filter the JSON down to only the specified paths. For instance,
if you are running a search request and only want the C<total> hits and
the C<_source> field for each hit (without the C<_id>, C<_index> etc),
you can do:
$e->search(
query => {...},
filter_path => [ 'hits.total', 'hits.hits._source' ]
);
This parameter was added in Elasticsearch 1.6.0.
=head2 Ignore parameter
Normally, any HTTP status code outside the 200-299 range will result in
an error being thrown. To suppress these errors, you can specify which
status codes to ignore in the C<ignore> parameter.
$e->indices->delete(
index => 'my_index',
ignore => 404
);
This is most useful for
L<Missing|Search::Elasticsearch::Error/Search::Elasticsearch::Error::Missing> errors, which
are triggered by a C<404> status code when some requested resource does
not exist.
Multiple error codes can be specified with an array:
$e->indices->delete(
index => 'my_index',
ignore => [404,409]
);
=head1 CONFIGURATION
=head2 C<bulk_helper_class>
The class to use for the L</bulk_helper()> method. Defaults to
L<Search::Elasticsearch::Client::1_0::Bulk>.
=head2 C<scroll_helper_class>
The class to use for the L</scroll_helper()> method. Defaults to
L<Search::Elasticsearch::Scroll>.
=head1 GENERAL METHODS
=head2 C<info()>
$info = $e->info
Returns information about the version of Elasticsearch that the responding node
is running.
=head2 C<ping()>
$e->ping
Pings a node in the cluster and returns C<1> if it receives a C<200>
response, otherwise it throws an error.
=head2 C<indices()>
$indices_client = $e->indices;
Returns an L<Search::Elasticsearch::Client::1_0::Direct::Indices> object which can be used
for managing indices, eg creating, deleting indices, managing mapping,
index settings etc.
=head2 C<cluster()>
$cluster_client = $e->cluster;
Returns an L<Search::Elasticsearch::Client::1_0::Direct::Cluster> object which can be used
for managing the cluster, eg cluster-wide settings and cluster health.
=head2 C<nodes()>
$node_client = $e->nodes;
Returns an L<Search::Elasticsearch::Client::1_0::Direct::Nodes> object which can be used
to retrieve node info and stats.
=head2 C<snapshot()>
$snapshot_client = $e->snapshot;
Returns an L<Search::Elasticsearch::Client::1_0::Direct::Snapshot> object which
is used for managing backup repositories and creating and restoring
snapshots.
=head2 C<cat()>
$cat_client = $e->cat;
Returns an L<Search::Elasticsearch::Client::1_0::Direct::Cat> object which can be used
to retrieve simple to read text info for debugging and monitoring an
Elasticsearch cluster.
=head1 DOCUMENT CRUD METHODS
These methods allow you to perform create, index, update and delete requests
for single documents:
=head2 C<index()>
$response = $e->index(
index => 'index_name', # required
type => 'type_name', # required
id => 'doc_id', # optional, otherwise auto-generated
body => { document } # required
);
The C<index()> method is used to index a new document or to reindex
an existing document.
Query string parameters:
C<consistency>,
C<op_type>,
C<parent>,
C<refresh>,
C<replication>,
C<routing>,
C<timeout>,
C<timestamp>,
C<ttl>,
C<version>,
C<version_type>
See the L<index docs|http://www.elastic.co/guide/en/elasticsearch/reference/current/docs-index_.html>
for more information.
=head2 C<create()>
$response = $e->create(
index => 'index_name', # required
type => 'type_name', # required
id => 'doc_id', # optional, otherwise auto-generated
body => { document } # required
);
The C<create()> method works exactly like the L</index()> method, except
that it will throw a C<Conflict> error if a document with the same
C<index>, C<type> and C<id> already exists.
Query string parameters:
C<consistency>,
C<op_type>,
C<parent>,
C<refresh>,
C<replication>,
C<routing>,
C<timeout>,
C<timestamp>,
C<ttl>,
C<version>,
C<version_type>
See the L<create docs|http://www.elastic.co/guide/en/elasticsearch/reference/current/docs-create.html>
for more information.
=head2 C<get()>
$response = $e->get(
index => 'index_name', # required
type => 'type_name', # required
id => 'doc_id', # required
);
The C<get()> method will retrieve the document with the specified
C<index>, C<type> and C<id>, or will throw a C<Missing> error.
Query string parameters:
C<_source>,
C<_source_exclude>,
C<_source_include>,
C<fields>,
C<parent>,
C<preference>,
C<realtime>,
C<refresh>,
C<routing>,
C<version>,
C<version_type>
See the L<get docs|http://www.elastic.co/guide/en/elasticsearch/reference/current/docs-get.html>
for more information.
=head2 C<get_source()>
$response = $e->get_source(
index => 'index_name', # required
type => 'type_name', # required
id => 'doc_id', # required
);
The C<get_source()> method works just like the L</get()> method except that
it returns just the C<_source> field (the value of the C<body> parameter
in the L</index()> method) instead of returning the C<_source> field
plus the document metadata, ie the C<_index>, C<_type> etc.
Query string parameters:
C<_source>,
C<_source_exclude>,
C<_source_include>,
C<parent>,
C<preference>,
C<realtime>,
C<refresh>,
C<routing>,
C<version>,
C<version_type>
See the L<get_source docs|http://www.elastic.co/guide/en/elasticsearch/reference/current/docs-get.html>
for more information.
=head2 C<exists()>
$response = $e->exists(
index => 'index_name', # required
type => 'type_name', # required
id => 'doc_id', # required
);
The C<exists()> method returns C<1> if a document with the specified
C<index>, C<type> and C<id> exists, or an empty string if it doesn't.
Query string parameters:
C<parent>,
C<preference>,
C<realtime>,
C<refresh>,
C<routing>
See the L<exists docs|http://www.elastic.co/guide/en/elasticsearch/reference/current/docs-get.html>
for more information.
=head2 C<delete()>
$response = $e->delete(
index => 'index_name', # required
type => 'type_name', # required
id => 'doc_id', # required
);
The C<delete()> method will delete the document with the specified
C<index>, C<type> and C<id>, or will throw a C<Missing> error.
Query string parameters:
C<consistency>,
C<parent>,
C<refresh>,
C<replication>,
C<routing>,
C<timeout>,
C<version>,
C<version_type>
See the L<delete docs|http://www.elastic.co/guide/en/elasticsearch/reference/current/docs-delete.html>
for more information.
=head2 C<update()>
$response = $e->update(
index => 'index_name', # required
type => 'type_name', # required
id => 'doc_id', # required
body => { update } # required
);
The C<update()> method updates a document with the corresponding
C<index>, C<type> and C<id> if it exists. Updates can be performed either by:
=over
=item * providing a partial document to be merged in to the existing document:
$response = $e->update(
...,
body => {
doc => { new_field => 'new_value'},
}
);
=item * or with a script:
$response = $e->update(
...,
body => {
script => "ctx._source.counter += incr",
params => { incr => 5 }
}
);
=back
Query string parameters:
C<consistency>,
C<fields>,
C<lang>,
C<parent>,
C<realtime>,
C<refresh>,
C<replication>,
C<retry_on_conflict>,
C<routing>,
C<script>,
C<script_id>,
C<scripted_upsert>,
C<timeout>,
C<timestamp>,
C<ttl>,
C<version>,
C<version_type>
See the L<update docs|http://www.elastic.co/guide/en/elasticsearch/reference/current/docs-update.html>
for more information.
=head2 C<termvectors()>
$results = $e->termvectors(
index => $index, # required
type => $type, # required
id => $id, # optional
body => {...} # optional
)
The C<termvectors()> method retrieves term and field statistics, positions,
offsets and payloads for the specified document, assuming that termvectors
have been enabled.
Query string parameters:
C<dfs>,
C<field_statistics>,
C<fields>,
C<offsets>,
C<parent>,
C<payloads>,
C<positions>,
C<preference>,
C<realtime>,
C<routing>,
C<term_statistics>,
C<version>,
C<version_type>
See the L<termvector docs|http://www.elastic.co/guide/en/elasticsearch/reference/current/docs-termvectors.html>
for more information.
=head1 BULK DOCUMENT CRUD METHODS
The bulk document CRUD methods are used for running multiple CRUD actions
within a single request. By reducing the number of network requests
that need to be made, bulk requests greatly improve performance.
=head2 C<bulk()>
$response = $e->bulk(
index => 'index_name', # required if type specified
type => 'type_name', # optional
body => [ actions ] # required
);
See L<Search::Elasticsearch::Client::1_0::Bulk> and L</bulk_helper()> for a helper module that makes
bulk indexing simpler to use.
The C<bulk()> method can perform multiple L</index()>, L</create()>,
L</delete()> or L</update()> actions with a single request. The C<body>
parameter expects an array containing the list of actions to perform.
An I<action> consists of an initial metadata hash ref containing the action
type, plus the associated metadata, eg :
{ delete => { _index => 'index', _type => 'type', _id => 123 }}
The C<index> and C<create> actions then expect a hashref containing
the document itself:
{ create => { _index => 'index', _type => 'type', _id => 123 }},
{ title => "A newly created document" }
And the C<update> action expects a hashref containing the update commands,
eg:
{ update => { _index => 'index', _type => 'type', _id => 123 }},
{ script => "ctx._source.counter+=1" }
Each action can include the same parameters that you would pass to
the equivalent L</index()>, L</create()>, L</delete()> or L</update()>
request, except that C<_index>, C<_type> and C<_id> must be specified with
the preceding underscore. All other parameters can be specified with or
without the underscore.
For instance:
$response = $e->bulk(
index => 'index_name', # default index name
type => 'type_name', # default type name
body => [
# create action
{ create => {
_index => 'not_the_default_index',
_type => 'not_the_default_type',
_id => 123
}},
{ title => 'Foo' },
# index action
{ index => { _id => 124 }},
{ title => 'Foo' },
# delete action
{ delete => { _id => 125 }},
# update action
{ update => { _id => 126 }},
{ script => "ctx._source.counter+1" }
]
);
Each action is performed separately. One failed action will not
cause the others to fail as well.
Query string parameters:
C<consistency>,
C<refresh>,
C<replication>,
C<timeout>
See the L<bulk docs|http://www.elastic.co/guide/en/elasticsearch/reference/current/docs-bulk.html>
for more information.
=head2 C<bulk_helper()>
$bulk_helper = $e->bulk_helper( @args );
Returns a new instance of the class specified in the L</bulk_helper_class>,
which defaults to L<Search::Elasticsearch::Client::1_0::Bulk>.
=head2 C<mget()>
$results = $e->mget(
index => 'default_index', # optional, required when type specified
type => 'default_type', # optional
body => { docs or ids } # required
);
The C<mget()> method will retrieve multiple documents with a single request.
The C<body> consists of an array of documents to retrieve:
$results = $e->mget(
index => 'default_index',
type => 'default_type',
body => {
docs => [
{ _id => 1},
{ _id => 2, _type => 'not_the_default_type' }
]
}
);
You can also pass any of the other parameters that the L</get()> request
accepts.
If you have specified an C<index> and C<type>, you can just include the
C<ids> of the documents to retrieve:
$results = $e->mget(
index => 'default_index',
type => 'default_type',
body => {
ids => [ 1, 2, 3]
}
);
Query string parameters:
C<_source>,
C<_source_exclude>,
C<_source_include>,
C<fields>,
C<preference>,
C<realtime>,
C<refresh>
See the L<mget docs|http://www.elastic.co/guide/en/elasticsearch/reference/current/docs-multi-get.html>
for more information.
=head2 C<delete_by_query()>
$result = $e->delete_by_query(
index => 'index' | \@indices, # required
type => 'type' | \@types, # optional
body => { query } # required
);
The C<delete_by_query()> method deletes all documents which match the
query. For instance, to delete all documents from 2012:
$result = $e->delete_by_query(
body => {
query => {
range => {
date => {
gte => '2012-01-01',
lt => '2013-01-01'
}
}
}
}
);
Query string parameters:
C<allow_no_indices>,
C<analyzer>,
C<consistency>,
C<default_operator>,
C<df>,
C<expand_wildcards>,
C<ignore_unavailable>,
C<q>,
C<replication>,
C<routing>,
C<timeout>
See the L<delete_by_query docs|http://www.elastic.co/guide/en/elasticsearch/reference/current/docs-delete-by-query.html>
for more information.
=head2 C<mtermvectors()>
$results = $e->mtermvectors(
index => $index, # required if type specified
type => $type, # optional
body => { } # optional
)
Runs multiple L</termvector()> requests in a single request, eg:
$results = $e->mtermvectors(
index => 'test',
body => {
docs => [
{ _type => 'test', _id => 1, fields => ['text'] },
{ _type => 'test', _id => 2, payloads => 1 },
]
}
);
Query string parameters:
C<field_statistics>,
C<fields>,
C<ids>,
C<offsets>,
C<parent>,
C<payloads>,
C<positions>,
C<preference>,
C<realtime>,
C<routing>,
C<term_statistics>,
C<version>,
C<version_type>
See the L<mtermvectors docs|http://www.elastic.co/guide/en/elasticsearch/reference/current/docs-multi-termvectors.html>
for more information.
=head1 SEARCH METHODS
The search methods are used for querying documents in one, more or all indices
and of one, more or all types:
=head2 C<search()>
$results = $e->search(
index => 'index' | \@indices, # optional
type => 'type' | \@types, # optional
body => { search params } # optional
);
The C<search()> method searches for matching documents in one or more
indices. It is just as easy to search a single index as it is to search
all the indices in your cluster. It can also return
L<aggregations|http://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations.html>
L<highlighted snippets|http://www.elastic.co/guide/en/elasticsearch/reference/current/search-highlighting.html>
and L<did-you-mean|http://www.elastic.co/guide/en/elasticsearch/reference/current/search-suggesters-phrase.html>
or L<search-as-you-type|http://www.elastic.co/guide/en/elasticsearch/reference/current/search-suggesters-completion.html>
suggestions.
The I<lite> L<version of search|http://www.elastic.co/guide/en/elasticsearch/reference/current/search-uri-request.html>
allows you to specify a query string in the C<q> parameter, using the
Lucene query string syntax:
$results = $e->search( q => 'title:(elasticsearch clients)');
However, the preferred way to search is by using the
L<Query DSL|http://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html>
to create a query, and passing that C<query> in the
L<request body|http://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-body.html>:
$results = $e->search(
body => {
query => {
match => { title => 'Elasticsearch clients'}
}
}
);
Query string parameters:
C<_source>,
C<_source_exclude>,
C<_source_include>,
C<allow_no_indices>,
C<analyze_wildcard>,
C<analyzer>,
C<default_operator>,
C<df>,
C<expand_wildcards>,
C<explain>,
C<fielddata_fields>,
C<fields>,
C<from>,
C<ignore_unavailable>,
C<lenient>,
C<lowercase_expanded_terms>,
C<preference>,
C<q>,
C<query_cache>,
C<routing>,
C<scroll>,
C<search_type>,
C<size>,
C<sort>,
C<stats>,
C<suggest_field>,
C<suggest_mode>,
C<suggest_size>,
C<suggest_text>,
C<terminate_after>,
C<timeout>,
C<track_scores>,
C<version>
See the L<search reference|http://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-body.html>
for more information.
Also see L<Search::Elasticsearch::Transport/send_get_body_as>.
=head2 C<search_exists()>
The C<search_exists()> method is a quick version of search which can be
used to find out whether there are matching search results or not.
It doesn't return any results itself.
$results = $e->search_exists(
index => 'index' | \@indices, # optional
type => 'type' | \@types, # optional
body => { search params } # optional
);
Query string parameters:
C<allow_no_indices>,
C<analyze_wildcard>,
C<analyzer>,
C<default_operator>,
C<df>,
C<expand_wildcards>,
C<ignore_unavailable>,
C<lenient>,
C<lowercase_expanded_terms>,
C<min_score>,
C<preference>,
C<q>,
C<routing>
See the L<search exists reference|http://www.elastic.co/guide/en/elasticsearch/reference/current/search-exists.html>
for more information.
=head2 C<count()>
$results = $e->count(
index => 'index' | \@indices, # optional
type => 'type' | \@types, # optional
body => { query } # optional
)
The C<count()> method returns the total count of all documents matching the
query:
$results = $e->count(
body => {
query => {
match => { title => 'Elasticsearch clients' }
}
}
);
Query string parameters:
C<allow_no_indices>,
C<analyze_wildcard>,
C<analyzer>,
C<default_operator>,
C<df>,
C<expand_wildcards>,
C<ignore_unavailable>,
C<lenient>,
C<lowercase_expanded_terms>,
C<min_score>,
C<preference>,
C<q>,
C<routing>
See the L<count docs|http://www.elastic.co/guide/en/elasticsearch/reference/current/search-count.html>
for more information.
=head2 C<search_template()>
$results = $e->search_template(
index => 'index' | \@indices, # optional
type => 'type' | \@types, # optional
body => { search params } # optional
);
Perform a search by specifying a template (either predefined or defined
within the C<body>) and parameters to use with the template, eg:
$results = $e->search_template(
body => {
template => {
query => {
match => {
"{{my_field}}" => "{{my_value}}"
}
},
size => "{{my_size}}"
},
params => {
my_field => 'foo',
my_value => 'bar',
my_size => 5
}
}
);
See the L<search template docs|http://www.elastic.co/guide/en/elasticsearch/reference/current/search-template.html>
for more information.
Query string parameters:
C<allow_no_indices>,
C<expand_wildcards>,
C<ignore_unavailable>,
C<preference>,
C<scroll>,
C<search_type>
=head2 C<scroll()>
$results = $e->scroll(
scroll => '1m',
scroll_id => $id
);
When a L</search()> has been performed with the
C<scroll> parameter, the C<scroll()>
method allows you to keep pulling more results until the results
are exhausted.
B<NOTE:> you will almost always want to set the
C<search_type> to C<scan> in your
original C<search()> request.
See L</scroll_helper()> and L<Search::Elasticsearch::Scroll> for a helper utility
which makes managing scroll requests much easier.
Query string parameters:
C<scroll>,
C<scroll_id>
See the L<scroll docs|http://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-scroll.html>
and the L<search_type docs|http://www.elastic.co/guide/en/elasticsearch/reference/current/search.html/search-request-search-type.html>
for more information.
=head2 C<clear_scroll()>
$response = $e->clear_scroll(
scroll_id => $id | \@ids # required
);
Or
$response = $e->clear_scroll(
body => $id
);
The C<clear_scroll()> method can clear unfinished scroll requests, freeing
up resources on the server.
=head2 C<scroll_helper()>
$scroll_helper = $e->scroll_helper( @args );
Returns a new instance of the class specified in the L</scroll_helper_class>,
which defaults to L<Search::Elasticsearch::Scroll>.
=head2 C<msearch()>
$results = $e->msearch(
index => 'default_index' | \@indices, # optional
type => 'default_type' | \@types, # optional
body => [ searches ] # required
);
The C<msearch()> method allows you to perform multiple searches in a single
request. Similar to the L</bulk()> request, each search request in the
C<body> consists of two hashes: the metadata hash then the search request
hash (the same data that you'd specify in the C<body> of a L</search()>
request). For instance:
$results = $e->msearch(
index => 'default_index',
type => ['default_type_1', 'default_type_2'],
body => [
# uses defaults
{},
{ query => { match_all => {} }},
# uses a custom index
{ index => 'not_the_default_index' },
{ query => { match_all => {} }}
]
);
Query string parameters:
C<search_type>
See the L<msearch docs|http://www.elastic.co/guide/en/elasticsearch/reference/current/search-multi-search.html>
for more information.
=head2 C<explain()>
$response = $e->explain(
index => 'my_index', # required
type => 'my_type', # required
id => 123, # required
body => { search } # required
);
The C<explain()> method explains why the specified document did or
did not match a query, and how the relevance score was calculated.
For instance:
$response = $e->explain(
index => 'my_index',
type => 'my_type',
id => 123,
body => {
query => {
match => { title => 'Elasticsearch clients' }
}
}
);
Query string parameters:
C<_source>,
C<_source_exclude>,
C<_source_include>,
C<analyze_wildcard>,
C<analyzer>,
C<default_operator>,
C<df>,
C<fields>,
C<lenient>,
C<lowercase_expanded_terms>,
C<parent>,
C<preference>,
C<q>,
C<routing>
See the L<explain docs|http://www.elastic.co/guide/en/elasticsearch/reference/current/search-explain.html>
for more information.
=head2 C<field_stats()>
$response = $e->field_stats(
index => 'index' | \@indices, # optional
fields => 'field' | \@fields, # optional
level => 'cluster' | 'indices', # optional
);
The C<field-stats> API returns statistical properties of a field
(such as min and max values) without executing a search.
Query string parameters:
C<allow_no_indices>,
C<expand_wildcards>,
C<fields>,
C<ignore_unavailable>,
C<level>
See the L<field-stats docs|http://www.elastic.co/guide/en/elasticsearch/reference/current/search-field-stats.html>
for more information.
=head2 C<search_shards()>
$response = $e->search_shards(
index => 'index' | \@indices, # optional
type => 'type' | \@types, # optional
)
The C<search_shards()> method returns information about which shards on
which nodes will execute a search request.
Query string parameters:
C<allow_no_indices>,
C<expand_wildcards>,
C<ignore_unavailable>,
C<local>,
C<preference>,
C<routing>
See the L<search-shards docs|http://www.elastic.co/guide/en/elasticsearch/reference/current/search-shards.html>
for more information.
=head1 PERCOLATION METHODS
=head2 C<percolate()>
$results = $e->percolate(
index => 'my_index', # required
type => 'my_type', # required
body => { percolation } # required
);
Percolation is search inverted: instead of finding docs which match a
particular query, it finds queries which match a particular document, eg
for I<alert-me-when> functionality.
The C<percolate()> method runs a percolation request to find the
queries matching a particular document. In the C<body> you should pass the
C<_source> field of the document under the C<doc> key:
$results = $e->percolate(
index => 'my_index',
type => 'my_type',
body => {
doc => {
title => 'Elasticsearch rocks'
}
}
);
Query string parameters:
C<allow_no_indices>,
C<expand_wildcards>,
C<ignore_unavailable>,
C<percolate_format>,
C<percolate_index>,
C<percolate_preference>,
C<percolate_routing>,
C<percolate_type>,
C<preference>,
C<routing>,
C<version>,
C<version_type>
See the L<percolate docs|http://www.elastic.co/guide/en/elasticsearch/reference/current/search-percolate.html>
for more information.
=head2 C<count_percolate()>
$results = $e->count_percolate(
index => 'my_index', # required
type => 'my_type', # required
body => { percolation } # required
);
The L</count_percolate()> request works just like the L</percolate()>
request except that it returns a count of all matching queries, instead
of the queries themselves.
$results = $e->count_percolate(
index => 'my_index',
type => 'my_type',
body => {
doc => {
title => 'Elasticsearch rocks'
}
}
);
Query string parameters:
C<allow_no_indices>,
C<expand_wildcards>,
C<ignore_unavailable>,
C<percolate_index>,
C<percolate_type>,
C<preference>,
C<routing>,
C<version>,
C<version_type>
See the L<percolate docs|http://www.elastic.co/guide/en/elasticsearch/reference/current/search-percolate.html>
for more information.
=head2 C<mpercolate()>
$results = $e->mpercolate(
index => 'my_index', # required if type
type => 'my_type', # optional
body => [ percolation requests ] # required
);
Multi-percolation allows multiple L</percolate()> requests to be run
in a single request.
$results = $e->mpercolate(
index => 'my_index',
type => 'my_type',
body => [
# first request
{ percolate => {
index => 'twitter',
type => 'tweet'
}},
{ doc => {message => 'some_text' }},
# second request
{ percolate => {
index => 'twitter',
type => 'tweet',
id => 1
}},
{},
]
);
Query string parameters:
C<allow_no_indices>,
C<expand_wildcards>,
C<ignore_unavailable>
See the L<mpercolate docs|http://www.elastic.co/guide/en/elasticsearch/reference/current/search-percolate.html>
for more information.
=head2 C<suggest()>
$results = $e->suggest(
index => 'index' | \@indices, # optional
body => { suggest request } # required
);
The C<suggest()> method is used to run
L<did-you-mean|http://www.elastic.co/guide/en/elasticsearch/reference/current/search-suggesteres-phrase.html>
or L<search-as-you-type|http://www.elastic.co/guide/en/elasticsearch/reference/current/search-suggesters-completion.html>
suggestion requests, which can also be run as part of a L</search()> request.
$results = $e->suggest(
index => 'my_index',
body => {
my_suggestions => {
phrase => {
text => 'johnny walker',
field => 'title'
}
}
}
);
Query string parameters:
C<allow_no_indices>,
C<expand_wildcards>,
C<ignore_unavailable>,
C<preference>,
C<routing>
=head2 C<mlt()>
$results = $e->mlt(
index => 'my_index', # required
type => 'my_type', # required
id => 123, # required
body => { search } # optional
);
The C<mlt()> method runs a
L<more-like-this query|http://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-mlt-query.html>
to find other documents which are similar to the specified document.
Query string parameters:
C<boost_terms>,
C<max_doc_freq>,
C<max_query_terms>,
C<max_word_length>,
C<min_doc_freq>,
C<min_term_freq>,
C<min_word_length>,
C<mlt_fields>,
C<percent_terms_to_match>,
C<routing>,
C<search_from>,
C<search_indices>,
C<search_scroll>,
C<search_size>,
C<search_source>,
C<search_type>,
C<search_types>,
C<stop_words>
See the L<mlt docs|http://www.elastic.co/guide/en/elasticsearch/reference/current/search-more-like-this.html>
for more information.
=head1 INDEXED SCRIPT METHODS
If dynamic scripting is enabled, Elasticsearch allows you to store scripts in an internal index known as
C<.scripts> and reference them by id. The methods to manage indexed scripts are as follows:
=head2 C<put_script()>
$result = $e->put_script(
lang => 'lang', # required
id => 'id', # required
body => { script } # required
);
The C<put_script()> method is used to store a script in the C<.scripts> index. For instance:
$result = $e->put_scripts(
lang => 'groovy',
id => 'hello_world',
body => {
script => q(return "hello world");
}
);
Query string parameters:
C<op_type>,
C<version>,
C<version_type>
See the L<indexed scripts docs|http://www.elastic.co/guide/en/elasticsearch/reference/current/modules-scripting.html#_indexed_scripts> for more.
=head2 C<get_script()>
$script = $e->get_script(
lang => 'lang', # required
id => 'id', # required
);
Retrieve the indexed script from the C<.scripts> index.
Query string parameters:
C<version>,
C<version_type>
See the L<indexed scripts docs|http://www.elastic.co/guide/en/elasticsearch/reference/current/modules-scripting.html#_indexed_scripts> for more.
=head2 C<delete_script()>
$script = $e->delete_script(
lang => 'lang', # required
id => 'id', # required
);
Delete the indexed script from the C<.scripts> index.
Query string parameters:
C<version>,
C<version_type>
See the L<indexed scripts docs|http://www.elastic.co/guide/en/elasticsearch/reference/current/modules-scripting.html#_indexed_scripts> for more.
=head1 INDEXED SEARCH TEMPLATE METHODS
Mustache templates can be used to create search requests. These templates can
be stored in the C<.scripts> index and retrieved by ID. The methods to
manage indexed scripts are as follows:
=head2 C<put_template()>
$result = $e->put_template(
id => 'id', # required
body => { template } || "template" # required
);
The C<put_template()> method is used to store a template in the C<.scripts> index.
For instance:
$result = $e->put_template(
id => 'hello_world',
body => {
template => {
query => {
match => {
title => "hello world"
}
}
}
}
);
Query string parameters: None
See the L<indexed search template docs|http://www.elastic.co/guide/en/elasticsearch/reference/current/search-template.html#_pre_registered_template> for more.
=head2 C<get_template()>
$script = $e->get_template(
id => 'id', # required
);
Retrieve the indexed template from the C<.scripts> index.
Query string parameters:
C<version>,
C<version_type>
See the L<indexed search template docs|http://www.elastic.co/guide/en/elasticsearch/reference/current/search-template.html#_pre_registered_template> for more.
=head2 C<delete_template()>
$script = $e->delete_template(
id => 'id', # required
);
Delete the indexed template from the C<.scripts> index.
Query string parameters: None
See the L<indexed search template docs|http://www.elastic.co/guide/en/elasticsearch/reference/current/search-template.html#_pre_registered_template> for more.
=head1 AUTHOR
Enrico Zimuel <enrico.zimuel@elastic.co>
=head1 COPYRIGHT AND LICENSE
This software is Copyright (c) 2020 by Elasticsearch BV.
This is free software, licensed under:
The Apache License, Version 2.0, January 2004
=cut
__END__
# ABSTRACT: Thin client with full support for Elasticsearch 1.x APIs
|