GithubHelp home page GithubHelp logo

Comments (11)

matchish avatar matchish commented on May 23, 2024 1

@vrusua Hey) Actually you're right. The package missing scout:index and scout:delete-index commands. I believe they have to be added here as well. The issue with scout-index it accept index name not a model and we need settings and mappings for new index and scout:index don't have those parameters. If you want to index only part of your data you can create a model that will represent that part by adding a global scope to it. Then just import that model. Updates of that model will go to the index as well.

from laravel-scout-elasticsearch.

vrusua avatar vrusua commented on May 23, 2024 1

@vrusua ... If you want to index only part of your data you can create a model that will represent that part by adding a global scope to it. Then just import that model. Updates of that model will go to the index as well.

Yeah, got it, thanks for the workaround and a quick reply.

from laravel-scout-elasticsearch.

matchish avatar matchish commented on May 23, 2024

How do you create the index?

from laravel-scout-elasticsearch.

jdbolts avatar jdbolts commented on May 23, 2024

They are created automatically when importing the data. If you do not use scout:import and save a new model the index is then also automatically created but without the timestamp at the end of the index name

from laravel-scout-elasticsearch.

matchish avatar matchish commented on May 23, 2024

Timestamp doesn't matter. Alias of an index is an identifier for search. Could create a minimally test to reproduce the issue?

from laravel-scout-elasticsearch.

jdbolts avatar jdbolts commented on May 23, 2024

If you create a simple Laravel application and install this package. Then create a simple model (let's say users) with a seeder. When you run the seeder an index will be created (users_index). However, if you don't run the seeder and instead run the artisan command scout:import before running the seeder, you will get an index created which will be users_index_TIMESTAMP. This causes issues when you have an empty application and do not run the scout import initially.

from laravel-scout-elasticsearch.

matchish avatar matchish commented on May 23, 2024

The index users_index_TIMESTAMP has an alias users_index so the index name can be anything user_index_uuid for example. The index index_user doesn't have an alias but it has a name that matches to right alias, so it's strange to get the error. I'll test the case later but now I can recommend using User::disableSearchSyncing() before seeding and User::enableSearchSyncing() after. Then you can run scout:import

from laravel-scout-elasticsearch.

jdbolts avatar jdbolts commented on May 23, 2024

I got around this issue by calling the scout:import on my migration before any data is imported. This way, the indices are created correctly and then when the seeder is called, or a model is created, the index already exists so is added correctly using the alias.

from laravel-scout-elasticsearch.

vrusua avatar vrusua commented on May 23, 2024

@matchish

Hi Sergey,

sorry for pushing the legacy record, but I'm still getting the same issue on V6.0.2:

The missing index is creating correctly (with the alias and named timestamp) using the scout:import only when resending all the data. However, when we're calling some Eloquent updates, or running searchable() explicitly - the newly created index appears without the alias and named timestamp.

Is there any way to sort out this?

This option will be useful when we don't need to sync full the data to Elastic but just part only. Thanks.

Cheers,
Ruslan

from laravel-scout-elasticsearch.

vrusua avatar vrusua commented on May 23, 2024

@matchish or maybe some guide how to implement createIndex() for the scout:index option?

from laravel-scout-elasticsearch.

matchish avatar matchish commented on May 23, 2024

@vrusua Feel free to implement createIndex method if you think that custom model can't solve your issue #223

from laravel-scout-elasticsearch.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.