Class: Couchbase::Management::SearchIndexManager
- Inherits:
-
Object
- Object
- Couchbase::Management::SearchIndexManager
- Defined in:
- lib/couchbase/management/search_index_manager.rb
Defined Under Namespace
Classes: AllowQueryingOptions, AnalyzeDocumentOptions, DisallowQueryingOptions, DropIndexOptions, FreezePlanOptions, GetAllIndexesOptions, GetIndexOptions, GetIndexedDocumentsCountOptions, PauseIngestOptions, ResumeIngestOptions, UnfreezePlanOptions, UpsertIndexOptions
Instance Method Summary collapse
-
#allow_querying(index_name, options = AllowQueryingOptions.new) ⇒ Object
Allows querying against the index.
-
#analyze_document(index_name, document, options = AnalyzeDocumentOptions.new) ⇒ Array<Hash>
Allows to see how a document is analyzed against a specific index.
-
#disallow_querying(index_name, options = DisallowQueryingOptions.new) ⇒ Object
Disallows querying against the index.
-
#drop_index(index_name, options = DropIndexOptions.new) ⇒ Object
Drops the index.
-
#freeze_plan(index_name, options = FreezePlanOptions.new) ⇒ Object
Freeze the assignment of index partitions to nodes.
-
#get_all_indexes(options = GetAllIndexesOptions.new) ⇒ Array<SearchIndex>
Fetches all indexes from the server.
-
#get_index(index_name, options = GetIndexOptions.new) ⇒ SearchIndex
Fetches an index from the server if it exists.
-
#get_indexed_documents_count(index_name, options = GetIndexedDocumentsCountOptions.new) ⇒ Integer
Retrieves the number of documents that have been indexed for an index.
-
#initialize(backend) ⇒ SearchIndexManager
constructor
A new instance of SearchIndexManager.
-
#pause_ingest(index_name, options = PauseIngestOptions.new) ⇒ Object
Pauses updates and maintenance for the index.
-
#resume_ingest(index_name, options = ResumeIngestOptions.new) ⇒ Object
Resumes updates and maintenance for an index.
-
#unfreeze_plan(index_name, options = UnfreezePlanOptions.new) ⇒ Object
Unfreeze the assignment of index partitions to nodes.
-
#upsert_index(index_definition, options = UpsertIndexOptions.new) ⇒ Object
Creates or updates the index.
Constructor Details
#initialize(backend) ⇒ SearchIndexManager
Returns a new instance of SearchIndexManager.
23 24 25 |
# File 'lib/couchbase/management/search_index_manager.rb', line 23 def initialize(backend) @backend = backend end |
Instance Method Details
#allow_querying(index_name, options = AllowQueryingOptions.new) ⇒ Object
Allows querying against the index
136 137 138 |
# File 'lib/couchbase/management/search_index_manager.rb', line 136 def (index_name, = AllowQueryingOptions.new) @backend.(index_name, .timeout) end |
#analyze_document(index_name, document, options = AnalyzeDocumentOptions.new) ⇒ Array<Hash>
Allows to see how a document is analyzed against a specific index
188 189 190 191 |
# File 'lib/couchbase/management/search_index_manager.rb', line 188 def analyze_document(index_name, document, = AnalyzeDocumentOptions.new) res = @backend.search_index_analyze_document(index_name, JSON.generate(document), .timeout) JSON.parse(res[:analysis]) end |
#disallow_querying(index_name, options = DisallowQueryingOptions.new) ⇒ Object
Disallows querying against the index
149 150 151 |
# File 'lib/couchbase/management/search_index_manager.rb', line 149 def (index_name, = DisallowQueryingOptions.new) @backend.(index_name, .timeout) end |
#drop_index(index_name, options = DropIndexOptions.new) ⇒ Object
Drops the index
83 84 85 |
# File 'lib/couchbase/management/search_index_manager.rb', line 83 def drop_index(index_name, = DropIndexOptions.new) @backend.search_index_drop(index_name, .timeout) end |
#freeze_plan(index_name, options = FreezePlanOptions.new) ⇒ Object
Freeze the assignment of index partitions to nodes
162 163 164 |
# File 'lib/couchbase/management/search_index_manager.rb', line 162 def freeze_plan(index_name, = FreezePlanOptions.new) @backend.search_index_freeze_plan(index_name, .timeout) end |
#get_all_indexes(options = GetAllIndexesOptions.new) ⇒ Array<SearchIndex>
Fetches all indexes from the server
46 47 48 49 |
# File 'lib/couchbase/management/search_index_manager.rb', line 46 def get_all_indexes( = GetAllIndexesOptions.new) res = @backend.search_index_get_all(.timeout) res[:indexes].map { |idx| extract_search_index(idx) } end |
#get_index(index_name, options = GetIndexOptions.new) ⇒ SearchIndex
Fetches an index from the server if it exists
36 37 38 39 |
# File 'lib/couchbase/management/search_index_manager.rb', line 36 def get_index(index_name, = GetIndexOptions.new) res = @backend.search_index_get(index_name, .timeout) extract_search_index(res) end |
#get_indexed_documents_count(index_name, options = GetIndexedDocumentsCountOptions.new) ⇒ Integer
Retrieves the number of documents that have been indexed for an index
96 97 98 99 |
# File 'lib/couchbase/management/search_index_manager.rb', line 96 def get_indexed_documents_count(index_name, = GetIndexedDocumentsCountOptions.new) res = @backend.search_index_get_documents_count(index_name, .timeout) res[:count] end |
#pause_ingest(index_name, options = PauseIngestOptions.new) ⇒ Object
Pauses updates and maintenance for the index
110 111 112 |
# File 'lib/couchbase/management/search_index_manager.rb', line 110 def pause_ingest(index_name, = PauseIngestOptions.new) @backend.search_index_pause_ingest(index_name, .timeout) end |
#resume_ingest(index_name, options = ResumeIngestOptions.new) ⇒ Object
Resumes updates and maintenance for an index
123 124 125 |
# File 'lib/couchbase/management/search_index_manager.rb', line 123 def resume_ingest(index_name, = ResumeIngestOptions.new) @backend.search_index_resume_ingest(index_name, .timeout) end |
#unfreeze_plan(index_name, options = UnfreezePlanOptions.new) ⇒ Object
Unfreeze the assignment of index partitions to nodes
175 176 177 |
# File 'lib/couchbase/management/search_index_manager.rb', line 175 def unfreeze_plan(index_name, = UnfreezePlanOptions.new) @backend.search_index_unfreeze_plan(index_name, .timeout) end |
#upsert_index(index_definition, options = UpsertIndexOptions.new) ⇒ Object
Creates or updates the index
59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/couchbase/management/search_index_manager.rb', line 59 def upsert_index(index_definition, = UpsertIndexOptions.new) @backend.search_index_upsert( { name: index_definition.name, type: index_definition.type, uuid: index_definition.uuid, params: (JSON.generate(index_definition.params) if index_definition.params), source_name: index_definition.source_name, source_type: index_definition.source_type, source_uuid: index_definition.source_uuid, source_params: (JSON.generate(index_definition.source_params) if index_definition.source_params), plan_params: (JSON.generate(index_definition.plan_params) if index_definition.plan_params), }, .timeout) end |