{"id":42925107,"url":"https://github.com/tulibraries/gencon50-solr","last_synced_at":"2026-01-30T18:07:48.921Z","repository":{"id":45538792,"uuid":"250360644","full_name":"tulibraries/gencon50-solr","owner":"tulibraries","description":"Best 50 Years in Gaming Solr Collection Catalog","archived":false,"fork":false,"pushed_at":"2025-09-16T21:43:53.000Z","size":39,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-09-16T22:10:11.920Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"XSLT","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tulibraries.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-03-26T20:07:37.000Z","updated_at":"2024-08-09T15:07:43.000Z","dependencies_parsed_at":"2023-12-21T18:59:37.104Z","dependency_job_id":"94ff3a24-fa6b-49aa-b21d-f383b7d91761","html_url":"https://github.com/tulibraries/gencon50-solr","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/tulibraries/gencon50-solr","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tulibraries%2Fgencon50-solr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tulibraries%2Fgencon50-solr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tulibraries%2Fgencon50-solr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tulibraries%2Fgencon50-solr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tulibraries","download_url":"https://codeload.github.com/tulibraries/gencon50-solr/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tulibraries%2Fgencon50-solr/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28917034,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-30T16:37:38.804Z","status":"ssl_error","status_checked_at":"2026-01-30T16:37:37.878Z","response_time":66,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-30T18:07:48.046Z","updated_at":"2026-01-30T18:07:48.909Z","avatar_url":"https://github.com/tulibraries.png","language":"XSLT","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Gencon 50 Solr Configurations\n\nThese are the Solr configuration files for the Gencon50 (Best 50 Years in Gaming) content search \u0026 faceting Solr collection.\n# TUL COB Catalog Solr Configurations\n[![Lint and Test](https://github.com/tulibraries/gencon50-solr/actions/workflows/lint-test.yml/badge.svg)](https://github.com/tulibraries/gencon50-solr/actions/workflows/lint-test.yml)\n\nThese are the Solr configuration files for the TUL Cob (LibrarySearch) Alma catalog content search \u0026 faceting Solr collection.\n\n## Prerequisites\n\n- These configurations are built for Solr 9\n- The instructions below presume a SolrCloud multi-node setup (using an external Zookeeper)\n\n## Local Testing / Development\n\nYou need a local SolrCloud cluster running to load these into. For example, use the make commands + docker-compose file in https://github.com/tulibraries/ansible-playbook-solrcloud to start a cluster. That repository's makefile includes this set of configurations and collection (gencon50) in its `make create-release-collections` and `make create-aliases` commands.\n\nIf you want to go through those steps yourself, once you have a working SolrCloud cluster:\n\n1. clone this repository locally \u0026 change into the top level directory of the repository\n\n```\n$ git clone https://github.com/tulibraries/gencon50-solr.git\n$ cd gencon50-solr\n```\n\n2. zip the contents of this repository *without* the top-level directory\n\n```\n$ zip -r - * \u003e gencon50.zip\n```\n\n3. load the configs zip file into a new SolrCloud ConfigSet (change the solr url to whichever solr you're developing against)\n\n```\n$ curl -X POST --header \"Content-Type:application/octet-stream\" --data-binary @gencon50.zip \"http://localhost:8081/solr/admin/configs?action=UPLOAD\u0026name=gencon50\"\n```\n\n4. create a new SolrCloud Collection using that ConfigSet (change the solr url to whichever solr you're developing against)\n\n```\n$ curl \"http://localhost:8090/solr/admin/collections?action=CREATE\u0026name=gencon50-1\u0026numShards=1\u0026replicationFactor=4\u0026maxShardsPerNode=1\u0026collection.configName=gencon50\"\n```\n\n5. create a new SolrCloud Alias pointing to that Collection (if you want to use an Alias; and change the solr url to whatever solr you're developing against):\n\n```\n$ curl \"http://localhost:8090/solr/admin/collections?action=CREATEALIAS\u0026name=gencon50-1-dev\u0026collections=gencon50-1\"\n```\n\n## SolrCloud Deployment\n\nAll PRs merged into the `main` branch are _not_ deployed anywhere. Only releases are deployed.\n\n### Production\n\nOnce the main branch has been adequately tested and reviewed, a release is cut. Upon creating the release tag (generally just an integer), the following occurs:\n1. new ConfigSet of `gencon50-{release-tag}` is created in [Production SolrCloud](https://solrcloud-rocky9.tul-infra.page);\n2. new Collection of `gencon50-{release-tag}-init` is created in [Production SolrCloud](https://solrcloud-rocky9.tul-infra.page) w/the requisite ConfigSet (this Collection is largely ignored);\n3. a new QA alias of `gencon50-{release-tag}-qa` is created in [Production SolrCloud](https://solrcloud-rocky9.tul-infra.page), pointing to the init Collection;\n3. a new Production alias of `gencon50-{release-tag}-prod` is created in [Production SolrCloud](https://solrcloud-rocky9.tul-infra.page), pointing to the init Collection;\n4. and, manually, a full reindex DAG is kicked off from Airflow Production to this new gencon50 alias. Upon completion of the reindex, relevant clients are redeployed pointing at their new alias, and *then QA \u0026 UAT review occur*.\n\nSee the process outlined here: https://github.com/tulibraries/grittyOps/blob/main/services/solrcloud.md\n\nAfter some time (1-4 days, as needed), the older gencon50 collections are manually removed from Prod SolrCloud.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftulibraries%2Fgencon50-solr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftulibraries%2Fgencon50-solr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftulibraries%2Fgencon50-solr/lists"}