Skip to main content

CLI app for Solr

Project description

Solar

This CLI tool provides help with some routine Solr operations:

  • Import / Export data
  • Import / Export configs
  • Re-index Collection (WIP)

Usage

Python version >=3.8 required

pip install solar-cli

Export

Export data

This command will save docs from <collection> to local folder ./data:

solar -c "<collection>" "https://<username>:<password>@localhost:8333" export ./data

Export nested documents

Solr can handle nested documents. To see nested structure of collection usually we add fl="*, [child]" to our query params. Solar can handle exporting nested documents by adding --nested flag:

solar -c "<collection>" "https://<username>:<password>@localhost:8333" export --nested ./data

Export config

If we want to save collection config, we can user export-config command:

solar -c "<collection>" "https://<username>:<password>@localhost:8333" export-config ./configs

This will all config files to local folder ./configs

Import

Import data

Later, we can import previously exported data with import command, and ./data/<collection>.json as source file:

solar "https://<username>:<password>@localhost:8333" import ./data/<collection>.json

We do not have to specify collection name, source .json already have collection name. However, if we want to import data as collection with different name, we can set this with -c flag:

solar -c "<new collection name>" "https://<username>:<password>@localhost:8333" import ./data/<collection>.json

Import config

Solar can help you import configsets to your Solr instance:

solar -c "https://<username>:<password>@localhost:8333" import-config <config folder path>

This command will read files from provide config path, zip them, and send to Solr. By default, created config name will be equal to config folder name. For example, if we import config from ./configs/products, Solar will create config named products.

If we want to override default name, we can use --name flag:

solar -c "https://<username>:<password>@localhost:8333" import-config --name "product-v2" <config folder path>

This will create config product-v2.

Also, we can overwrite existing config with --overwrite flag

This flag will add cleanup=true and overwrite=true params to request for creating config. However it is recommended to create config with the new name, because in some cases, Solr caches fields types, and some changes of new config will not be applied. Goog practice is version control your configs and name them with version identifier (commit hash, for example) Using this flag also requires that no collections is linked to this config

solar -c "https://<username>:<password>@localhost:8333" import-config --overwrite <config folder path>

Other

Remove config

Config <config name> can be removed from Solr with this command:

solar -c "https://<username>:<password>@localhost:8333" remove-config "<config name>"

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

solar_cli-1.0.0.tar.gz (11.9 kB view details)

Uploaded Source

Built Distribution

solar_cli-1.0.0-py3-none-any.whl (15.7 kB view details)

Uploaded Python 3

File details

Details for the file solar_cli-1.0.0.tar.gz.

File metadata

  • Download URL: solar_cli-1.0.0.tar.gz
  • Upload date:
  • Size: 11.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.10.6 Windows/10

File hashes

Hashes for solar_cli-1.0.0.tar.gz
Algorithm Hash digest
SHA256 0a1fa31db1fcde5b0c87508877cdcb561357b850045752eb9c3205ffb4b78806
MD5 a5b941087f2467cd030fb0c33a9f6478
BLAKE2b-256 81e7161422032574d0eab7e4430336f9b813324b2b33a4a47971b14bee190a5b

See more details on using hashes here.

File details

Details for the file solar_cli-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: solar_cli-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 15.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.10.6 Windows/10

File hashes

Hashes for solar_cli-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4918d82da4ad9b25a05427f26f810987e60c782f19789ad7d2b5fe52fa2edc6f
MD5 0e57ce2dda5b0b4b721fe3ee0c72d491
BLAKE2b-256 f21c199a8aceb6223e410e9020f2631da22db30af1b896080e9077155a84d765

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page