New blog post: Understanding Content Indexing in @Alfresco
How documents become searchable, why transforms drive heavy CPU usage, and how to tune or disable content indexing to reduce Transform Service load.
Read it here: connect.hyland.com/t5/alfresco-...
#Alfresco #Solr #OpenSearch
Apache Solr next major release 10.0.0 is out.
Congrats to the maintainers and all involved 👏
solr.apache.org/news.html#ap...
#opensource #search #solr
#Apache #Solr #API #Development #Data #Visualization #JavaScript #Linux #MySQL #PHP #Web
Origin | Interest | Match
Ron Ferguson explains how to make PDF content searchable in Drupal 11.
Using Search API with Solr and Tika, he indexes extracted PDF text, applies weighted boosts, and enables operator-based full-text queries.
Read more:
https://bit.ly/3MQvLgr
#Drupal #Drupal11 #Solr #SearchAPI
'Carney announced on Friday that Canada and China had reached a preliminary trade deal aimed at reducing tariffs, including a commitment to import 49,000 electric vehicles from China at preferential tariff rates.'
#canada #carney #trade #tariffs #renewables #oil #EVs #solr #wind #trump #china
📄 Want to search PDF + Word docs in Drupal?
Ivan Zugec’s @ivanzugec.com WebWash @webwash.net tutorial walks through Solr, Search API Attachments, and faceted Views.
Useful for document-heavy Drupal sites.
https://bit.ly/3LyYTrV
#DrupalSearch #SearchAPI #Solr #DrupalDev
Want better search in Drupal? Ivan Zugec @ivanzugec.com of @webwash.net shows how to use Search API with Solr and DDEV.
Boost fields, add facets, and scale as you grow—all in the admin UI.
Watch and read: https://bit.ly/4aA48li
#Drupal #SearchAPI #Solr #SiteBuilding
Мои книги по Search & Recsys Друзья, я наконец опубликовал третью книгу по теме поиска (плюс еще одна по близкой т...
#search #recsys #ecommerce #solr
Origin | Interest | Match
The registration link is now up! londonsearchweek.com/hackday-apac... Come and learn and build with #Solr!
This time next week we'll be kicking off #LondonSearchWeek with a BarCamp for Search Product Managers - and there's many more events over the next few days! A Meetup, conference, tutorials, Agentic AI and a #Solr Hackday www.londonsearchweek.com
🚨 エスカレーションフロー
レベル1: システム監視アラート
↓
レベル2: 運用担当者の初期対応
↓
レベル3: システム管理者の詳細調査
↓
レベル4: ベンダーサポート
段階的に問題を解決。
#Solr #障害対応
🌐 管理画面とAPI
管理画面: http://localhost:8983/solr/
検索API: /solr/[core]/select
更新API: /solr/[core]/update
管理API: /solr/admin/cores
ブラウザとREST APIで操作。
#Solr #API
⏹️ Solrの停止・再起動
停止: bin/solr stop -all
再起動: bin/solr restart
ステータス確認: bin/solr status
シンプルなコマンドで操作可能。
#Solr #運用
▶️ Solrの起動方法
スタンドアロン: bin/solr start
SolrCloud: bin/solr start -c -z localhost:2181
モードに応じてコマンドを使い分けます。
#Solr #起動
☁️ SolrCloudモード
複数サーバーでのクラスタ構成。大規模システムや本番環境向けで、高可用性と水平スケーリングを実現。ZooKeeperによる分散調整が必要。
#Solr #SolrCloud
📁 Solrのディレクトリ構造
/opt/solr/配下に、実行ファイル(bin/)、Solrホーム(server/solr/)、ログ(server/logs/)、ライブラリ(server/lib/)、追加モジュール(contrib/)が配置されます。
#Solr #ディレクトリ
⚙️ 推奨環境設定
JVMヒープサイズ: 4GB(SOLR_HEAP=\"4g\")
ログディレクトリ: /var/solr/logs
データディレクトリ: /var/solr/data
これらの設定で安定運用が可能。
#Solr #設定
☕ ソフトウェア要件
Java: OpenJDK 11以上(Solr 9.x以降)
OS: Linux推奨(Windows、macOSも可)
ZooKeeper: 3.6.x以上(SolrCloud使用時)
#Solr #環境構築
🚀 ハードウェア要件(推奨構成)
CPU: 4コア以上
メモリ: 8GB以上
ディスク: SSD推奨、RAID構成
ネットワーク: 1Gbps以上
本番環境ではこの構成が理想的。
#Solr #インフラ
💻 ハードウェア要件(最小構成)
CPU: 2コア以上
メモリ: 4GB以上
ディスク: 20GB以上(インデックスサイズに応じて増加)
小規模環境でもこれだけあれば動作可能。
#Solr #システム要件
🐘 ZooKeeperの役割
SolrCloud使用時に必須。クラスタの状態管理、設定の集中管理、リーダー選出を担当し、分散システム全体を調整します。
#Solr #ZooKeeper