Questions tagged [dynamic-mapping]
22 questions
2
votes
1 answer
Elastic search dynamic field mapping with range query on price field
I have two fields in my elastic search which is lowest_local_price and lowest_global_price.
I want to map dynamic value to third field price on run time based on local or global country.
If local country matched then i want to map lowest_local_price…

Kajal Pandya
- 75
- 1
- 7
1
vote
0 answers
How to place markers dynamically from API to google map in flutter?
class LiveVehicleTrackingModel {
double lat;
double lng;
int speed;
double refDist;
String refLoc;
String accStatus;
String recDateTime;
String driver;
double temperature;
String imoblize;
LiveVehicleTrackingModel(
{this.lat,
this.lng,
…

Umair Ahmad
- 31
- 1
- 5
1
vote
0 answers
flutter I/flutter ( 4140): type '_InternalLinkedHashMap' is not a subtype of type 'Map'
late File jsonFile;
late Directory dir;
String fileName = "myJSONfile.json";
bool fileExists = false;
Map fileContent = {};
//late Map fileContent;
//late Map fileContent = {};
//var…

Toska 003
- 25
- 4
1
vote
2 answers
Nesting a DynamicMap inside a DynamicMap is not supported
I have different timeseries plot for different time series i made holomap , now i am plotting different lat lon range holomap then i am getting exception :-
Exception: Nesting a DynamicMap inside a DynamicMap is not supported. Ensure that the…

MSA msa
- 83
- 1
- 10
1
vote
0 answers
Remove all elements from a dynamic map in clojure
I have a Dynamic Map
(def ^:dynamic all-elements-name-map {})
I have inserted many elements to this map in an iteration. In order to prepare for the next iteration i need to clear all the contents in this map. Is there a inbuilt way to clear all…

Varun J.P
- 29
- 9
1
vote
1 answer
Dynamic Mapping Disabled is not working in ElasticSearch
I am running into errors when I try to disable dynamic mapping in ElasticSearch settings. I am using ElasticSearch 1.7 version for implementation.
StackTrace :
8151 [main] WARN org.apache.hadoop.mapred.YarnChild - Exception running child :…

Blank
- 81
- 11
1
vote
0 answers
elasticsearch still creating mappings ad-hoc with dynamic mapping disabled
I don't seem to understand how to prevent elasticsearch from automatically adding new mappings for new fields. The documentation states
Automatic type creation can also be disabled for all indices by setting an index template:
PUT…

Felk
- 7,720
- 2
- 35
- 65
0
votes
2 answers
Incremental load in Azure Data Factory
I am replicating my data from Azure SQl DB TO Azure SQL DB. I have some tables with date columns and some tables with just the ID columns which are assigning primary key. While performing incremental load in ADF, I can select date as watermark…

gmp
- 1
- 3
0
votes
0 answers
SFCC Redirect URLs with parameters
I want to execute the below redirection using any one of the following:- URL Redirects, Static Mapping or Dynamic Mapping in SFCC.
Source URL: https://www.domainName.com/category/?prefn1=refinementColor&prefv1=Multi
Destination URL:…

Nikhil Patil
- 11
- 3
- 8
0
votes
0 answers
How to pass operator's output in .expand() in airflow 2.5
I am currently working with an operator that returns a continuation token. Considering that the operator is called FrOperator and I have a sensor that will take this operator's continuation token FrSensor.
Airflow doesn't seem to be passing the…

noirjaunerouge
- 1
- 1
0
votes
0 answers
Dynamic mapping for nested array values in Elasticsearch
I want to create dynamic mapping for objects like:
{
"id": 1,
"name": "item1",
"inventory": {
"newyork": {
"total_sales_count": 10000,
"rank": 10,
"average_sales_count": 100,
"discount": 10,
"store_info": [
…

Aman Garg
- 4,198
- 2
- 21
- 29
0
votes
1 answer
Convert the dynamic long datatype field to string in Elasticsearch .NET 8.x client
My data is dynamic, some fileds have incorrect values, when i index/insert first time
data below
// other attributes....
"my_key-sp1": [
{
"locale": null,
"scope": null,
"data":…

Alap
- 59
- 4
0
votes
1 answer
Elasticsearch Define mapping template for a certain type of index
I wanted to know if there is a way in elasticsearch 8.x to define a mapping template such that whenever an index of say the certain name comes in a mapping is applied to it on the fly.
I have a ES cluster where all my indexes follow the pattern as…

Ricko
- 9
- 2
0
votes
1 answer
RequestMapping Dynamic Url
I Have a Spring Boot Server, In my Database, I have some URLs without any special pattern, I want RequestMapping all of these stored URLs into the Controller and return a special view(control by template engine) for this.
I tried to do this by…

Morteza Jalambadani
- 2,190
- 6
- 21
- 35
0
votes
1 answer
Create Index with Dynamic mapping
I'm trying to create an index with dynamic mapping. It seems like there are some error in the mapping template. The dataset contains string, numeric value and dates. I've to accommodate all those.
mapping = {
"settings": {
…

vishnuvid
- 63
- 9