Page MenuHomePhabricator

Make it possible to configure Elasticsearch index name
ClosedPublic

Authored by WikiChad on Jul 2 2014, 7:19 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Mar 19, 3:29 PM
Unknown Object (File)
Feb 13 2024, 6:33 PM
Unknown Object (File)
Feb 8 2024, 7:02 AM
Unknown Object (File)
Feb 7 2024, 11:58 PM
Unknown Object (File)
Feb 6 2024, 1:02 PM
Unknown Object (File)
Feb 4 2024, 4:22 AM
Unknown Object (File)
Jan 4 2024, 5:35 PM
Unknown Object (File)
Dec 22 2023, 8:04 PM

Details

Summary

Similar to storage.default-namespace sometimes during development you'll want
to handle multiple indexes alongside one another. Rather than hardcoding the
/phabricator/ index make this exposed in new search.elastic.index setting,
defaulting to the existing "phabricator"

Test Plan

Existing installations should be unaffected by this change. Changing the new
setting will result in new indexes being created when someone runs
./bin/search index again

Diff Detail

Repository
rP Phabricator
Branch
master
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 1626
Build 1627: [Placeholder Plan] Wait for 30 Seconds

Event Timeline

WikiChad retitled this revision from to Make it possible to configure Elasticsearch index name.
WikiChad updated this object.
WikiChad edited the test plan for this revision. (Show Details)
WikiChad added a reviewer: epriestley.
epriestley added a subscriber: 20after4.

+ @20after4

WMF should be able to sign the corporate CLA now (L30) -- I can add exemptions as necessary after that to clear the signature block.

I went ahead and signed the individual CLA since I retain the copyright on all my work.

epriestley edited edge metadata.

Two really minor inlines. I think search.elastic.namespace might also be clearer than serach.elastic.index. That said, I'm not very familiar with ElasticSearch. Is "index" likely to be clearer to users who are?

conf/default.conf.php
764–766 ↗(On Diff #23517)

This file is on its way out -- there's a brief message in the header, but basically just don't add anything here. We can wipe the file at some point but need to make sure that all the settings in this file are exactly the same as the default settings in the code so that wiping it won't change installs.

src/applications/search/engine/PhabricatorSearchEngineElastic.php
239–242

This should probably be:

$uri = new PhutilURI($this->uri);
$uri->setPath($this->index);
$uri->appendPath($path);

That should get all the various missing-trailing-slash cases correct, I think.

This revision now requires changes to proceed.Jul 9 2014, 10:40 PM
WikiChad edited edge metadata.

Handle uri formation better, don't add to deprecated config, call the
setting 'namespace' so it's more clear to Phabricator.

This revision is now accepted and ready to land.Jul 11 2014, 1:40 AM
epriestley updated this revision to Diff 23739.

Closed by commit rP66a3abe058a7 (authored by @WikiChad, committed by @epriestley).