Limiting columns indexed and returned by a query

Changing the default column limit in Thrift tables.

When using dynamic fields, the default column limit controls the maximum number of indexed columns overall, not just dynamic field columns. The column limit also controls the maximum number of columns returned during queries. This column limit prevents out of memory errors caused by using too many dynamic fields. If dynamic fields are not used, the column limit has no effect.

To change the default column limit, which is 1024, configure the dseColumnLimit element in the solrconfig.xml file. You can override the default configuration using the column.limit parameter in a query to specify a different value, for example 2048.
http://localhost:8983/solr/keyspace.table/select?q=
  title%3Amytitle*&fl=title&column.limit=2048