Questions tagged [reindex]
459 questions
0
votes
1 answer
Elasticsearch - What is the best way to reindex my data without using Logstash or the scroll api?
I'm using Elasticsearch version 1.7.5. Before I can upgrade to version 2.x (or even 5.x), I need to reindex five large indices so that they conform to the 2.x standards.
Unfortunately, Logstash (and the scroll api) can't reindex my data because of…

Jim G.
- 15,141
- 22
- 103
- 166
0
votes
1 answer
How can i do reindexing in elasticsearch to migrate from elastic search 1.4 to elasticsearch 5 using Nest api 5
I am trying to migrate the data from Elasticsearch 1.4 to Elasticsearch 5 using NEST api 5.I was able to migrate one index from ES 1.4 to ES 5 using curl commands but as i am new to elasticsearch i am not aware of how to do the same using Nest api 5…

Darshan Mestry
- 49
- 5
0
votes
1 answer
Reindexing 5M items in elastic search through Postman: times out
I have around 5 Million items in my index v1. I created a new index v2 with slight changes.
I am trying to reindex all the items in v1 --> v2.
curl -XPOST 'localhost:9200/_reindex?pretty' -H 'Content-Type: application/json' -d'
{
"source": {
…

Hexy
- 828
- 14
- 24
0
votes
1 answer
Reindex multiple types from one index to single type in another index
I have two indexes:
twitter and reitwitter
twitter has multiple documents across different types like:
"hits": [
{
"_index": "twitter",
"_type": "tweet",
"_id": "1",
"_score": 1,
"_source": {
"message": "trying out Elasticsearch"
}
},
{
"_index":…

user3732361
- 377
- 8
- 13
0
votes
1 answer
Advantage Database Server - sp_Reindex on a free table
How can I re-index a free table that is not associated with a data dictionary?
I've tried specifying just the table's name, table's name with extension, and full path to table:
execute procedure sp_Reindex('Accounts', 1024);
execute procedure…

njs41823
- 1
- 2
0
votes
2 answers
How to remove the unwanted nested keys from JSON
This is my json:
{
"all_counts_reports":{
"26":{
"name":"kumar",
"date":"2017-04-27",
"trips_per_day":"2",
"cash_trips":"0",
"credit_trips":"1",
"compliment_trips":"1"
},
…

teddycherry kj
- 5
- 6
0
votes
1 answer
Pandas: Code runs for single value but not for loop. Err: Index must be monotonic increasing or decreasing
When I am trying to run below code for list of values I get error:
-> 3088 raise ValueError('index must be monotonic increasing or decreasing')
However, when I run this code for single value. It executes.
Does not run:
def block(host):
…

jubins
- 317
- 2
- 7
- 18
0
votes
0 answers
Magento reindexing a particular single product -Magento 1.9
My magento store has products around 30000. Everytime i upload/update new product, i have to reindex the whole store which takes very huge time. So basically i would like to have a php script or any method which reindex all the indexes of a…

Guruprasad
- 101
- 2
0
votes
1 answer
Solr Re-index behavior
I am new to Solr and I am trying to understand its behavior during a re-index.
I have a batch process running that selects data from a relational table and adds it to a Solr index.
From what I understand reading about Solr, there are two cases when…

vish
- 5
- 2
0
votes
2 answers
Product Page not updating in Magento 1.9
I've tried everything I can find on the web about Magento 1.9 and refreshing a product page. I've updated the price and the old price is still displayed.
Things I've tried:
- Hard refresh in browser
- Different browser
- Private browsing
I've…

geeves
- 652
- 7
- 24
0
votes
1 answer
Changing live data coming into Elasticsearch?
I've been given a set up where I have a program creating live data and posting them into Elasticsearch.
I am trying to visualise this data in Kibana, but I'm coming across many problems such as numbers for a field being of type string instead of…

noob
- 5,954
- 6
- 20
- 32
0
votes
0 answers
Magento - Reindex Product Flat Data Error
I'm trying to reindex my Magento installation from SSH.
Product Flat Data index process goes in error, throwing the following error:
Product Attributes index was rebuilt successfully in 00:00:06
Product Prices index was rebuilt successfully in…

filippo90
- 367
- 2
- 3
- 15
0
votes
1 answer
Magento 2.1 re-indexing issue
I am using Magento 2.1
I have an issue that after i re-index products get hidden. I do have a work around but this is not good. Let me explain how I reproduce error then what i do to fix.
Upload via emagic 7000 products
I notice as the products…

Richard perris
- 511
- 1
- 6
- 15
0
votes
0 answers
magento import products not showing up on frontend version 2,1.1
I have installed Magento 2 on our domain but and I'm facing some error,
I have imports products with CSV file and all the products import successfully and showing up in back-end in the admin panel,but products cannot be showing up in front-end.
I…

ahtasham
- 1
0
votes
1 answer
How to migrate data between two elasticsearch clusters
I've been searching the web for the last couple of hours trying to figure this out.
I have a central ES server that consumes all my data. It sits in a private network. On a separate network I want to bring up another ES and give a clients access to…