Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mapping - Support specifying string as number values (for example, for boost) #53

Closed
clintongormley opened this issue Mar 9, 2010 · 2 comments

Comments

@clintongormley
Copy link
Contributor

Hiya

Try this:

curl -XPUT 'http://127.0.0.1:9200/foo/bar/_mapping?ignoreConflicts=false'  -d '
{
   "properties" : {
      "name" : {
         "boost" : "2.0",
         "type" : "string"
      }
   }
}
'

Results in:
{
"error" : "NullPointerException[null]"
}

@kimchy
Copy link
Member

kimchy commented Mar 10, 2010

Bad exception... . But basically, it expects the boost to be a float, and not a string. If you change that, it will work. Let me do the same fix as the number types to support passing string values for numbers here as well...

@kimchy
Copy link
Member

kimchy commented Mar 10, 2010

Mapping - Support specifying string as number values (for example, for boost), closed by 7c68489.

dadoonet added a commit that referenced this issue Jun 5, 2015
Update documentation for ICU Transform
StefanGor pushed a commit to StefanGor/elasticsearch that referenced this issue Mar 17, 2017
ywelsch pushed a commit to ywelsch/elasticsearch that referenced this issue May 24, 2018
Today, if a node detects it is lagging the master it falls back to CANDIDATE
but then receives a heartbeat from the master and goes back to FOLLOWER. If it
is lagging because it missed a cluster state update for some reason then it
will never recover, because there's no impetus to publish a further update.

This change fixes this, crudely, by causing nodes to consider themselves as
faulty while they are lagging, which eventually results in them being kicked
out of the cluster and, later, rejoining, which fixes the lag.

Fixes elastic#43, but will eventually be superseded by elastic#53.
dakrone added a commit that referenced this issue Mar 19, 2020
* Fix feature flag setting for ComponentTemplate APIs (#53758)

The feature flag was set for *most* of the builds, but there are a couple where it was missing.

Resolves #53708

* Add skip for older versions of ES
henningandersen pushed a commit to henningandersen/elasticsearch that referenced this issue Jun 4, 2020
With this commit we remove some dead code from the Kibana parameter source. We
also turn `dashboard` into a mandatory parameter and add tests.

Relates elastic#53
cbuescher pushed a commit to cbuescher/elasticsearch that referenced this issue Oct 2, 2023
With this commit we replace usage of Rally's deprecated command line
argument `--cluster-health` with track parameters.

Relates elastic#53
Relates elastic/rally#456
Relates elastic/rally-tracks#41
This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants