Setup Searchkick Gem With Elasticsearch | Ruby On Rails 7 Tutorial

Поделиться
HTML-код
  • Опубликовано: 5 ноя 2024

Комментарии • 17

  • @ledockol
    @ledockol Год назад +8

    Great! Thanks!
    PS Install elasticsearch on Mac OS:
    brew tap elastic/tap
    brew install elastic/tap/elasticsearch-full
    brew services start elastic/tap/elasticsearch-full
    Second, in GemFile change:
    gem "elasticsearch", "< 7.14"
    # gem "elasticsearch", "~> 8.5" # not worked on Ventura and elasticsearch > 7.14

    • @Deanin
      @Deanin  Год назад +1

      Thank you! Pinning this for the Mac users. 🙂

  • @Deanin
    @Deanin  Год назад +4

    This setup process was kind of annoying so I decided to make a video covering it. Hope it helps!
    PS: Video is still processing so it might be blurry until RUclips gives us a 1080p version. Sorry about that!

  • @PreRenderedRealities
    @PreRenderedRealities Год назад +2

    Dean, I don't know how may times your channel has cleared up confusions and questions as a new Rails dev. Thank you.

    • @Deanin
      @Deanin  Год назад +2

      Glad to hear it! As funny as it sounds, it's also how I've cleared up a lot of these questions for myself haha.

  • @ddd2283
    @ddd2283 Год назад +2

    Hi ! We using opensearch in production, it was helpfull for me!

  • @carltanner3632
    @carltanner3632 Год назад +1

    Super helpful, thanks Dean.

  • @NoobCodeSaga
    @NoobCodeSaga Год назад +1

    I've been learning so much with you, thank you.

  • @rafaljaroszewicz8695
    @rafaljaroszewicz8695 Год назад +1

    I literally wanted to ask about this under your last video, nice!
    Also, note to people using Opensearch, it might be worth adding
    plugins.security.disabled: true
    To your opensearch.yml if you run into any connection problems related to unsafe connection(if you're just running your local stuff without https), basically what was said in the video but for Opensearch.

  • @fugeeohu9357
    @fugeeohu9357 Год назад

    Can I ask one dumb question? What happens now to the index view now that you've taken the @ out of @posts ?

  • @IvanOrdonezGeotechnical
    @IvanOrdonezGeotechnical Год назад

    Can you search the whole site and not just the Posts? Thanks

  • @Arnaudband
    @Arnaudband Год назад +1

    Hi Dean, thank you for sharing the tutorial. When I tried to run Post.reindex, I got this error: The client is unable to verify that the server is Elasticsearch. Some functionality may not be compatible if the server is running an unsupported product.

    • @Deanin
      @Deanin  Год назад

      First time I've seen this. From what I can tell it looks like a version issue, but that's about all I could find 🙃
      I'll look into this more when I get home, sorry about that

  • @azizdevfull
    @azizdevfull Год назад +1

    useful video : )

  • @ddd2283
    @ddd2283 Год назад

    If someone catch the error - "Unathorized" or "Faraday Error" create some file below "initializers" folder with this content:
    Searchkick.client_options = {
    url: 'localhost:9200',
    retry_on_failure: true,
    user: "admin",
    password: "admin",
    transport_options:
    {
    request: { timeout: 250 },
    ssl: { verify: false }
    }
    }

  • @huthaifaTaya
    @huthaifaTaya Год назад +1

    I had a problem after starting the service on wsl2 on windows 10 which prevented me from accessing the service from windows browser when hitting localhost:9200, turns out instead of 'localhost' at 3:10 i used '_local_' and it worked

    • @ralfspavars5690
      @ralfspavars5690 6 месяцев назад

      Thank you sooooo mutch! You saved my sanity