0

I'm trying to use the Stats Component in my Datastax Solr instance.

The part of the schema I'm trying to get stats on looks like this:

<field name="foo" type="tuple" indexed="true" stored="true"/>
<field name="foo.start" type="bigint" indexed="false" stored="true"/>
<field name="foo.end" type="bigint" indexed="false" stored="true"/>
<field name="foo.time" type="int" indexed="true" stored="true"/>

However, when I try and use stats=true&stats.field={!tuple}foo.time with a *:* query I get the following:

 "stats": {
    "stats_fields": {
      "foo.time": null
    }
  }

Is it not possible to use a {!tuple} for stats?

syncdk
  • 2,820
  • 3
  • 25
  • 31

1 Answers1

1

This is currently not supported unfortunately. Still you may contact Datastax support for further info.

Bereng
  • 724
  • 4
  • 5