Balancer.php 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914
  1. <?php
  2. /**
  3. * Copyright (c) 2007-2011, Servigistics, Inc.
  4. * All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions are met:
  8. *
  9. * - Redistributions of source code must retain the above copyright notice,
  10. * this list of conditions and the following disclaimer.
  11. * - Redistributions in binary form must reproduce the above copyright
  12. * notice, this list of conditions and the following disclaimer in the
  13. * documentation and/or other materials provided with the distribution.
  14. * - Neither the name of Servigistics, Inc. nor the names of
  15. * its contributors may be used to endorse or promote products derived from
  16. * this software without specific prior written permission.
  17. *
  18. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  19. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  20. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  21. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  22. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  23. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  24. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  25. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  26. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  27. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  28. * POSSIBILITY OF SUCH DAMAGE.
  29. *
  30. * @copyright Copyright 2007-2011 Servigistics, Inc. (http://servigistics.com)
  31. * @license http://solr-php-client.googlecode.com/svn/trunk/COPYING New BSD
  32. * @version $Id: Balancer.php 54 2011-02-04 16:29:18Z donovan.jimenez $
  33. *
  34. * @package Apache
  35. * @subpackage Solr
  36. * @author Donovan Jimenez <djimenez@conduit-it.com>, Dan Wolfe
  37. */
  38. // See Issue #1 (http://code.google.com/p/solr-php-client/issues/detail?id=1)
  39. // Doesn't follow typical include path conventions, but is more convenient for users
  40. require_once(dirname(dirname(__FILE__)) . '/Service.php');
  41. require_once(dirname(dirname(__FILE__)) . '/NoServiceAvailableException.php');
  42. /**
  43. * Reference Implementation for using multiple Solr services in a distribution. Functionality
  44. * includes:
  45. * routing of read / write operations
  46. * failover (on selection) for multiple read servers
  47. */
  48. class Apache_Solr_Service_Balancer
  49. {
  50. /**
  51. * SVN Revision meta data for this class
  52. */
  53. const SVN_REVISION = '$Revision: 54 $';
  54. /**
  55. * SVN ID meta data for this class
  56. */
  57. const SVN_ID = '$Id: Balancer.php 54 2011-02-04 16:29:18Z donovan.jimenez $';
  58. protected $_createDocuments = true;
  59. protected $_readableServices = array();
  60. protected $_writeableServices = array();
  61. protected $_currentReadService = null;
  62. protected $_currentWriteService = null;
  63. protected $_readPingTimeout = 2;
  64. protected $_writePingTimeout = 4;
  65. // Configuration for server selection backoff intervals
  66. protected $_useBackoff = false; // Set to true to use more resillient write server selection
  67. protected $_backoffLimit = 600; // 10 minute default maximum
  68. protected $_backoffEscalation = 2.0; // Rate at which to increase backoff period
  69. protected $_defaultBackoff = 2.0; // Default backoff interval
  70. /**
  71. * Escape a value for special query characters such as ':', '(', ')', '*', '?', etc.
  72. *
  73. * NOTE: inside a phrase fewer characters need escaped, use {@link Apache_Solr_Service::escapePhrase()} instead
  74. *
  75. * @param string $value
  76. * @return string
  77. */
  78. static public function escape($value)
  79. {
  80. return Apache_Solr_Service::escape($value);
  81. }
  82. /**
  83. * Escape a value meant to be contained in a phrase for special query characters
  84. *
  85. * @param string $value
  86. * @return string
  87. */
  88. static public function escapePhrase($value)
  89. {
  90. return Apache_Solr_Service::escapePhrase($value);
  91. }
  92. /**
  93. * Convenience function for creating phrase syntax from a value
  94. *
  95. * @param string $value
  96. * @return string
  97. */
  98. static public function phrase($value)
  99. {
  100. return Apache_Solr_Service::phrase($value);
  101. }
  102. /**
  103. * Constructor. Takes arrays of read and write service instances or descriptions
  104. *
  105. * @param array $readableServices
  106. * @param array $writeableServices
  107. */
  108. public function __construct($readableServices = array(), $writeableServices = array())
  109. {
  110. //setup readable services
  111. foreach ($readableServices as $service)
  112. {
  113. $this->addReadService($service);
  114. }
  115. //setup writeable services
  116. foreach ($writeableServices as $service)
  117. {
  118. $this->addWriteService($service);
  119. }
  120. }
  121. public function setReadPingTimeout($timeout)
  122. {
  123. $this->_readPingTimeout = $timeout;
  124. }
  125. public function setWritePingTimeout($timeout)
  126. {
  127. $this->_writePingTimeout = $timeout;
  128. }
  129. public function setUseBackoff($enable)
  130. {
  131. $this->_useBackoff = $enable;
  132. }
  133. /**
  134. * Generates a service ID
  135. *
  136. * @param string $host
  137. * @param integer $port
  138. * @param string $path
  139. * @return string
  140. */
  141. protected function _getServiceId($host, $port, $path)
  142. {
  143. return $host . ':' . $port . $path;
  144. }
  145. /**
  146. * Adds a service instance or service descriptor (if it is already
  147. * not added)
  148. *
  149. * @param mixed $service
  150. *
  151. * @throws Apache_Solr_InvalidArgumentException If service descriptor is not valid
  152. */
  153. public function addReadService($service)
  154. {
  155. if ($service instanceof Apache_Solr_Service)
  156. {
  157. $id = $this->_getServiceId($service->getHost(), $service->getPort(), $service->getPath());
  158. $this->_readableServices[$id] = $service;
  159. }
  160. else if (is_array($service))
  161. {
  162. if (isset($service['host']) && isset($service['port']) && isset($service['path']))
  163. {
  164. $id = $this->_getServiceId((string)$service['host'], (int)$service['port'], (string)$service['path']);
  165. $this->_readableServices[$id] = $service;
  166. }
  167. else
  168. {
  169. throw new Apache_Solr_InvalidArgumentException('A Readable Service description array does not have all required elements of host, port, and path');
  170. }
  171. }
  172. }
  173. /**
  174. * Removes a service instance or descriptor from the available services
  175. *
  176. * @param mixed $service
  177. *
  178. * @throws Apache_Solr_InvalidArgumentException If service descriptor is not valid
  179. */
  180. public function removeReadService($service)
  181. {
  182. $id = '';
  183. if ($service instanceof Apache_Solr_Service)
  184. {
  185. $id = $this->_getServiceId($service->getHost(), $service->getPort(), $service->getPath());
  186. }
  187. else if (is_array($service))
  188. {
  189. if (isset($service['host']) && isset($service['port']) && isset($service['path']))
  190. {
  191. $id = $this->_getServiceId((string)$service['host'], (int)$service['port'], (string)$service['path']);
  192. }
  193. else
  194. {
  195. throw new Apache_Solr_InvalidArgumentException('A Readable Service description array does not have all required elements of host, port, and path');
  196. }
  197. }
  198. else if (is_string($service))
  199. {
  200. $id = $service;
  201. }
  202. if ($id && isset($this->_readableServices[$id]))
  203. {
  204. unset($this->_readableServices[$id]);
  205. }
  206. }
  207. /**
  208. * Adds a service instance or service descriptor (if it is already
  209. * not added)
  210. *
  211. * @param mixed $service
  212. *
  213. * @throws Apache_Solr_InvalidArgumentException If service descriptor is not valid
  214. */
  215. public function addWriteService($service)
  216. {
  217. if ($service instanceof Apache_Solr_Service)
  218. {
  219. $id = $this->_getServiceId($service->getHost(), $service->getPort(), $service->getPath());
  220. $this->_writeableServices[$id] = $service;
  221. }
  222. else if (is_array($service))
  223. {
  224. if (isset($service['host']) && isset($service['port']) && isset($service['path']))
  225. {
  226. $id = $this->_getServiceId((string)$service['host'], (int)$service['port'], (string)$service['path']);
  227. $this->_writeableServices[$id] = $service;
  228. }
  229. else
  230. {
  231. throw new Apache_Solr_InvalidArgumentException('A Writeable Service description array does not have all required elements of host, port, and path');
  232. }
  233. }
  234. }
  235. /**
  236. * Removes a service instance or descriptor from the available services
  237. *
  238. * @param mixed $service
  239. *
  240. * @throws Apache_Solr_InvalidArgumentException If service descriptor is not valid
  241. */
  242. public function removeWriteService($service)
  243. {
  244. $id = '';
  245. if ($service instanceof Apache_Solr_Service)
  246. {
  247. $id = $this->_getServiceId($service->getHost(), $service->getPort(), $service->getPath());
  248. }
  249. else if (is_array($service))
  250. {
  251. if (isset($service['host']) && isset($service['port']) && isset($service['path']))
  252. {
  253. $id = $this->_getServiceId((string)$service['host'], (int)$service['port'], (string)$service['path']);
  254. }
  255. else
  256. {
  257. throw new Apache_Solr_InvalidArgumentException('A Readable Service description array does not have all required elements of host, port, and path');
  258. }
  259. }
  260. else if (is_string($service))
  261. {
  262. $id = $service;
  263. }
  264. if ($id && isset($this->_writeableServices[$id]))
  265. {
  266. unset($this->_writeableServices[$id]);
  267. }
  268. }
  269. /**
  270. * Iterate through available read services and select the first with a ping
  271. * that satisfies configured timeout restrictions (or the default)
  272. *
  273. * @return Apache_Solr_Service
  274. *
  275. * @throws Apache_Solr_NoServiceAvailableException If there are no read services that meet requirements
  276. */
  277. protected function _selectReadService($forceSelect = false)
  278. {
  279. if (!$this->_currentReadService || !isset($this->_readableServices[$this->_currentReadService]) || $forceSelect)
  280. {
  281. if ($this->_currentReadService && isset($this->_readableServices[$this->_currentReadService]) && $forceSelect)
  282. {
  283. // we probably had a communication error, ping the current read service, remove it if it times out
  284. if ($this->_readableServices[$this->_currentReadService]->ping($this->_readPingTimeout) === false)
  285. {
  286. $this->removeReadService($this->_currentReadService);
  287. }
  288. }
  289. if (count($this->_readableServices))
  290. {
  291. // select one of the read services at random
  292. $ids = array_keys($this->_readableServices);
  293. $id = $ids[rand(0, count($ids) - 1)];
  294. $service = $this->_readableServices[$id];
  295. if (is_array($service))
  296. {
  297. //convert the array definition to a client object
  298. $service = new Apache_Solr_Service($service['host'], $service['port'], $service['path']);
  299. $this->_readableServices[$id] = $service;
  300. }
  301. $service->setCreateDocuments($this->_createDocuments);
  302. $this->_currentReadService = $id;
  303. }
  304. else
  305. {
  306. throw new Apache_Solr_NoServiceAvailableException('No read services were available');
  307. }
  308. }
  309. return $this->_readableServices[$this->_currentReadService];
  310. }
  311. /**
  312. * Iterate through available write services and select the first with a ping
  313. * that satisfies configured timeout restrictions (or the default)
  314. *
  315. * @return Apache_Solr_Service
  316. *
  317. * @throws Apache_Solr_NoServiceAvailableException If there are no write services that meet requirements
  318. */
  319. protected function _selectWriteService($forceSelect = false)
  320. {
  321. if($this->_useBackoff)
  322. {
  323. return $this->_selectWriteServiceSafe($forceSelect);
  324. }
  325. if (!$this->_currentWriteService || !isset($this->_writeableServices[$this->_currentWriteService]) || $forceSelect)
  326. {
  327. if ($this->_currentWriteService && isset($this->_writeableServices[$this->_currentWriteService]) && $forceSelect)
  328. {
  329. // we probably had a communication error, ping the current read service, remove it if it times out
  330. if ($this->_writeableServices[$this->_currentWriteService]->ping($this->_writePingTimeout) === false)
  331. {
  332. $this->removeWriteService($this->_currentWriteService);
  333. }
  334. }
  335. if (count($this->_writeableServices))
  336. {
  337. // select one of the read services at random
  338. $ids = array_keys($this->_writeableServices);
  339. $id = $ids[rand(0, count($ids) - 1)];
  340. $service = $this->_writeableServices[$id];
  341. if (is_array($service))
  342. {
  343. //convert the array definition to a client object
  344. $service = new Apache_Solr_Service($service['host'], $service['port'], $service['path']);
  345. $this->_writeableServices[$id] = $service;
  346. }
  347. $this->_currentWriteService = $id;
  348. }
  349. else
  350. {
  351. throw new Apache_Solr_NoServiceAvailableException('No write services were available');
  352. }
  353. }
  354. return $this->_writeableServices[$this->_currentWriteService];
  355. }
  356. /**
  357. * Iterate through available write services and select the first with a ping
  358. * that satisfies configured timeout restrictions (or the default). The
  359. * timeout period will increase until a connection is made or the limit is
  360. * reached. This will allow for increased reliability with heavily loaded
  361. * server(s).
  362. *
  363. * @return Apache_Solr_Service
  364. *
  365. * @throws Apache_Solr_NoServiceAvailableException If there are no write services that meet requirements
  366. */
  367. protected function _selectWriteServiceSafe($forceSelect = false)
  368. {
  369. if (!$this->_currentWriteService || !isset($this->_writeableServices[$this->_currentWriteService]) || $forceSelect)
  370. {
  371. if (count($this->_writeableServices))
  372. {
  373. $backoff = $this->_defaultBackoff;
  374. do {
  375. // select one of the read services at random
  376. $ids = array_keys($this->_writeableServices);
  377. $id = $ids[rand(0, count($ids) - 1)];
  378. $service = $this->_writeableServices[$id];
  379. if (is_array($service))
  380. {
  381. //convert the array definition to a client object
  382. $service = new Apache_Solr_Service($service['host'], $service['port'], $service['path']);
  383. $this->_writeableServices[$id] = $service;
  384. }
  385. $this->_currentWriteService = $id;
  386. $backoff *= $this->_backoffEscalation;
  387. if($backoff > $this->_backoffLimit)
  388. {
  389. throw new Apache_Solr_NoServiceAvailableException('No write services were available. All timeouts exceeded.');
  390. }
  391. } while($this->_writeableServices[$this->_currentWriteService]->ping($backoff) === false);
  392. }
  393. else
  394. {
  395. throw new Apache_Solr_NoServiceAvailableException('No write services were available');
  396. }
  397. }
  398. return $this->_writeableServices[$this->_currentWriteService];
  399. }
  400. /**
  401. * Set the create documents flag. This determines whether {@link Apache_Solr_Response} objects will
  402. * parse the response and create {@link Apache_Solr_Document} instances in place.
  403. *
  404. * @param boolean $createDocuments
  405. */
  406. public function setCreateDocuments($createDocuments)
  407. {
  408. $this->_createDocuments = (bool) $createDocuments;
  409. // set on current read service
  410. if ($this->_currentReadService)
  411. {
  412. $service = $this->_selectReadService();
  413. $service->setCreateDocuments($createDocuments);
  414. }
  415. }
  416. /**
  417. * Get the current state of teh create documents flag.
  418. *
  419. * @return boolean
  420. */
  421. public function getCreateDocuments()
  422. {
  423. return $this->_createDocuments;
  424. }
  425. /**
  426. * Raw Add Method. Takes a raw post body and sends it to the update service. Post body
  427. * should be a complete and well formed "add" xml document.
  428. *
  429. * @param string $rawPost
  430. * @return Apache_Solr_Response
  431. *
  432. * @throws Apache_Solr_HttpTransportException If an error occurs during the service call
  433. */
  434. public function add($rawPost)
  435. {
  436. $service = $this->_selectWriteService();
  437. do
  438. {
  439. try
  440. {
  441. return $service->add($rawPost);
  442. }
  443. catch (Apache_Solr_HttpTransportException $e)
  444. {
  445. if ($e->getCode() != 0) //IF NOT COMMUNICATION ERROR
  446. {
  447. throw $e;
  448. }
  449. }
  450. $service = $this->_selectWriteService(true);
  451. } while ($service);
  452. return false;
  453. }
  454. /**
  455. * Add a Solr Document to the index
  456. *
  457. * @param Apache_Solr_Document $document
  458. * @param boolean $allowDups
  459. * @param boolean $overwritePending
  460. * @param boolean $overwriteCommitted
  461. * @return Apache_Solr_Response
  462. *
  463. * @throws Apache_Solr_HttpTransportException If an error occurs during the service call
  464. */
  465. public function addDocument(Apache_Solr_Document $document, $allowDups = false, $overwritePending = true, $overwriteCommitted = true)
  466. {
  467. $service = $this->_selectWriteService();
  468. do
  469. {
  470. try
  471. {
  472. return $service->addDocument($document, $allowDups, $overwritePending, $overwriteCommitted);
  473. }
  474. catch (Apache_Solr_HttpTransportException $e)
  475. {
  476. if ($e->getCode() != 0) //IF NOT COMMUNICATION ERROR
  477. {
  478. throw $e;
  479. }
  480. }
  481. $service = $this->_selectWriteService(true);
  482. } while ($service);
  483. return false;
  484. }
  485. /**
  486. * Add an array of Solr Documents to the index all at once
  487. *
  488. * @param array $documents Should be an array of Apache_Solr_Document instances
  489. * @param boolean $allowDups
  490. * @param boolean $overwritePending
  491. * @param boolean $overwriteCommitted
  492. * @return Apache_Solr_Response
  493. *
  494. * @throws Apache_Solr_HttpTransportException If an error occurs during the service call
  495. */
  496. public function addDocuments($documents, $allowDups = false, $overwritePending = true, $overwriteCommitted = true)
  497. {
  498. $service = $this->_selectWriteService();
  499. do
  500. {
  501. try
  502. {
  503. return $service->addDocuments($documents, $allowDups, $overwritePending, $overwriteCommitted);
  504. }
  505. catch (Apache_Solr_HttpTransportException $e)
  506. {
  507. if ($e->getCode() != 0) //IF NOT COMMUNICATION ERROR
  508. {
  509. throw $e;
  510. }
  511. }
  512. $service = $this->_selectWriteService(true);
  513. } while ($service);
  514. return false;
  515. }
  516. /**
  517. * Send a commit command. Will be synchronous unless both wait parameters are set
  518. * to false.
  519. *
  520. * @param boolean $waitFlush
  521. * @param boolean $waitSearcher
  522. * @return Apache_Solr_Response
  523. *
  524. * @throws Apache_Solr_HttpTransportException If an error occurs during the service call
  525. */
  526. public function commit($optimize = true, $waitFlush = true, $waitSearcher = true, $timeout = 3600)
  527. {
  528. $service = $this->_selectWriteService();
  529. do
  530. {
  531. try
  532. {
  533. return $service->commit($optimize, $waitFlush, $waitSearcher, $timeout);
  534. }
  535. catch (Apache_Solr_HttpTransportException $e)
  536. {
  537. if ($e->getCode() != 0) //IF NOT COMMUNICATION ERROR
  538. {
  539. throw $e;
  540. }
  541. }
  542. $service = $this->_selectWriteService(true);
  543. } while ($service);
  544. return false;
  545. }
  546. /**
  547. * Raw Delete Method. Takes a raw post body and sends it to the update service. Body should be
  548. * a complete and well formed "delete" xml document
  549. *
  550. * @param string $rawPost
  551. * @param float $timeout Maximum expected duration of the delete operation on the server (otherwise, will throw a communication exception)
  552. * @return Apache_Solr_Response
  553. *
  554. * @throws Apache_Solr_HttpTransportException If an error occurs during the service call
  555. */
  556. public function delete($rawPost, $timeout = 3600)
  557. {
  558. $service = $this->_selectWriteService();
  559. do
  560. {
  561. try
  562. {
  563. return $service->delete($rawPost, $timeout);
  564. }
  565. catch (Apache_Solr_HttpTransportException $e)
  566. {
  567. if ($e->getCode() != 0) //IF NOT COMMUNICATION ERROR
  568. {
  569. throw $e;
  570. }
  571. }
  572. $service = $this->_selectWriteService(true);
  573. } while ($service);
  574. return false;
  575. }
  576. /**
  577. * Create a delete document based on document ID
  578. *
  579. * @param string $id
  580. * @param boolean $fromPending
  581. * @param boolean $fromCommitted
  582. * @param float $timeout Maximum expected duration of the delete operation on the server (otherwise, will throw a communication exception)
  583. * @return Apache_Solr_Response
  584. *
  585. * @throws Apache_Solr_HttpTransportException If an error occurs during the service call
  586. */
  587. public function deleteById($id, $fromPending = true, $fromCommitted = true, $timeout = 3600)
  588. {
  589. $service = $this->_selectWriteService();
  590. do
  591. {
  592. try
  593. {
  594. return $service->deleteById($id, $fromPending, $fromCommitted, $timeout);
  595. }
  596. catch (Apache_Solr_HttpTransportException $e)
  597. {
  598. if ($e->getCode() != 0) //IF NOT COMMUNICATION ERROR
  599. {
  600. throw $e;
  601. }
  602. }
  603. $service = $this->_selectWriteService(true);
  604. } while ($service);
  605. return false;
  606. }
  607. /**
  608. * Create and post a delete document based on multiple document IDs.
  609. *
  610. * @param array $ids Expected to be utf-8 encoded strings
  611. * @param boolean $fromPending
  612. * @param boolean $fromCommitted
  613. * @param float $timeout Maximum expected duration of the delete operation on the server (otherwise, will throw a communication exception)
  614. * @return Apache_Solr_Response
  615. *
  616. * @throws Apache_Solr_HttpTransportException If an error occurs during the service call
  617. */
  618. public function deleteByMultipleIds($ids, $fromPending = true, $fromCommitted = true, $timeout = 3600)
  619. {
  620. $service = $this->_selectWriteService();
  621. do
  622. {
  623. try
  624. {
  625. return $service->deleteByMultipleId($ids, $fromPending, $fromCommitted, $timeout);
  626. }
  627. catch (Apache_Solr_HttpTransportException $e)
  628. {
  629. if ($e->getCode() != 0) //IF NOT COMMUNICATION ERROR
  630. {
  631. throw $e;
  632. }
  633. }
  634. $service = $this->_selectWriteService(true);
  635. } while ($service);
  636. return false;
  637. }
  638. /**
  639. * Create a delete document based on a query and submit it
  640. *
  641. * @param string $rawQuery
  642. * @param boolean $fromPending
  643. * @param boolean $fromCommitted
  644. * @param float $timeout Maximum expected duration of the delete operation on the server (otherwise, will throw a communication exception)
  645. * @return Apache_Solr_Response
  646. *
  647. * @throws Apache_Solr_HttpTransportException If an error occurs during the service call
  648. */
  649. public function deleteByQuery($rawQuery, $fromPending = true, $fromCommitted = true, $timeout = 3600)
  650. {
  651. $service = $this->_selectWriteService();
  652. do
  653. {
  654. try
  655. {
  656. return $service->deleteByQuery($rawQuery, $fromPending, $fromCommitted, $timeout);
  657. }
  658. catch (Apache_Solr_HttpTransportException $e)
  659. {
  660. if ($e->getCode() != 0) //IF NOT COMMUNICATION ERROR
  661. {
  662. throw $e;
  663. }
  664. }
  665. $service = $this->_selectWriteService(true);
  666. } while ($service);
  667. return false;
  668. }
  669. /**
  670. * Use Solr Cell to extract document contents. See {@link http://wiki.apache.org/solr/ExtractingRequestHandler} for information on how
  671. * to use Solr Cell and what parameters are available.
  672. *
  673. * NOTE: when passing an Apache_Solr_Document instance, field names and boosts will automatically be prepended by "literal." and "boost."
  674. * as appropriate. Any keys from the $params array will NOT be treated this way. Any mappings from the document will overwrite key / value
  675. * pairs in the params array if they have the same name (e.g. you pass a "literal.id" key and value in your $params array but you also
  676. * pass in a document isntance with an "id" field" - the document's value(s) will take precedence).
  677. *
  678. * @param string $file Path to file to extract data from
  679. * @param array $params optional array of key value pairs that will be sent with the post (see Solr Cell documentation)
  680. * @param Apache_Solr_Document $document optional document that will be used to generate post parameters (literal.* and boost.* params)
  681. * @param string $mimetype optional mimetype specification (for the file being extracted)
  682. *
  683. * @return Apache_Solr_Response
  684. *
  685. * @throws Apache_Solr_InvalidArgumentException if $file, $params, or $document are invalid.
  686. */
  687. public function extract($file, $params = array(), $document = null, $mimetype = 'application/octet-stream')
  688. {
  689. $service = $this->_selectWriteService();
  690. do
  691. {
  692. try
  693. {
  694. return $service->extract($file, $params, $document, $mimetype);
  695. }
  696. catch (Apache_Solr_HttpTransportException $e)
  697. {
  698. if ($e->getCode() != 0) //IF NOT COMMUNICATION ERROR
  699. {
  700. throw $e;
  701. }
  702. }
  703. $service = $this->_selectWriteService(true);
  704. } while ($service);
  705. return false;
  706. }
  707. /**
  708. * Use Solr Cell to extract document contents. See {@link http://wiki.apache.org/solr/ExtractingRequestHandler} for information on how
  709. * to use Solr Cell and what parameters are available.
  710. *
  711. * NOTE: when passing an Apache_Solr_Document instance, field names and boosts will automatically be prepended by "literal." and "boost."
  712. * as appropriate. Any keys from the $params array will NOT be treated this way. Any mappings from the document will overwrite key / value
  713. * pairs in the params array if they have the same name (e.g. you pass a "literal.id" key and value in your $params array but you also
  714. * pass in a document isntance with an "id" field" - the document's value(s) will take precedence).
  715. *
  716. * @param string $data Data that will be passed to Solr Cell
  717. * @param array $params optional array of key value pairs that will be sent with the post (see Solr Cell documentation)
  718. * @param Apache_Solr_Document $document optional document that will be used to generate post parameters (literal.* and boost.* params)
  719. * @param string $mimetype optional mimetype specification (for the file being extracted)
  720. *
  721. * @return Apache_Solr_Response
  722. *
  723. * @throws Apache_Solr_InvalidArgumentException if $file, $params, or $document are invalid.
  724. *
  725. * @todo Should be using multipart/form-data to post parameter values, but I could not get my implementation to work. Needs revisisted.
  726. */
  727. public function extractFromString($data, $params = array(), $document = null, $mimetype = 'application/octet-stream')
  728. {
  729. $service = $this->_selectWriteService();
  730. do
  731. {
  732. try
  733. {
  734. return $service->extractFromString($data, $params, $document, $mimetype);
  735. }
  736. catch (Apache_Solr_HttpTransportException $e)
  737. {
  738. if ($e->getCode() != 0) //IF NOT COMMUNICATION ERROR
  739. {
  740. throw $e;
  741. }
  742. }
  743. $service = $this->_selectWriteService(true);
  744. } while ($service);
  745. return false;
  746. }
  747. /**
  748. * Send an optimize command. Will be synchronous unless both wait parameters are set
  749. * to false.
  750. *
  751. * @param boolean $waitFlush
  752. * @param boolean $waitSearcher
  753. * @param float $timeout Maximum expected duration of the optimize operation on the server (otherwise, will throw a communication exception)
  754. * @return Apache_Solr_Response
  755. *
  756. * @throws Apache_Solr_HttpTransportException If an error occurs during the service call
  757. */
  758. public function optimize($waitFlush = true, $waitSearcher = true, $timeout = 3600)
  759. {
  760. $service = $this->_selectWriteService();
  761. do
  762. {
  763. try
  764. {
  765. return $service->optimize($waitFlush, $waitSearcher, $timeout);
  766. }
  767. catch (Apache_Solr_HttpTransportException $e)
  768. {
  769. if ($e->getCode() != 0) //IF NOT COMMUNICATION ERROR
  770. {
  771. throw $e;
  772. }
  773. }
  774. $service = $this->_selectWriteService(true);
  775. } while ($service);
  776. return false;
  777. }
  778. /**
  779. * Simple Search interface
  780. *
  781. * @param string $query The raw query string
  782. * @param int $offset The starting offset for result documents
  783. * @param int $limit The maximum number of result documents to return
  784. * @param array $params key / value pairs for query parameters, use arrays for multivalued parameters
  785. * @param string $method The HTTP method (Apache_Solr_Service::METHOD_GET or Apache_Solr_Service::METHOD::POST)
  786. * @return Apache_Solr_Response
  787. *
  788. * @throws Apache_Solr_HttpTransportException If an error occurs during the service call
  789. */
  790. public function search($query, $offset = 0, $limit = 10, $params = array(), $method = Apache_Solr_Service::METHOD_GET)
  791. {
  792. $service = $this->_selectReadService();
  793. do
  794. {
  795. try
  796. {
  797. return $service->search($query, $offset, $limit, $params, $method);
  798. }
  799. catch (Apache_Solr_HttpTransportException $e)
  800. {
  801. if ($e->getCode() != 0) //IF NOT COMMUNICATION ERROR
  802. {
  803. throw $e;
  804. }
  805. }
  806. $service = $this->_selectReadService(true);
  807. } while ($service);
  808. return false;
  809. }
  810. }