We have a multicore setup on DSE2.2. I run into the following error:
.
CassandraDirectUpdateHandler2.java (line 771) org.apache.lucene.store.LockObtainFailedException: Lock obtain timed out: SimpleFSLock@\dev\dse\var\cassandra\data\solr.data\test.core1\index\write.lock
.
Tried restarting the application, but the error keeps coming back when DSE starts. Any suggestion on how to resolve this and how to prevent this issue from happening? Thanks!
How to avoid and resolve LockObtainFailedException
(14 posts) (4 voices)-
Posted 5 months ago #
-
Can you upload your solrconfig.xml?
Posted 5 months ago # -
Also, could you post a snippet from the log, a few pages before and after the exception? Thanks!
Posted 5 months ago # -
my solrconfig.xml:
<config>
<!--
In all configuration below, a prefix of "solr." for class names is an alias that causes solr to search appropriate packages, including org.apache.solr.(search|update|request|core|analysis) You may also specify a fully qualified Java classname if you have your own custom plugins.
-->
<!--
Set this to 'false' if you want solr to continue working after it has encountered an severe configuration error. In a production environment, you may want solr to keep working even if one handler is mis-configured. You may also set this to false using by setting the system property: -Dsolr.abortOnConfigurationError=false
-->
<abortOnConfigurationError>${solr.abortOnConfigurationError:true}</abortOnConfigurationError>
<!--
Controls what version of Lucene various components of Solr adhere to. Generally, you want to use the latest version to get all bug fixes and improvements. It is highly recommended that you fully re-index after changing this setting as it can affect both how text is indexed and queried.
-->
<luceneMatchVersion>LUCENE_40</luceneMatchVersion>
<!--
lib directives can be used to instruct Solr to load an Jars identified and use them to resolve any "plugins" specified in your solrconfig.xml or schema.xml (ie: Analyzers, Request Handlers, etc...). All directories and paths are resolved relative to the instanceDir. If a "./lib" directory exists in your instanceDir, all files found in it are included as if you had used the following syntax... <lib dir="./lib" />
-->
<!--
A dir option by itself adds any files found in the directory to the classpath, this is useful for including all jars in a directory.
-->
<lib dir="../../contrib/extraction/lib"/>
<!--
When a regex is specified in addition to a directory, only the files in that directory which completely match the regex (anchored on both ends) will be included.
-->
<lib dir="../../dist/" regex="apache-solr-cell-\d.*\.jar"/>
<lib dir="../../dist/" regex="apache-solr-clustering-\d.*\.jar"/>
<lib dir="../../dist/" regex="apache-solr-dataimporthandler-\d.*\.jar"/>
<!--
If a dir option (with or without a regex) is used and nothing is found that matches, it will be ignored
-->
<lib dir="../../contrib/clustering/lib/"/>
<lib dir="/total/crap/dir/ignored"/>
<!--
Data Directory Used to specify an alternate directory to hold all index data other than the default ./data under the Solr home. If replication is in use, this should match the replication configuration.
-->
<dataDir>${solr.data.dir:}</dataDir>
<!--
The DirectoryFactory to use for indexes. solr.StandardDirectoryFactory, the default, is filesystem based and tries to pick the best implementation for the current JVM and platform. One can force a particular implementation via solr.MMapDirectoryFactory, solr.NIOFSDirectoryFactory, or solr.SimpleFSDirectoryFactory. solr.RAMDirectoryFactory is memory based, not persistent, and doesn't work with replication.
-->
<directoryFactory class="${solr.directoryFactory:solr.StandardDirectoryFactory}" name="DirectoryFactory"/>
<!--
Index Defaults Values here affect all index writers and act as a default unless overridden. WARNING: See also the <mainIndex> section below for parameters that overfor Solr's main Lucene index.
-->
<indexConfig>
<!--
Sets the amount of RAM that may be used by Lucene indexing for buffering added documents and deletions before they are flushed to the Directory.
-->
<useCompoundFile>false</useCompoundFile>
<ramBufferSizeMB>32</ramBufferSizeMB>
<mergeFactor>10</mergeFactor>
<!--
If both ramBufferSizeMB and maxBufferedDocs is set, then Lucene will flush based on whichever limit is hit first.
-->
<!-- <maxBufferedDocs>1000</maxBufferedDocs> -->
<!--maxFieldLength>10000</maxFieldLength-->
<writeLockTimeout>1000</writeLockTimeout>
<!--commitLockTimeout>10000</commitLockTimeout-->
<!--
Expert: Merge Policy The Merge Policy in Lucene controls how merging is handled by Lucene. The default in Solr 3.3 is TieredMergePolicy. The default in 2.3 was the LogByteSizeMergePolicy, previous versions used LogDocMergePolicy. LogByteSizeMergePolicy chooses segments to merge based on their size. The Lucene 2.2 default, LogDocMergePolicy chose when to merge based on number of documents Other implementations of MergePolicy must have a no-argument constructor
-->
<!--
<mergePolicy class="org.apache.lucene.index.TieredMergePolicy"/>
-->
<!--
Expert: Merge Scheduler The Merge Scheduler in Lucene controls how merges are performed. The ConcurrentMergeScheduler (Lucene 2.3 default) can perform merges in the background using separate threads. The SerialMergeScheduler (Lucene 2.2 default) does not.
-->
<!--
<mergeScheduler class="org.apache.lucene.index.ConcurrentMergeScheduler"/>
-->
<!--
LockFactory This option specifies which Lucene LockFactory implementation to use. single = SingleInstanceLockFactory - suggested for a read-only index or when there is no possibility of another process trying to modify the index. native = NativeFSLockFactory - uses OS native file locking. Do not use when multiple solr webapps in the same JVM are attempting to share a single index. simple = SimpleFSLockFactory - uses a plain file for locking (For backwards compatibility with Solr 1.2, 'simple' is the default if not specified.) More details on the nuances of each LockFactory... http://wiki.apache.org/lucene-java/AvailableLockFactories
-->
<lockType>native</lockType>
<!-- Unlock On StartupIf true, unlock any held write or commit locks on startup.
This defeats the locking mechanism that allows multiple
processes to safely access a lucene index, and should be used
with care. Default is "false".This is not needed if lock type is 'none' or 'single'
-->
<unlockOnStartup>false</unlockOnStartup>
<!--
Expert: Controls how often Lucene loads terms into memory Default is 128 and is likely good for most everyone.
-->
<!-- <termIndexInterval>256</termIndexInterval> -->
<!--
If true, IndexReaders will be reopened (often more efficient) instead of closed and then opened.
-->
<reopenReaders>true</reopenReaders>
<!--
Commit Deletion Policy Custom deletion policies can specified here. The class must implement org.apache.lucene.index.IndexDeletionPolicy. http://lucene.apache.org/java/2_9_1/api/all/org/apache/lucene/index/IndexDeletionPolicy.html The standard Solr IndexDeletionPolicy implementation supports deleting index commit points on number of commits, age of commit point and optimized status. The latest commit point should always be preserved regardless of the criteria.
-->
<deletionPolicy class="solr.SolrDeletionPolicy">
<!-- The number of commit points to be kept -->
<str name="maxCommitsToKeep">1</str>
<!-- The number of optimized commit points to be kept -->
<str name="maxOptimizedCommitsToKeep">0</str>
<!--
Delete all commit points once they have reached the given age. Supports DateMathParser syntax e.g.
-->
<!--
<str name="maxCommitAge">30MINUTES</str> <str name="maxCommitAge">1DAY</str>
-->
</deletionPolicy>
<!--
Lucene Infostream To aid in advanced debugging, Lucene provides an "InfoStream" of detailed information when indexing. Setting The value to true will instruct the underlying Lucene IndexWriter to write its debugging info the specified file
-->
<infoStream file="INFOSTREAM.txt">false</infoStream>
</indexConfig>
<!--
JMX This example enables JMX if and only if an existing MBeanServer is found, use this if you want to configure JMX through JVM parameters. Remove this to disable exposing Solr configuration and statistics to JMX. For more details see http://wiki.apache.org/solr/SolrJmx
-->
<jmx/>
<!-- The default high-performance update handler -->
<updateHandler class="solr.DirectUpdateHandler2">
<!--
AutoCommit Perform a <commit/> automatically under certain conditions. Instead of enabling autoCommit, consider using "commitWithin" when adding documents. http://wiki.apache.org/solr/UpdateXmlMessages maxDocs - Maximum number of documents to add since the last commit before automatically triggering a new commit. maxTime - Maximum amount of time that is allowed to pass since a document was added before automaticly triggering a new commit.
-->
<autoCommit>
<maxTime>15000</maxTime>
<openSearcher>false</openSearcher>
</autoCommit>
<!-- softAutoCommit is like autoCommit except it causes a
'soft' commit which only ensures that changes are visible
but does not ensure that data is synced to disk. This is
faster and more near-realtime friendly than a hard commit.
-->
<autoSoftCommit>
<maxTime>1000</maxTime>
</autoSoftCommit>
</updateHandler>
<query>
<!--
Max Boolean Clauses Maximum number of clauses in each BooleanQuery, an exception is thrown if exceeded. ** WARNING ** This option actually modifies a global Lucene property that will affect all SolrCores. If multiple solrconfig.xml files disagree on this property, the value at any given moment will be based on the last SolrCore to be initialized.
-->
<maxBooleanClauses>1024</maxBooleanClauses>
<!--
Solr Internal Query Caches There are two implementations of cache available for Solr, LRUCache, based on a synchronized LinkedHashMap, and FastLRUCache, based on a ConcurrentHashMap. FastLRUCache has faster gets and slower puts in single threaded operation and thus is generally faster than LRUCache when the hit ratio of the cache is high (> 75%), and may be faster under other scenarios on multi-cpu systems.
-->
<!--
Filter Cache Cache used by SolrIndexSearcher for filters (DocSets), unordered sets of *all* documents that match a query. When a new searcher is opened, its caches may be prepopulated or "autowarmed" using data from caches in the old searcher. autowarmCount is the number of items to prepopulate. For LRUCache, the autowarmed items will be the most recently accessed items. Parameters: class - the SolrCache implementation LRUCache or (LRUCache or FastLRUCache) size - the maximum number of entries in the cache initialSize - the initial capacity (number of entries) of the cache. (see java.util.HashMap) autowarmCount - the number of entries to prepopulate from and old cache.
-->
<filterCache autowarmCount="0" class="solr.FastLRUCache" initialSize="512" size="512"/>
<!--
Query Result Cache Caches results of searches - ordered lists of document ids (DocList) based on a query, a sort, and the range of documents requested.
-->
<queryResultCache autowarmCount="0" class="solr.LRUCache" initialSize="512" size="512"/>
<!--
Document Cache Caches Lucene Document objects (the stored fields for each document). Since Lucene internal document ids are transient, this cache will not be autowarmed.
-->
<documentCache autowarmCount="0" class="solr.LRUCache" initialSize="512" size="512"/>
<!--
Lazy Field Loading If true, stored fields that are not requested will be loaded lazily. This can result in a significant speed improvement if the usual case is to not load all stored fields, especially if the skipped fields are large compressed text fields.
-->
<enableLazyFieldLoading>true</enableLazyFieldLoading>
<!--
Result Window Size An optimization for use with the queryResultCache. When a search is requested, a superset of the requested number of document ids are collected. For example, if a search for a particular query requests matching documents 10 through 19, and queryWindowSize is 50, then documents 0 through 49 will be collected and cached. Any further requests in that range can be satisfied via the cache.
-->
<queryResultWindowSize>20</queryResultWindowSize>
<!--
Maximum number of documents to cache for any entry in the queryResultCache.
-->
<queryResultMaxDocsCached>200</queryResultMaxDocsCached>
<!--
Query Related Event Listeners Various IndexSearcher related events can trigger Listeners to take actions. newSearcher - fired whenever a new searcher is being prepared and there is a current searcher handling requests (aka registered). It can be used to prime certain caches to prevent long request times for certain requests. firstSearcher - fired whenever a new searcher is being prepared but there is no current registered searcher to handle requests or to gain autowarming data from.
-->
<!--
QuerySenderListener takes an array of NamedList and executes a local query request for each NamedList in sequence.
-->
<listener class="solr.QuerySenderListener" event="newSearcher">
<arr name="queries">
<!--
<lst><str name="q">solr</str><str name="sort">price asc</str></lst> <lst><str name="q">rocks</str><str name="sort">weight asc</str></lst>
-->
</arr>
</listener>
<listener class="solr.QuerySenderListener" event="firstSearcher">
<arr name="queries">
<lst>
<str name="q">static firstSearcher warming in solrconfig.xml</str>
</lst>
</arr>
</listener>
<!--
Use Cold Searcher If a search request comes in and there is no current registered searcher, then immediately register the still warming searcher and use it. If "false" then all requests will block until the first searcher is done warming.
-->
<useColdSearcher>true</useColdSearcher>
<!--
Max Warming Searchers Maximum number of searchers that may be warming in the background concurrently. An error is returned if this limit is exceeded. Recommend values of 1-2 for read-only slaves, higher for masters w/o cache warming.
-->
<maxWarmingSearchers>16</maxWarmingSearchers>
</query>
<!--
Request Dispatcher This section contains instructions for how the SolrDispatchFilter should behave when processing requests for this SolrCore. handleSelect affects the behavior of requests such as /select?qt=XXX handleSelect="true" will cause the SolrDispatchFilter to process the request and will result in consistent error handling and formatting for all types of requests. handleSelect="false" will cause the SolrDispatchFilter to ignore "/select" requests and fallback to using the legacy SolrServlet and it's Solr 1.1 style error formatting
-->
<requestDispatcher handleSelect="true">
<!--
Request Parsing These settings indicate how Solr Requests may be parsed, and what restrictions may be placed on the ContentStreams from those requests enableRemoteStreaming - enables use of the stream.file and stream.url parameters for specifying remote streams. multipartUploadLimitInKB - specifies the max size of Multipart File Uploads that Solr will allow in a Request. *** WARNING *** The settings below authorize Solr to fetch remote files, You should make sure your system has some authentication before using enableRemoteStreaming="true"
-->
<requestParsers enableRemoteStreaming="true" multipartUploadLimitInKB="2048000"/>
<!--
HTTP Caching Set HTTP caching related parameters (for proxy caches and clients). The options below instruct Solr not to output any HTTP Caching related headers
-->
<httpCaching never304="true"/>
<!--
If you include a <cacheControl> directive, it will be used to generate a Cache-Control header (as well as an Expires header if the value contains "max-age=") By default, no Cache-Control header is generated. You can use the <cacheControl> option even if you have set never304="true"
-->
<!--
<httpCaching never304="true" > <cacheControl>max-age=30, public</cacheControl> </httpCaching>
-->
<!--
To enable Solr to respond with automatically generated HTTP Caching headers, and to response to Cache Validation requests correctly, set the value of never304="false" This will cause Solr to generate Last-Modified and ETag headers based on the properties of the Index. The following options can also be specified to affect the values of these headers... lastModFrom - the default value is "openTime" which means the Last-Modified value (and validation against If-Modified-Since requests) will all be relative to when the current Searcher was opened. You can change it to lastModFrom="dirLastMod" if you want the value to exactly correspond to when the physical index was last modified. etagSeed="..." is an option you can change to force the ETag header (and validation against If-None-Match requests) to be different even if the index has not changed (ie: when making significant changes to your config file) (lastModifiedFrom and etagSeed are both ignored if you use the never304="true" option)
-->
<!--
<httpCaching lastModifiedFrom="openTime" etagSeed="Solr"> <cacheControl>max-age=30, public</cacheControl> </httpCaching>
-->
</requestDispatcher>
<!--
Request Handlers http://wiki.apache.org/solr/SolrRequestHandler incoming queries will be dispatched to the correct handler based on the path or the qt (query type) param. Names starting with a '/' are accessed with the a path equal to the registered name. Names without a leading '/' are accessed with: http://host/app/core/select?qt=name If a /select request is processed with out a qt param specified, the requestHandler that declares default="true" will be used. If a Request Handler is declared with startup="lazy", then it will not be initialized until the first request that uses it.
-->
<!--
SearchHandler http://wiki.apache.org/solr/SearchHandler For processing Search Queries, the primary Request Handler provided with Solr is "SearchHandler" It delegates to a sequent of SearchComponents (see below) and supports distributed queries across multiple shards
-->
<requestHandler class="solr.SearchHandler" default="true" name="search">
<!--
default values for query parameters can be specified, these will be overridden by parameters in the request
-->
<lst name="defaults">
<str name="echoParams">explicit</str>
<str name="df">id</str>
<int name="rows">10</int>
</lst>
</requestHandler>
<!--
XML Update Request Handler. http://wiki.apache.org/solr/UpdateXmlMessages The canonical Request Handler for Modifying the Index through commands specified using XML. Note: Since solr1.1 requestHandlers requires a valid content type header if posted in the body. For example, curl now requires: -H 'Content-type:text/xml; charset=utf-8'
-->
<requestHandler class="solr.XmlUpdateRequestHandler" name="/update">
<!--
See below for information on defining updateRequestProcessorChains that can be used by name on each Update Request
-->
<!--
<lst name="defaults"> <str name="update.chain">dedupe</str> </lst>
-->
</requestHandler>
<!--
Binary Update Request Handler http://wiki.apache.org/solr/javabin
-->
<requestHandler class="solr.BinaryUpdateRequestHandler" name="/update/javabin"/>
<!--
CSV Update Request Handler http://wiki.apache.org/solr/UpdateCSV
-->
<requestHandler class="solr.CSVRequestHandler" name="/update/csv" startup="lazy"/>
<!--
JSON Update Request Handler http://wiki.apache.org/solr/UpdateJSON
-->
<requestHandler class="solr.JsonUpdateRequestHandler" name="/update/json" startup="lazy"/>
<!--
Solr Cell Update Request Handler http://wiki.apache.org/solr/ExtractingRequestHandler
-->
<requestHandler class="solr.extraction.ExtractingRequestHandler" name="/update/extract" startup="lazy">
<lst name="defaults">
<!--
All the main content goes into "text"... if you need to return the extracted text or do highlighting, use a stored field.
-->
<str name="fmap.content">text</str>
<str name="lowernames">true</str>
<str name="uprefix">ignored_</str>
<!-- capture link hrefs but ignore div attributes -->
<str name="captureAttr">true</str>
<str name="fmap.a">links</str>
<str name="fmap.div">ignored_</str>
</lst>
</requestHandler>
<!--
XSLT Update Request Handler Transforms incoming XML with stylesheet identified by tr=
-->
<requestHandler class="solr.XsltUpdateRequestHandler" name="/update/xslt" startup="lazy"/>
<!--
Field Analysis Request Handler RequestHandler that provides much the same functionality as analysis.jsp. Provides the ability to specify multiple field types and field names in the same request and outputs index-time and query-time analysis for each of them. Request parameters are: analysis.fieldname - field name whose analyzers are to be used analysis.fieldtype - field type whose analyzers are to be used analysis.fieldvalue - text for index-time analysis q (or analysis.q) - text for query time analysis analysis.showmatch (true|false) - When set to true and when query analysis is performed, the produced tokens of the field value analysis will be marked as "matched" for every token that is produces by the query analysis
-->
<requestHandler class="solr.FieldAnalysisRequestHandler" name="/analysis/field" startup="lazy"/>
<!--
Document Analysis Handler http://wiki.apache.org/solr/AnalysisRequestHandler An analysis handler that provides a breakdown of the analysis process of provided docuemnts. This handler expects a (single) content stream with the following format: <docs> <doc> <field name="id">1</field> <field name="name">The Name</field> <field name="text">The Text Value</field> </doc> <doc>...</doc> <doc>...</doc> ... </docs> Note: Each document must contain a field which serves as the unique key. This key is used in the returned response to associate an analysis breakdown to the analyzed document. Like the FieldAnalysisRequestHandler, this handler also supports query analysis by sending either an "analysis.query" or "q" request parameter that holds the query text to be analyzed. It also supports the "analysis.showmatch" parameter which when set to true, all field tokens that match the query tokens will be marked as a "match".
-->
<requestHandler class="solr.DocumentAnalysisRequestHandler" name="/analysis/document" startup="lazy"/>
<!--
Admin Handlers Admin Handlers - This will register all the standard admin RequestHandlers.
-->
<requestHandler class="solr.admin.AdminHandlers" name="/admin/"/>
<!-- ping/healthcheck -->
<requestHandler class="solr.PingRequestHandler" name="/admin/ping">
<lst name="invariants">
<str name="q">solrpingquery</str>
</lst>
<lst name="defaults">
<str name="qt">search</str>
<str name="echoParams">all</str>
<str name="df">id</str>
</lst>
</requestHandler>
<!-- Echo the request contents back to the client -->
<requestHandler class="solr.DumpRequestHandler" name="/debug/dump">
<lst name="defaults">
<str name="echoParams">explicit</str>
<str name="echoHandler">true</str>
</lst>
</requestHandler>
<!--
Spell Check The spell check component can return a list of alternative spelling suggestions. http://wiki.apache.org/solr/SpellCheckComponent
-->
<searchComponent class="solr.SpellCheckComponent" name="spellcheck">
<str name="queryAnalyzerFieldType">textSpell</str>
<!--
Multiple "Spell Checkers" can be declared and used by this component
-->
<!--
a spellchecker built from a field of the main index, and written to disk
-->
<lst name="spellchecker">
<str name="name">default</str>
<str name="field">name</str>
<str name="spellcheckIndexDir">spellchecker</str>
<!--
uncomment this to require terms to occur in 1% of the documents in order to be included in the dictionary <float name="thresholdTokenFrequency">.01</float>
-->
</lst>
</searchComponent>
<!--
A request handler for demonstrating the spellcheck component. NOTE: This is purely as an example. The whole purpose of the SpellCheckComponent is to hook it into the request handler that handles your normal user queries so that a separate request is not needed to get suggestions. IN OTHER WORDS, THERE IS REALLY GOOD CHANCE THE SETUP BELOW IS NOT WHAT YOU WANT FOR YOUR PRODUCTION SYSTEM! See http://wiki.apache.org/solr/SpellCheckComponent for details on the request parameters.
-->
<requestHandler class="solr.SearchHandler" name="/spell" startup="lazy">
<lst name="defaults">
<str name="spellcheck.onlyMorePopular">false</str>
<str name="spellcheck.extendedResults">false</str>
<str name="spellcheck.count">1</str>
</lst>
<arr name="last-components">
<str>spellcheck</str>
</arr>
</requestHandler>
<!--
Term Vector Component http://wiki.apache.org/solr/TermVectorComponent
-->
<searchComponent class="solr.TermVectorComponent" name="tvComponent"/>
<!--
A request handler for demonstrating the term vector component This is purely as an example. In reality you will likely want to add the component to your already specified request handlers.
-->
<requestHandler class="solr.SearchHandler" name="tvrh" startup="lazy">
<lst name="defaults">
<bool name="tv">true</bool>
</lst>
<arr name="last-components">
<str>tvComponent</str>
</arr>
</requestHandler>
<!--
Clustering Component http://wiki.apache.org/solr/ClusteringComponent This relies on third party jars which are notincluded in the release. To use this component (and the "/clustering" handler) Those jars will need to be downloaded, and you'll need to set the solr.cluster.enabled system property when running solr... java -Dsolr.clustering.enabled=true -jar start.jar
-->
<searchComponent class="solr.clustering.ClusteringComponent" enable="${solr.clustering.enabled:false}"
name="clustering">
<!-- Declare an engine -->
<lst name="engine">
<!-- The name, only one can be named "default" -->
<str name="name">default</str>
<!--
Class name of Carrot2 clustering algorithm. Currently available algorithms are: * org.carrot2.clustering.lingo.LingoClusteringAlgorithm * org.carrot2.clustering.stc.STCClusteringAlgorithm * org.carrot2.clustering.kmeans.BisectingKMeansClusteringAlgorithm See http://project.carrot2.org/algorithms.html for the algorithm's characteristics.
-->
<str name="carrot.algorithm">
org.carrot2.clustering.lingo.LingoClusteringAlgorithm
</str>
<!--
Overriding values for Carrot2 default algorithm attributes. For a description of all available attributes, see: http://download.carrot2.org/stable/manual/#chapter.components. Use attribute key as name attribute of str elements below. These can be further overridden for individual requests by specifying attribute key as request parameter name and attribute value as parameter value.
-->
<str name="LingoClusteringAlgorithm.desiredClusterCountBase">20</str>
<!--
Location of Carrot2 lexical resources. A directory from which to load Carrot2-specific stop words and stop labels. Absolute or relative to Solr config directory. If a specific resource (e.g. stopwords.en) is present in the specified dir, it will completely override the corresponding default one that ships with Carrot2. For an overview of Carrot2 lexical resources, see: http://download.carrot2.org/head/manual/#chapter.lexical-resources
-->
<str name="carrot.lexicalResourcesDir">clustering/carrot2</str>
<!--
The language to assume for the documents. For a list of allowed values, see: http://download.carrot2.org/stable/manual/#section.attribute.lingo.MultilingualClustering.defaultLanguage
-->
<str name="MultilingualClustering.defaultLanguage">ENGLISH</str>
</lst>
<lst name="engine">
<str name="name">stc</str>
<str name="carrot.algorithm">org.carrot2.clustering.stc.STCClusteringAlgorithm</str>
</lst>
</searchComponent>
<!--
A request handler for demonstrating the clustering component This is purely as an example. In reality you will likely want to add the component to your already specified request handlers.
-->
<requestHandler class="solr.SearchHandler" enable="${solr.clustering.enabled:false}" name="/clustering"
startup="lazy">
<lst name="defaults">
<bool name="clustering">true</bool>
<str name="clustering.engine">default</str>
<bool name="clustering.results">true</bool>
<!-- The title field -->
<str name="carrot.title">name</str>
<str name="carrot.url">id</str>
<!-- The field to cluster on -->
<str name="carrot.snippet">features</str>
<!-- produce summaries -->
<bool name="carrot.produceSummary">true</bool>
<!-- the maximum number of labels per cluster -->
<!-- <int name="carrot.numDescriptions">5</int> -->
<!-- produce sub clusters -->
<bool name="carrot.outputSubClusters">false</bool>
<str name="defType">edismax</str>
<str name="qf">
text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4
</str>
<str name="q.alt">*:*</str>
<str name="rows">10</str>
<str name="fl">*,score</str>
</lst>
<arr name="last-components">
<str>clustering</str>
</arr>
</requestHandler>
<!--
Terms Component http://wiki.apache.org/solr/TermsComponent A component to return terms and document frequency of those terms
-->
<searchComponent class="solr.TermsComponent" name="terms"/>
<!--
A request handler for demonstrating the terms component
-->
<requestHandler class="solr.SearchHandler" name="/terms" startup="lazy">
<lst name="defaults">
<bool name="terms">true</bool>
</lst>
<arr name="components">
<str>terms</str>
</arr>
</requestHandler>
<!--
Query Elevation Component http://wiki.apache.org/solr/QueryElevationComponent a search component that enables you to configure the top results for a given query regardless of the normal lucene scoring.
-->
<!--
<searchComponent name="elevator" class="solr.QueryElevationComponent" > <str name="queryFieldType">string</str> <str name="config-file">elevate.xml</str> </searchComponent>
-->
<!--
A request handler for demonstrating the elevator component
-->
<!--
<requestHandler class="solr.SearchHandler" name="/elevate" startup="lazy">
<lst name="defaults">
<str name="echoParams">explicit</str>
</lst>
<arr name="last-components">
<str>elevator</str>
</arr>
</requestHandler>
-->
<!--
Highlighting Component http://wiki.apache.org/solr/HighlightingParameters
-->
<searchComponent class="solr.HighlightComponent" name="highlight">
<highlighting>
<!-- Configure the standard fragmenter -->
<!--
This could most likely be commented out in the "default" case
-->
<fragmenter class="solr.highlight.GapFragmenter" default="true" name="gap">
<lst name="defaults">
<int name="hl.fragsize">100</int>
</lst>
</fragmenter>
<!--
A regular-expression-based fragmenter (for sentence extraction)
-->
<fragmenter class="solr.highlight.RegexFragmenter" name="regex">
<lst name="defaults">
<!--
slightly smaller fragsizes work better because of slop
-->
<int name="hl.fragsize">70</int>
<!-- allow 50% slop on fragment sizes -->
<float name="hl.regex.slop">0.5</float>
<!-- a basic sentence pattern -->
<str name="hl.regex.pattern">[-\w ,/\n\"']{20,200}</str>
</lst>
</fragmenter>
<!-- Configure the standard formatter -->
<formatter class="solr.highlight.HtmlFormatter" default="true" name="html">
<lst name="defaults">
<str name="hl.simple.pre">
<![CDATA[ ]]>
</str>
<str name="hl.simple.post">
<![CDATA[ ]]>
</str>
</lst>
</formatter>
<!-- Configure the standard encoder -->
<encoder class="solr.highlight.HtmlEncoder" name="html"/>
<!-- Configure the standard fragListBuilder -->
<fragListBuilder class="solr.highlight.SimpleFragListBuilder" default="true" name="simple"/>
<!-- Configure the single fragListBuilder -->
<fragListBuilder class="solr.highlight.SingleFragListBuilder" name="single"/>
<!-- default tag FragmentsBuilder -->
<fragmentsBuilder class="solr.highlight.ScoreOrderFragmentsBuilder" default="true" name="default">
<!--
<lst name="defaults"> <str name="hl.multiValuedSeparatorChar">/</str> </lst>
-->
</fragmentsBuilder>
<!-- multi-colored tag FragmentsBuilder -->
<fragmentsBuilder class="solr.highlight.ScoreOrderFragmentsBuilder" name="colored">
<lst name="defaults">
<str name="hl.tag.pre">
<![CDATA[
<b style="background:yellow">,<b style="background:lawgreen">, <b style="background:aquamarine">,<b style="background:magenta">, <b style="background:palegreen">,<b style="background:coral">, <b style="background:wheat">,<b style="background:khaki">, <b style="background:lime">,<b style="background:deepskyblue">
]]>
</str>
<str name="hl.tag.post">
<![CDATA[ </b> ]]>
</str>
</lst>
</fragmentsBuilder>
<boundaryScanner class="solr.highlight.SimpleBoundaryScanner" default="true" name="default">
<lst name="defaults">
<str name="hl.bs.maxScan">10</str>
<str name="hl.bs.chars">.,!?</str>
</lst>
</boundaryScanner>
<boundaryScanner class="solr.highlight.BreakIteratorBoundaryScanner" name="breakIterator">
<lst name="defaults">
<!--
type should be one of CHARACTER, WORD(default), LINE and SENTENCE
-->
<str name="hl.bs.type">WORD</str>
<!--
language and country are used when constructing Locale object.
-->
<!--
And the Locale object will be used when getting instance of BreakIterator
-->
<str name="hl.bs.language">en</str>
<str name="hl.bs.country">US</str>
</lst>
</boundaryScanner>
</highlighting>
</searchComponent>
<!--
XSLT response writer transforms the XML output by any xslt file found in Solr's conf/xslt directory. Changes to xslt files are checked for every xsltCacheLifetimeSeconds.
-->
<queryResponseWriter class="solr.XSLTResponseWriter" name="xslt">
<int name="xsltCacheLifetimeSeconds">5</int>
</queryResponseWriter>
<!-- Legacy config for the admin interface -->
<admin>
<defaultQuery>*:*</defaultQuery>
</admin>
</config>Posted 5 months ago # -
Jack, here are some log details from starting DSE2.2:
INFO [Main Thread] 2012-11-28 22:37:42,741 CLibrary.java (line 66) JNA link failure, one or more native method will be unavailable.
INFO [Main Thread] 2012-11-28 22:37:42,741 CacheService.java (line 96) Initializing key cache with capacity of 51 MBs.
INFO [Main Thread] 2012-11-28 22:37:42,757 CacheService.java (line 107) Scheduling key cache save to each 14400 seconds (going to save all keys).
INFO [Main Thread] 2012-11-28 22:37:42,757 CacheService.java (line 121) Initializing row cache with capacity of 0 MBs and provider org.apache.cassandra.cache.ConcurrentLinkedHashCacheProvider
INFO [Main Thread] 2012-11-28 22:37:42,757 CacheService.java (line 133) Scheduling row cache save to each 0 seconds (going to save all keys).
INFO [SSTableBatchOpen:1] 2012-11-28 22:37:42,820 SSTableReader.java (line 169) Opening \webdev\dse\var\cassandra\data\system\schema_columnfamilies\system-schema_columnfamilies-he-21 (6078 bytes)
INFO [SSTableBatchOpen:1] 2012-11-28 22:37:42,882 SSTableReader.java (line 169) Opening \webdev\dse\var\cassandra\data\system\schema_columns\system-schema_columns-he-14 (11813 bytes)
INFO [SSTableBatchOpen:2] 2012-11-28 22:37:42,882 SSTableReader.java (line 169) Opening \webdev\dse\var\cassandra\data\system\schema_columns\system-schema_columns-he-15 (11929 bytes)
INFO [SSTableBatchOpen:3] 2012-11-28 22:37:42,882 SSTableReader.java (line 169) Opening \webdev\dse\var\cassandra\data\system\schema_columns\system-schema_columns-he-13 (232897 bytes)
INFO [SSTableBatchOpen:1] 2012-11-28 22:37:42,882 SSTableReader.java (line 169) Opening \webdev\dse\var\cassandra\data\system\Versions\system-Versions-he-2 (247 bytes)
INFO [SSTableBatchOpen:2] 2012-11-28 22:37:42,898 SSTableReader.java (line 169) Opening \webdev\dse\var\cassandra\data\system\Versions\system-Versions-he-1 (247 bytes)
INFO [SSTableBatchOpen:1] 2012-11-28 22:37:42,898 SSTableReader.java (line 169) Opening \webdev\dse\var\cassandra\data\system\IndexInfo\system-IndexInfo-he-106 (5712 bytes)
INFO [SSTableBatchOpen:2] 2012-11-28 22:37:42,898 SSTableReader.java (line 169) Opening \webdev\dse\var\cassandra\data\system\IndexInfo\system-IndexInfo-he-107 (150 bytes)
INFO [SSTableBatchOpen:3] 2012-11-28 22:37:42,898 SSTableReader.java (line 169) Opening \webdev\dse\var\cassandra\data\system\IndexInfo\system-IndexInfo-he-105 (145 bytes)
INFO [SSTableBatchOpen:1] 2012-11-28 22:37:42,898 SSTableReader.java (line 169) Opening \webdev\dse\var\cassandra\data\system\schema_keyspaces\system-schema_keyspaces-he-1 (239 bytes)
INFO [SSTableBatchOpen:1] 2012-11-28 22:37:42,898 SSTableReader.java (line 169) Opening \webdev\dse\var\cassandra\data\system\LocationInfo\system-LocationInfo-he-5 (349 bytes)
INFO [SSTableBatchOpen:1] 2012-11-28 22:37:43,241 SSTableReader.java (line 169) Opening \webdev\dse\var\cassandra\data\test00071_2_1354170047006\test-000071_2_1354170047006-he-2 (392 bytes)
INFO [Main Thread] 2012-11-28 22:37:43,273 SolrSecondaryIndex.java (line 610) start TTL scheduler test.000071_2_1354170047006
INFO [Main Thread] 2012-11-28 22:37:43,273 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=646973706c61796e616d655f66757a7a795f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354170047006_displayname_fuzzy_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,273 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=6d617472697874797065, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354170047006_matrixtype_index'}
INFO [Main Thread] 2012-11-28 22:37:43,273 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=706172656e746964, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354170047006_parentid_index'}
INFO [Main Thread] 2012-11-28 22:37:43,273 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f726564657461696c65646465736372697074696f6e5f737461727473776974685f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354170047006_storedetaileddescription_startswith_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,273 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f726564657461696c65646465736372697074696f6e5f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354170047006_storedetaileddescription_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,273 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f72656465736372697074696f6e5f65786163745f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354170047006_storedescription_exact_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,273 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f726564657461696c65646465736372697074696f6e5f65786163745f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354170047006_storedetaileddescription_exact_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,273 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=5f646f63426f6f7374, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354170047006__docBoost_index'}
INFO [Main Thread] 2012-11-28 22:37:43,273 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=646973706c61796e616d655f737461727473776974685f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354170047006_displayname_startswith_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=5f74746c5f657870697265, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354170047006__ttl_expire_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=67726f75706964, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354170047006_groupid_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f72656465736372697074696f6e5f737461727473776974685f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354170047006_storedescription_startswith_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=5f64796e466c64, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354170047006__dynFld_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=696e7465726e616c6964, validator=org.apache.cassandra.db.marshal.Int32Type, index_type=CUSTOM, index_name='test_000071_2_1354170047006_internalid_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f72656465736372697074696f6e5f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354170047006_storedescription_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f726564657461696c65646465736372697074696f6e5f66757a7a795f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354170047006_storedetaileddescription_fuzzy_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=736f6c725f7175657279, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354170047006_solr_query_index'}
INFO [pool-1-thread-1] 2012-11-28 22:37:43,288 CoreContainer.java (line 92) New CoreContainer 11176333
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f72656465736372697074696f6e5f66757a7a795f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354170047006_storedescription_fuzzy_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=646973706c61796e616d655f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354170047006_displayname_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SolrSecondaryIndex.java (line 610) start TTL scheduler test.000071_3_1354149868423
INFO [pool-1-thread-2] 2012-11-28 22:37:43,288 CoreContainer.java (line 92) New CoreContainer 14192807
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=646973706c61796e616d655f66757a7a795f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354149868423_displayname_fuzzy_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=6d617472697874797065, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354149868423_matrixtype_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=706172656e746964, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354149868423_parentid_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f726564657461696c65646465736372697074696f6e5f737461727473776974685f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354149868423_storedetaileddescription_startswith_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f726564657461696c65646465736372697074696f6e5f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354149868423_storedetaileddescription_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f72656465736372697074696f6e5f65786163745f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354149868423_storedescription_exact_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f726564657461696c65646465736372697074696f6e5f65786163745f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354149868423_storedetaileddescription_exact_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=5f646f63426f6f7374, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354149868423__docBoost_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=646973706c61796e616d655f737461727473776974685f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354149868423_displayname_startswith_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=5f74746c5f657870697265, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354149868423__ttl_expire_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=67726f75706964, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354149868423_groupid_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f72656465736372697074696f6e5f737461727473776974685f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354149868423_storedescription_startswith_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=5f64796e466c64, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354149868423__dynFld_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=696e7465726e616c6964, validator=org.apache.cassandra.db.marshal.Int32Type, index_type=CUSTOM, index_name='test_000071_3_1354149868423_internalid_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f72656465736372697074696f6e5f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354149868423_storedescription_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f726564657461696c65646465736372697074696f6e5f66757a7a795f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354149868423_storedetaileddescription_fuzzy_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=736f6c725f7175657279, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354149868423_solr_query_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f72656465736372697074696f6e5f66757a7a795f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354149868423_storedescription_fuzzy_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=646973706c61796e616d655f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354149868423_displayname_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SolrSecondaryIndex.java (line 610) start TTL scheduler test.000071_2_1354149688526
INFO [pool-1-thread-3] 2012-11-28 22:37:43,288 CoreContainer.java (line 92) New CoreContainer 14393508
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=646973706c61796e616d655f66757a7a795f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354149688526_displayname_fuzzy_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=6d617472697874797065, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354149688526_matrixtype_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=706172656e746964, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354149688526_parentid_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f726564657461696c65646465736372697074696f6e5f737461727473776974685f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354149688526_storedetaileddescription_startswith_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,288 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f726564657461696c65646465736372697074696f6e5f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354149688526_storedetaileddescription_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f72656465736372697074696f6e5f65786163745f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354149688526_storedescription_exact_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f726564657461696c65646465736372697074696f6e5f65786163745f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354149688526_storedetaileddescription_exact_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=5f646f63426f6f7374, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354149688526__docBoost_index'}
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=646973706c61796e616d655f737461727473776974685f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354149688526_displayname_startswith_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=5f74746c5f657870697265, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354149688526__ttl_expire_index'}
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=67726f75706964, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354149688526_groupid_index'}
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f72656465736372697074696f6e5f737461727473776974685f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354149688526_storedescription_startswith_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=5f64796e466c64, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354149688526__dynFld_index'}
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=696e7465726e616c6964, validator=org.apache.cassandra.db.marshal.Int32Type, index_type=CUSTOM, index_name='test_000071_2_1354149688526_internalid_index'}
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f72656465736372697074696f6e5f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354149688526_storedescription_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f726564657461696c65646465736372697074696f6e5f66757a7a795f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354149688526_storedetaileddescription_fuzzy_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=736f6c725f7175657279, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354149688526_solr_query_index'}
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f72656465736372697074696f6e5f66757a7a795f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354149688526_storedescription_fuzzy_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=646973706c61796e616d655f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_2_1354149688526_displayname_en_US_text_index'}
INFO [SSTableBatchOpen:1] 2012-11-28 22:37:43,304 SSTableReader.java (line 169) Opening \webdev\dse\var\cassandra\data\test00071_3_1354170047021\test-000071_3_1354170047021-he-2 (334 bytes)
INFO [Main Thread] 2012-11-28 22:37:43,304 SolrSecondaryIndex.java (line 610) start TTL scheduler test.000071_3_1354170047021
INFO [pool-1-thread-4] 2012-11-28 22:37:43,304 CoreContainer.java (line 92) New CoreContainer 19625606
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=646973706c61796e616d655f66757a7a795f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354170047021_displayname_fuzzy_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=6d617472697874797065, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354170047021_matrixtype_index'}
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=706172656e746964, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354170047021_parentid_index'}
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f726564657461696c65646465736372697074696f6e5f737461727473776974685f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354170047021_storedetaileddescription_startswith_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f726564657461696c65646465736372697074696f6e5f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354170047021_storedetaileddescription_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f72656465736372697074696f6e5f65786163745f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354170047021_storedescription_exact_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f726564657461696c65646465736372697074696f6e5f65786163745f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354170047021_storedetaileddescription_exact_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=5f646f63426f6f7374, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354170047021__docBoost_index'}
INFO [pool-1-thread-1] 2012-11-28 22:37:43,304 SolrResourceLoader.java (line 617) JNDI not configured for solr (NoInitialContextEx)
INFO [pool-1-thread-3] 2012-11-28 22:37:43,304 SolrResourceLoader.java (line 617) JNDI not configured for solr (NoInitialContextEx)
INFO [pool-1-thread-2] 2012-11-28 22:37:43,304 SolrResourceLoader.java (line 617) JNDI not configured for solr (NoInitialContextEx)
INFO [pool-1-thread-3] 2012-11-28 22:37:43,304 SolrResourceLoader.java (line 636) solr home defaulted to 'solr/' (could not find system property or JNDI)
INFO [pool-1-thread-2] 2012-11-28 22:37:43,304 SolrResourceLoader.java (line 636) solr home defaulted to 'solr/' (could not find system property or JNDI)
INFO [pool-1-thread-1] 2012-11-28 22:37:43,304 SolrResourceLoader.java (line 636) solr home defaulted to 'solr/' (could not find system property or JNDI)
INFO [pool-1-thread-4] 2012-11-28 22:37:43,304 SolrResourceLoader.java (line 617) JNDI not configured for solr (NoInitialContextEx)
INFO [pool-1-thread-1] 2012-11-28 22:37:43,304 SolrResourceLoader.java (line 101) Solr home set to 'solr/'
INFO [pool-1-thread-4] 2012-11-28 22:37:43,304 SolrResourceLoader.java (line 636) solr home defaulted to 'solr/' (could not find system property or JNDI)
INFO [pool-1-thread-2] 2012-11-28 22:37:43,304 SolrResourceLoader.java (line 101) Solr home set to 'solr/'
INFO [pool-1-thread-4] 2012-11-28 22:37:43,304 SolrResourceLoader.java (line 101) Solr home set to 'solr/'
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=646973706c61796e616d655f737461727473776974685f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354170047021_displayname_startswith_en_US_text_index'}
INFO [pool-1-thread-3] 2012-11-28 22:37:43,304 SolrResourceLoader.java (line 101) Solr home set to 'solr/'
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=5f74746c5f657870697265, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354170047021__ttl_expire_index'}
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=67726f75706964, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354170047021_groupid_index'}
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f72656465736372697074696f6e5f737461727473776974685f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354170047021_storedescription_startswith_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=5f64796e466c64, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354170047021__dynFld_index'}
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=696e7465726e616c6964, validator=org.apache.cassandra.db.marshal.Int32Type, index_type=CUSTOM, index_name='test_000071_3_1354170047021_internalid_index'}
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f72656465736372697074696f6e5f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354170047021_storedescription_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f726564657461696c65646465736372697074696f6e5f66757a7a795f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354170047021_storedetaileddescription_fuzzy_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=736f6c725f7175657279, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354170047021_solr_query_index'}
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=73746f72656465736372697074696f6e5f66757a7a795f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354170047021_storedescription_fuzzy_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,304 SecondaryIndexManager.java (line 239) Creating new index : ColumnDefinition{name=646973706c61796e616d655f656e5f55535f74657874, validator=org.apache.cassandra.db.marshal.UTF8Type, index_type=CUSTOM, index_name='test_000071_3_1354170047021_displayname_en_US_text_index'}
INFO [Main Thread] 2012-11-28 22:37:43,304 AbstractCassandraDaemon.java (line 216) completed pre-loading (8 keys) key cache.
INFO [pool-1-thread-3] 2012-11-28 22:37:43,351 CassandraCoreContainer.java (line 777) Found CF: 000071_2_1354170047006
INFO [pool-1-thread-3] 2012-11-28 22:37:43,351 CassandraCoreContainer.java (line 777) Found CF: 000071_3_1354149868423
INFO [pool-1-thread-3] 2012-11-28 22:37:43,351 CassandraCoreContainer.java (line 777) Found CF: 000071_3_1354170047021
INFO [pool-1-thread-4] 2012-11-28 22:37:43,351 CassandraCoreContainer.java (line 777) Found CF: 000071_2_1354170047006
INFO [pool-1-thread-2] 2012-11-28 22:37:43,351 CassandraCoreContainer.java (line 777) Found CF: 000071_2_1354170047006
INFO [pool-1-thread-4] 2012-11-28 22:37:43,351 CassandraCoreContainer.java (line 777) Found CF: 000071_3_1354149868423
INFO [pool-1-thread-2] 2012-11-28 22:37:43,351 CassandraCoreContainer.java (line 777) Found CF: 000071_2_1354149688526
INFO [pool-1-thread-4] 2012-11-28 22:37:43,351 CassandraCoreContainer.java (line 777) Found CF: 000071_2_1354149688526
INFO [pool-1-thread-2] 2012-11-28 22:37:43,351 CassandraCoreContainer.java (line 777) Found CF: 000071_3_1354170047021
INFO [pool-1-thread-1] 2012-11-28 22:37:43,351 CassandraCoreContainer.java (line 777) Found CF: 000071_3_1354149868423
INFO [pool-1-thread-1] 2012-11-28 22:37:43,351 CassandraCoreContainer.java (line 777) Found CF: 000071_2_1354149688526
INFO [pool-1-thread-1] 2012-11-28 22:37:43,351 CassandraCoreContainer.java (line 777) Found CF: 000071_3_1354170047021
INFO [Main Thread] 2012-11-28 22:37:43,445 CommitLog.java (line 129) Replaying \webdev\dse\var\cassandra\commitlog\CommitLog-1354169640454.log, \webdev\dse\var\cassandra\commitlog\CommitLog-1354169640455.log, \webdev\dse\var\cassandra\commitlog\CommitLog-1354169640456.log
INFO [pool-1-thread-4] 2012-11-28 22:37:43,445 SolrConfig.java (line 426) Adding specified lib dirs to ClassLoader
INFO [pool-1-thread-2] 2012-11-28 22:37:43,445 SolrConfig.java (line 426) Adding specified lib dirs to ClassLoader
INFO [pool-1-thread-1] 2012-11-28 22:37:43,445 SolrConfig.java (line 426) Adding specified lib dirs to ClassLoader
INFO [pool-1-thread-3] 2012-11-28 22:37:43,445 SolrConfig.java (line 426) Adding specified lib dirs to ClassLoader
INFO [Main Thread] 2012-11-28 22:37:43,491 CommitLogReplayer.java (line 119) Replaying \webdev\dse\var\cassandra\commitlog\CommitLog-1354169640454.log
INFO [Main Thread] 2012-11-28 22:37:43,491 CommitLogReplayer.java (line 272) Finished reading \webdev\dse\var\cassandra\commitlog\CommitLog-1354169640454.log
INFO [Main Thread] 2012-11-28 22:37:43,491 CommitLogReplayer.java (line 119) Replaying \webdev\dse\var\cassandra\commitlog\CommitLog-1354169640455.log
INFO [Main Thread] 2012-11-28 22:37:43,491 CommitLogReplayer.java (line 272) Finished reading \webdev\dse\var\cassandra\commitlog\CommitLog-1354169640455.log
INFO [Main Thread] 2012-11-28 22:37:43,491 CommitLogReplayer.java (line 119) Replaying \webdev\dse\var\cassandra\commitlog\CommitLog-1354169640456.log
INFO [Main Thread] 2012-11-28 22:37:43,491 CommitLogReplayer.java (line 272) Finished reading \webdev\dse\var\cassandra\commitlog\CommitLog-1354169640456.log
INFO [Main Thread] 2012-11-28 22:37:43,491 CommitLog.java (line 131) Log replay complete, 0 replayed mutations
INFO [pool-1-thread-4] 2012-11-28 22:37:43,507 SolrConfig.java (line 136) Using Lucene MatchVersion: LUCENE_40
INFO [pool-1-thread-1] 2012-11-28 22:37:43,507 SolrConfig.java (line 136) Using Lucene MatchVersion: LUCENE_40
INFO [pool-1-thread-3] 2012-11-28 22:37:43,507 SolrConfig.java (line 136) Using Lucene MatchVersion: LUCENE_40
INFO [pool-1-thread-2] 2012-11-28 22:37:43,507 SolrConfig.java (line 136) Using Lucene MatchVersion: LUCENE_40
INFO [Main Thread] 2012-11-28 22:37:43,523 StorageService.java (line 423) Cassandra version: 1.1.5
INFO [Main Thread] 2012-11-28 22:37:43,523 StorageService.java (line 424) Thrift API version: 19.32.0
INFO [Main Thread] 2012-11-28 22:37:43,523 StorageService.java (line 425) CQL supported versions: 2.0.0,3.0.0-beta1 (default: 2.0.0)
INFO [Main Thread] 2012-11-28 22:37:43,570 StorageService.java (line 455) Loading persisted ring state
INFO [Main Thread] 2012-11-28 22:37:43,570 StorageService.java (line 536) Starting up server gossip
INFO [pool-1-thread-4] 2012-11-28 22:37:43,570 SolrConfig.java (line 210) Loaded SolrConfig: solrconfig.xml
INFO [pool-1-thread-3] 2012-11-28 22:37:43,570 SolrConfig.java (line 210) Loaded SolrConfig: solrconfig.xml
INFO [pool-1-thread-1] 2012-11-28 22:37:43,570 SolrConfig.java (line 210) Loaded SolrConfig: solrconfig.xml
INFO [pool-1-thread-2] 2012-11-28 22:37:43,570 SolrConfig.java (line 210) Loaded SolrConfig: solrconfig.xml
INFO [Main Thread] 2012-11-28 22:37:43,585 ColumnFamilyStore.java (line 659) Enqueuing flush of Memtable-LocationInfo@14085173(29/36 serialized/live bytes, 1 ops)
INFO [FlushWriter:1] 2012-11-28 22:37:43,585 Memtable.java (line 264) Writing Memtable-LocationInfo@14085173(29/36 serialized/live bytes, 1 ops)
INFO [pool-1-thread-4] 2012-11-28 22:37:43,585 CassandraCoreContainer.java (line 777) Found CF: 000071_2_1354170047006
INFO [pool-1-thread-4] 2012-11-28 22:37:43,585 CassandraCoreContainer.java (line 777) Found CF: 000071_3_1354149868423
INFO [pool-1-thread-4] 2012-11-28 22:37:43,585 CassandraCoreContainer.java (line 777) Found CF: 000071_2_1354149688526
INFO [pool-1-thread-3] 2012-11-28 22:37:43,585 CassandraCoreContainer.java (line 777) Found CF: 000071_2_1354170047006
INFO [pool-1-thread-3] 2012-11-28 22:37:43,585 CassandraCoreContainer.java (line 777) Found CF: 000071_3_1354149868423
INFO [pool-1-thread-3] 2012-11-28 22:37:43,585 CassandraCoreContainer.java (line 777) Found CF: 000071_3_1354170047021
INFO [pool-1-thread-1] 2012-11-28 22:37:43,585 CassandraCoreContainer.java (line 777) Found CF: 000071_3_1354149868423
INFO [pool-1-thread-1] 2012-11-28 22:37:43,585 CassandraCoreContainer.java (line 777) Found CF: 000071_2_1354149688526
INFO [pool-1-thread-1] 2012-11-28 22:37:43,585 CassandraCoreContainer.java (line 777) Found CF: 000071_3_1354170047021
INFO [pool-1-thread-2] 2012-11-28 22:37:43,585 CassandraCoreContainer.java (line 777) Found CF: 000071_2_1354170047006
INFO [pool-1-thread-2] 2012-11-28 22:37:43,585 CassandraCoreContainer.java (line 777) Found CF: 000071_2_1354149688526
INFO [pool-1-thread-2] 2012-11-28 22:37:43,585 CassandraCoreContainer.java (line 777) Found CF: 000071_3_1354170047021
INFO [pool-1-thread-3] 2012-11-28 22:37:43,601 IndexSchema.java (line 340) Reading Solr Schema
INFO [pool-1-thread-4] 2012-11-28 22:37:43,601 IndexSchema.java (line 340) Reading Solr Schema
INFO [pool-1-thread-2] 2012-11-28 22:37:43,601 IndexSchema.java (line 340) Reading Solr Schema
INFO [pool-1-thread-1] 2012-11-28 22:37:43,601 IndexSchema.java (line 340) Reading Solr Schema
INFO [pool-1-thread-2] 2012-11-28 22:37:43,601 IndexSchema.java (line 354) Schema name=default
INFO [pool-1-thread-1] 2012-11-28 22:37:43,601 IndexSchema.java (line 354) Schema name=default
INFO [pool-1-thread-4] 2012-11-28 22:37:43,616 IndexSchema.java (line 354) Schema name=default
INFO [pool-1-thread-3] 2012-11-28 22:37:43,616 IndexSchema.java (line 354) Schema name=default
INFO [pool-1-thread-3] 2012-11-28 22:37:43,632 AbstractPluginLoader.java (line 142) created string: org.apache.solr.schema.StrField
INFO [pool-1-thread-1] 2012-11-28 22:37:43,632 AbstractPluginLoader.java (line 142) created string: org.apache.solr.schema.StrField
INFO [pool-1-thread-2] 2012-11-28 22:37:43,632 AbstractPluginLoader.java (line 142) created string: org.apache.solr.schema.StrField
INFO [pool-1-thread-4] 2012-11-28 22:37:43,632 AbstractPluginLoader.java (line 142) created string: org.apache.solr.schema.StrField
INFO [pool-1-thread-4] 2012-11-28 22:37:43,632 AbstractPluginLoader.java (line 142) created int: org.apache.solr.schema.IntField
INFO [pool-1-thread-1] 2012-11-28 22:37:43,632 AbstractPluginLoader.java (line 142) created int: org.apache.solr.schema.IntField
INFO [pool-1-thread-3] 2012-11-28 22:37:43,632 AbstractPluginLoader.java (line 142) created int: org.apache.solr.schema.IntField
INFO [pool-1-thread-2] 2012-11-28 22:37:43,632 AbstractPluginLoader.java (line 142) created int: org.apache.solr.schema.IntField
INFO [pool-1-thread-4] 2012-11-28 22:37:43,648 AbstractPluginLoader.java (line 142) created tint: org.apache.solr.schema.TrieIntField
INFO [pool-1-thread-2] 2012-11-28 22:37:43,648 AbstractPluginLoader.java (line 142) created tint: org.apache.solr.schema.TrieIntField
INFO [pool-1-thread-1] 2012-11-28 22:37:43,648 AbstractPluginLoader.java (line 142) created tint: org.apache.solr.schema.TrieIntField
INFO [pool-1-thread-3] 2012-11-28 22:37:43,648 AbstractPluginLoader.java (line 142) created tint: org.apache.solr.schema.TrieIntField
INFO [pool-1-thread-4] 2012-11-28 22:37:43,648 AbstractPluginLoader.java (line 142) created float: org.apache.solr.schema.FloatField
INFO [pool-1-thread-1] 2012-11-28 22:37:43,648 AbstractPluginLoader.java (line 142) created float: org.apache.solr.schema.FloatField
INFO [pool-1-thread-3] 2012-11-28 22:37:43,648 AbstractPluginLoader.java (line 142) created float: org.apache.solr.schema.FloatField
INFO [pool-1-thread-2] 2012-11-28 22:37:43,648 AbstractPluginLoader.java (line 142) created float: org.apache.solr.schema.FloatField
INFO [pool-1-thread-2] 2012-11-28 22:37:43,679 AbstractPluginLoader.java (line 142) created tfloat: org.apache.solr.schema.TrieFloatField
INFO [pool-1-thread-3] 2012-11-28 22:37:43,648 AbstractPluginLoader.java (line 142) created tfloat: org.apache.solr.schema.TrieFloatField
INFO [pool-1-thread-4] 2012-11-28 22:37:43,648 AbstractPluginLoader.java (line 142) created tfloat: org.apache.solr.schema.TrieFloatField
INFO [pool-1-thread-1] 2012-11-28 22:37:43,648 AbstractPluginLoader.java (line 142) created tfloat: org.apache.solr.schema.TrieFloatField
INFO [pool-1-thread-3] 2012-11-28 22:37:43,679 AbstractPluginLoader.java (line 142) created boolean: org.apache.solr.schema.BoolField
INFO [pool-1-thread-1] 2012-11-28 22:37:43,679 AbstractPluginLoader.java (line 142) created boolean: org.apache.solr.schema.BoolField
INFO [pool-1-thread-4] 2012-11-28 22:37:43,679 AbstractPluginLoader.java (line 142) created boolean: org.apache.solr.schema.BoolField
INFO [pool-1-thread-2] 2012-11-28 22:37:43,679 AbstractPluginLoader.java (line 142) created boolean: org.apache.solr.schema.BoolField
INFO [pool-1-thread-3] 2012-11-28 22:37:43,679 AbstractPluginLoader.java (line 142) created date: org.apache.solr.schema.DateField
INFO [pool-1-thread-4] 2012-11-28 22:37:43,679 AbstractPluginLoader.java (line 142) created date: org.apache.solr.schema.DateField
INFO [pool-1-thread-1] 2012-11-28 22:37:43,679 AbstractPluginLoader.java (line 142) created date: org.apache.solr.schema.DateField
INFO [pool-1-thread-2] 2012-11-28 22:37:43,679 AbstractPluginLoader.java (line 142) created date: org.apache.solr.schema.DateField
INFO [pool-1-thread-3] 2012-11-28 22:37:43,695 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StandardTokenizerFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,695 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StandardTokenizerFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,695 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StandardTokenizerFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,695 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StandardTokenizerFactory
INFO [FlushWriter:1] 2012-11-28 22:37:43,695 Memtable.java (line 305) Completed flushing \webdev\dse\var\cassandra\data\system\LocationInfo\system-LocationInfo-he-6-Data.db (80 bytes) for commitlog position ReplayPosition(segmentId=1354171063430, position=363)
INFO [pool-1-thread-1] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StopFilterFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StopFilterFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StopFilterFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StopFilterFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.LowerCaseFilterFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.LowerCaseFilterFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.LowerCaseFilterFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.LowerCaseFilterFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StandardTokenizerFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StandardTokenizerFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StandardTokenizerFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StandardTokenizerFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StopFilterFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.LowerCaseFilterFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StopFilterFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StopFilterFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.LowerCaseFilterFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StopFilterFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.LowerCaseFilterFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.LowerCaseFilterFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created text_general: org.apache.solr.schema.TextField
INFO [pool-1-thread-2] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created text_general: org.apache.solr.schema.TextField
INFO [pool-1-thread-4] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created text_general: org.apache.solr.schema.TextField
INFO [pool-1-thread-1] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created text_general: org.apache.solr.schema.TextField
INFO [pool-1-thread-2] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StandardTokenizerFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StandardTokenizerFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StandardTokenizerFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StandardTokenizerFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StopFilterFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StopFilterFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StopFilterFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StopFilterFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.ASCIIFoldingFilterFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.ASCIIFoldingFilterFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.ASCIIFoldingFilterFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.ASCIIFoldingFilterFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.WordDelimiterFilterFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.WordDelimiterFilterFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.WordDelimiterFilterFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.WordDelimiterFilterFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.LowerCaseFilterFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.LowerCaseFilterFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.LowerCaseFilterFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.LowerCaseFilterFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.PorterStemFilterFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.PorterStemFilterFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.PorterStemFilterFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.PorterStemFilterFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StandardTokenizerFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StandardTokenizerFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StandardTokenizerFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StandardTokenizerFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StopFilterFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.ASCIIFoldingFilterFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StopFilterFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.WordDelimiterFilterFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StopFilterFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.ASCIIFoldingFilterFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.ASCIIFoldingFilterFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.LowerCaseFilterFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StopFilterFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.WordDelimiterFilterFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.LowerCaseFilterFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.PorterStemFilterFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,710 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.WordDelimiterFilterFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.PorterStemFilterFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.ASCIIFoldingFilterFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.WordDelimiterFilterFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.LowerCaseFilterFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.LowerCaseFilterFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created en_text: org.apache.solr.schema.TextField
INFO [pool-1-thread-1] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.PorterStemFilterFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.PorterStemFilterFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created en_text: org.apache.solr.schema.TextField
INFO [pool-1-thread-1] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created en_text: org.apache.solr.schema.TextField
INFO [pool-1-thread-2] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created en_text: org.apache.solr.schema.TextField
INFO [pool-1-thread-4] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StandardTokenizerFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StandardTokenizerFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StopFilterFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.ASCIIFoldingFilterFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StandardTokenizerFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.LowerCaseFilterFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StopFilterFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.ASCIIFoldingFilterFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StandardTokenizerFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.LowerCaseFilterFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StopFilterFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.ASCIIFoldingFilterFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.LowerCaseFilterFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.TrimFilterFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StopFilterFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.TrimFilterFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.ASCIIFoldingFilterFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.LowerCaseFilterFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.TrimFilterFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.TrimFilterFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created fuzzy_en_text: org.apache.solr.schema.TextField
INFO [pool-1-thread-4] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created fuzzy_en_text: org.apache.solr.schema.TextField
INFO [pool-1-thread-1] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created fuzzy_en_text: org.apache.solr.schema.TextField
INFO [pool-1-thread-2] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created fuzzy_en_text: org.apache.solr.schema.TextField
INFO [pool-1-thread-4] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.KeywordTokenizerFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.KeywordTokenizerFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.KeywordTokenizerFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.KeywordTokenizerFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.ASCIIFoldingFilterFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.LowerCaseFilterFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.ASCIIFoldingFilterFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.ASCIIFoldingFilterFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.TrimFilterFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.LowerCaseFilterFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.LowerCaseFilterFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.ASCIIFoldingFilterFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.TrimFilterFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.TrimFilterFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.LowerCaseFilterFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.TrimFilterFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.PatternReplaceFilterFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.PatternReplaceFilterFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.PatternReplaceFilterFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.PatternReplaceFilterFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created exact_en_text: org.apache.solr.schema.TextField
INFO [pool-1-thread-1] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created exact_en_text: org.apache.solr.schema.TextField
INFO [pool-1-thread-4] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created exact_en_text: org.apache.solr.schema.TextField
INFO [pool-1-thread-2] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created exact_en_text: org.apache.solr.schema.TextField
INFO [pool-1-thread-3] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StandardTokenizerFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StandardTokenizerFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StandardTokenizerFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StandardTokenizerFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StopFilterFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StopFilterFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StopFilterFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.ASCIIFoldingFilterFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.ASCIIFoldingFilterFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.ASCIIFoldingFilterFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.StopFilterFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.WordDelimiterFilterFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.WordDelimiterFilterFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.WordDelimiterFilterFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.ASCIIFoldingFilterFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.LowerCaseFilterFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.LowerCaseFilterFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.PatternReplaceFilterFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.LowerCaseFilterFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.WordDelimiterFilterFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.PatternReplaceFilterFactory
INFO [pool-1-thread-1] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.PatternReplaceFilterFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.PatternReplaceFilterFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.LowerCaseFilterFactory
INFO [pool-1-thread-3] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.PatternReplaceFilterFactory
INFO [pool-1-thread-2] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.PatternReplaceFilterFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) created : org.apache.solr.analysis.PatternReplaceFilterFactory
INFO [pool-1-thread-4] 2012-11-28 22:37:43,726 AbstractPluginLoader.java (line 142) crePosted 5 months ago # -
INFO [pool-1-thread-5] 2012-11-28 22:38:04,258 AbstractPluginLoader.java (line 142) created startswith_en_text: org.apache.solr.schema.TextField
WARN [pool-1-thread-5] 2012-11-28 22:38:04,258 IndexSchema.java (line 472) no default search field specified in schema.
INFO [pool-1-thread-5] 2012-11-28 22:38:04,258 IndexSchema.java (line 507) unique key field: id
INFO [pool-1-thread-5] 2012-11-28 22:38:04,258 SolrCore.java (line 539) [test.000071_3_1354149868423] Opening new SolrCore at solr/, dataDir=/webdev/dse/var/cassandra/data\solr.data\test.000071_3_1354149868423\
INFO [pool-1-thread-5] 2012-11-28 22:38:04,258 JmxMonitoredMap.java (line 85) JMX monitoring is enabled. Adding Solr mbeans to JMX Server: com.sun.jmx.mbeanserver.JmxMBeanServer@13ba5e8
INFO [pool-1-thread-5] 2012-11-28 22:38:04,258 SolrCore.java (line 256) [test.000071_3_1354149868423] Added SolrEventListener for newSearcher: org.apache.solr.core.QuerySenderListener{queries=[]}
INFO [pool-1-thread-5] 2012-11-28 22:38:04,258 SolrCore.java (line 252) [test.000071_3_1354149868423] Added SolrEventListener for firstSearcher: org.apache.solr.core.QuerySenderListener{queries=[{q=static firstSearcher warming in solrconfig.xml}]}
INFO [pool-1-thread-5] 2012-11-28 22:38:04,258 XSLTResponseWriter.java (line 62) xsltCacheLifetimeSeconds=5
INFO [pool-1-thread-5] 2012-11-28 22:38:04,258 RequestHandlers.java (line 170) created search: solr.SearchHandler
INFO [pool-1-thread-5] 2012-11-28 22:38:04,258 RequestHandlers.java (line 170) created /update: solr.XmlUpdateRequestHandler
INFO [pool-1-thread-5] 2012-11-28 22:38:04,258 RequestHandlers.java (line 170) created /update/javabin: solr.BinaryUpdateRequestHandler
INFO [pool-1-thread-5] 2012-11-28 22:38:04,258 RequestHandlers.java (line 152) adding lazy requestHandler: solr.CSVRequestHandler
INFO [pool-1-thread-5] 2012-11-28 22:38:04,258 RequestHandlers.java (line 170) created /update/csv: solr.CSVRequestHandler
INFO [pool-1-thread-5] 2012-11-28 22:38:04,258 RequestHandlers.java (line 152) adding lazy requestHandler: solr.JsonUpdateRequestHandler
INFO [pool-1-thread-5] 2012-11-28 22:38:04,258 RequestHandlers.java (line 170) created /update/json: solr.JsonUpdateRequestHandler
INFO [pool-1-thread-5] 2012-11-28 22:38:04,258 RequestHandlers.java (line 152) adding lazy requestHandler: solr.extraction.ExtractingRequestHandler
INFO [pool-1-thread-5] 2012-11-28 22:38:04,258 RequestHandlers.java (line 170) created /update/extract: solr.extraction.ExtractingRequestHandler
INFO [pool-1-thread-5] 2012-11-28 22:38:04,258 RequestHandlers.java (line 152) adding lazy requestHandler: solr.XsltUpdateRequestHandler
INFO [pool-1-thread-5] 2012-11-28 22:38:04,258 RequestHandlers.java (line 170) created /update/xslt: solr.XsltUpdateRequestHandler
INFO [pool-1-thread-5] 2012-11-28 22:38:04,258 RequestHandlers.java (line 152) adding lazy requestHandler: solr.FieldAnalysisRequestHandler
INFO [pool-1-thread-5] 2012-11-28 22:38:04,258 RequestHandlers.java (line 170) created /analysis/field: solr.FieldAnalysisRequestHandler
INFO [pool-1-thread-5] 2012-11-28 22:38:04,258 RequestHandlers.java (line 152) adding lazy requestHandler: solr.DocumentAnalysisRequestHandler
INFO [pool-1-thread-5] 2012-11-28 22:38:04,273 RequestHandlers.java (line 170) created /analysis/document: solr.DocumentAnalysisRequestHandler
INFO [pool-1-thread-5] 2012-11-28 22:38:04,273 RequestHandlers.java (line 170) created /admin/: solr.admin.AdminHandlers
INFO [pool-1-thread-5] 2012-11-28 22:38:04,273 RequestHandlers.java (line 170) created /admin/ping: solr.PingRequestHandler
INFO [pool-1-thread-5] 2012-11-28 22:38:04,273 RequestHandlers.java (line 170) created /debug/dump: solr.DumpRequestHandler
INFO [pool-1-thread-5] 2012-11-28 22:38:04,273 RequestHandlers.java (line 152) adding lazy requestHandler: solr.SearchHandler
INFO [pool-1-thread-5] 2012-11-28 22:38:04,273 RequestHandlers.java (line 170) created /spell: solr.SearchHandler
INFO [pool-1-thread-5] 2012-11-28 22:38:04,273 RequestHandlers.java (line 152) adding lazy requestHandler: solr.SearchHandler
INFO [pool-1-thread-5] 2012-11-28 22:38:04,273 RequestHandlers.java (line 170) created tvrh: solr.SearchHandler
INFO [pool-1-thread-5] 2012-11-28 22:38:04,273 RequestHandlers.java (line 152) adding lazy requestHandler: solr.SearchHandler
INFO [pool-1-thread-5] 2012-11-28 22:38:04,273 RequestHandlers.java (line 170) created /terms: solr.SearchHandler
WARN [pool-1-thread-5] 2012-11-28 22:38:04,273 CachingDirectoryFactory.java (line 198) No lockType configured for org.apache.lucene.store.MMapDirectory@C:\webdev\dse\var\cassandra\data\solr.data\test.000071_3_1354149868423\index lockFactory=org.apache.lucene.store.NativeFSLockFactory@5878ea4 assuming 'simple'
INFO [pool-1-thread-5] 2012-11-28 22:38:04,273 SolrIndexSearcher.java (line 119) reader:CassandraDirectoryReader(segments_3:1354170345927) SolrAssertions.searcherReader:null
INFO [pool-1-thread-5] 2012-11-28 22:38:04,273 SolrIndexSearcher.java (line 128) Opening Searcher@5878e0b main
INFO [pool-1-thread-5] 2012-11-28 22:38:04,273 SolrCore.java (line 1412) [test.000071_3_1354149868423] Registered new searcher Searcher@5878e0b main
INFO [pool-1-thread-5] 2012-11-28 22:38:04,273 CommitTracker.java (line 79) Hard AutoCommit: if uncommited for 15000ms;
INFO [pool-1-thread-5] 2012-11-28 22:38:04,273 CommitTracker.java (line 79) Soft AutoCommit: disabled
INFO [pool-1-thread-5] 2012-11-28 22:38:04,273 CassandraDirectUpdateHandler2.java (line 90) Created new solr core: test.000071_3_1354149868423
INFO [pool-1-thread-5] 2012-11-28 22:38:04,273 SpellCheckComponent.java (line 589) Initializing spell checkers
WARN [pool-1-thread-5] 2012-11-28 22:38:04,273 SpellCheckComponent.java (line 638) No queryConverter defined, using default converter
INFO [pool-1-thread-5] 2012-11-28 22:38:04,273 SearchHandler.java (line 128) Adding component:com.datastax.bdp.cassandra.index.solr.CassandraQueryComponent@58ca0cb
INFO [pool-1-thread-5] 2012-11-28 22:38:04,273 SearchHandler.java (line 128) Adding component:org.apache.solr.handler.component.QueryComponent@58ca111
INFO [pool-1-thread-5] 2012-11-28 22:38:04,273 SearchHandler.java (line 128) Adding component:org.apache.solr.handler.component.FacetComponent@58b8dab
INFO [pool-1-thread-5] 2012-11-28 22:38:04,273 SearchHandler.java (line 128) Adding component:org.apache.solr.handler.component.MoreLikeThisComponent@58b902c
INFO [pool-1-thread-5] 2012-11-28 22:38:04,273 SearchHandler.java (line 128) Adding component:org.apache.solr.handler.component.HighlightComponent@58ca071
INFO [pool-1-thread-5] 2012-11-28 22:38:04,273 SearchHandler.java (line 128) Adding component:org.apache.solr.handler.component.StatsComponent@58b9309
INFO [pool-1-thread-5] 2012-11-28 22:38:04,273 SearchHandler.java (line 133) Adding debug component:org.apache.solr.handler.component.DebugComponent@58b9597
INFO [pool-35-thread-1] 2012-11-28 22:38:04,273 QuerySenderListener.java (line 43) QuerySenderListener sending requests to Searcher@5878e0b main
INFO [pool-35-thread-1] 2012-11-28 22:38:04,273 SolrCore.java (line 1470) [test.000071_3_1354149868423] webapp=null path=null params={event=firstSearcher&q=static+firstSearcher+warming+in+solrconfig.xml} hits=0 status=0 QTime=0
INFO [pool-35-thread-1] 2012-11-28 22:38:04,273 QuerySenderListener.java (line 83) QuerySenderListener done.
INFO [pool-35-thread-1] 2012-11-28 22:38:04,273 SpellCheckComponent.java (line 677) Loading spell index for spellchecker: default
INFO [pool-1-thread-5] 2012-11-28 22:38:04,273 CoreContainer.java (line 533) registering core: test.000071_3_1354149868423
INFO [pool-1-thread-5] 2012-11-28 22:38:04,273 PluginManager.java (line 154) Plugin activated: com.datastax.bdp.plugin.SolrCorePlugin
ERROR [OptionalTasks:1] 2012-11-28 22:38:04,836 CassandraDirectUpdateHandler2.java (line 771) org.apache.lucene.store.LockObtainFailedException: Lock obtain timed out: SimpleFSLock@\webdev\dse\var\cassandra\data\solr.data\test.000071_2_1354149688526\index\write.lock
ERROR [OptionalTasks:1] 2012-11-28 22:38:05,836 CassandraDirectUpdateHandler2.java (line 771) org.apache.lucene.store.LockObtainFailedException: Lock obtain timed out: SimpleFSLock@\webdev\dse\var\cassandra\data\solr.data\test.000071_3_1354170047021\index\write.lock
ERROR [OptionalTasks:1] 2012-11-28 22:38:07,836 CassandraDirectUpdateHandler2.java (line 771) org.apache.lucene.store.LockObtainFailedException: Lock obtain timed out: SimpleFSLock@\webdev\dse\var\cassandra\data\solr.data\test.000071_3_1354149868423\index\write.lock
ERROR [OptionalTasks:1] 2012-11-28 22:38:08,836 CassandraDirectUpdateHandler2.java (line 771) org.apache.lucene.store.LockObtainFailedException: Lock obtain timed out: SimpleFSLock@\webdev\dse\var\cassandra\data\solr.data\test.000071_2_1354170047006\index\write.lock
ERROR [OptionalTasks:1] 2012-11-28 22:38:09,836 CassandraDirectUpdateHandler2.java (line 771) org.apache.lucene.store.LockObtainFailedException: Lock obtain timed out: SimpleFSLock@\webdev\dse\var\cassandra\data\solr.data\test.000071_2_1354149688526\index\write.lock
ERROR [OptionalTasks:1] 2012-11-28 22:38:10,836 CassandraDirectUpdateHandler2.java (line 771) org.apache.lucene.store.LockObtainFailedException: Lock obtain timed out: SimpleFSLock@\webdev\dse\var\cassandra\data\solr.data\test.000071_3_1354170047021\index\write.lock
ERROR [OptionalTasks:1] 2012-11-28 22:38:12,852 CassandraDirectUpdateHandler2.java (line 771) org.apache.lucene.store.LockObtainFailedException: Lock obtain timed out: SimpleFSLock@\webdev\dse\var\cassandra\data\solr.data\test.000071_3_1354149868423\index\write.lock
ERROR [OptionalTasks:1] 2012-11-28 22:38:13,852 CassandraDirectUpdateHandler2.java (line 771) org.apache.lucene.store.LockObtainFailedException: Lock obtain timed out: SimpleFSLock@\webdev\dse\var\cassandra\data\solr.data\test.000071_2_1354170047006\index\write.lock
ERROR [OptionalTasks:1] 2012-11-28 22:38:14,852 CassandraDirectUpdateHandler2.java (line 771) org.apache.lucene.store.LockObtainFailedException: Lock obtain timed out: SimpleFSLock@\webdev\dse\var\cassandra\data\solr.data\test.000071_2_1354149688526\index\write.lock
ERROR [OptionalTasks:1] 2012-11-28 22:38:15,852 CassandraDirectUpdateHandler2.java (line 771) org.apache.lucene.store.LockObtainFailedException: Lock obtain timed out: SimpleFSLock@\webdev\dse\var\cassandra\data\solr.data\test.000071_3_1354170047021\index\write.lock
ERROR [OptionalTasks:1] 2012-11-28 22:38:17,852 CassandraDirectUpdateHandler2.java (line 771) org.apache.lucene.store.LockObtainFailedException: Lock obtain timed out: SimpleFSLock@\webdev\dse\var\cassandra\data\solr.data\test.000071_3_1354149868423\index\write.lock
ERROR [OptionalTasks:1] 2012-11-28 22:38:18,852 CassandraDirectUpdateHandler2.java (line 771) org.apache.lucene.store.LockObtainFailedException: Lock obtain timed out: SimpleFSLock@\webdev\dse\var\cassandra\data\solr.data\test.000071_2_1354170047006\index\write.lock
ERROR [OptionalTasks:1] 2012-11-28 22:38:19,868 CassandraDirectUpdateHandler2.java (line 771) org.apache.lucene.store.LockObtainFailedException: Lock obtain timed out: SimpleFSLock@\webdev\dse\var\cassandra\data\solr.data\test.000071_2_1354149688526\index\write.lockPosted 5 months ago # -
Some other observations on the issue:
1. From a clean start, I can add solr cores and index documents
2. LockObtainFailedException starts to show up when restarting DSE
3. Still can add new solr cores and add documents to the NEW cores
4. Query the cores created before restart is fine, but adding/updating documents to those cores fail with LockObtainFailedException as follows:
.
ERROR [OptionalTasks:1] 2012-11-28 22:50:07,500 CassandraDirectUpdateHandler2.java (line 771) org.apache.lucene.store.LockObtainFailedException: Lock obtain timed out: SimpleFSLock@\webdev\dse\var\cassandra\data\solr.data\SHOPPING.000071_2_1354149688526\index\write.lock
INFO [http-8983-3] 2012-11-28 22:50:07,593 LogUpdateProcessorFactory.java (line 188) {commit=} 0 1000
ERROR [http-8983-3] 2012-11-28 22:50:07,593 SolrException.java (line 114) org.apache.solr.common.SolrException: org.apache.lucene.store.LockObtainFailedException: Lock obtain timed out: SimpleFSLock@\webdev\dse\var\cassandra\data\solr.data\SHOPPING.000071_3_1354170047021\index\write.lock
at com.datastax.bdp.cassandra.index.solr.CassandraDirectUpdateHandler2.commit(CassandraDirectUpdateHandler2.java:570)
at org.apache.solr.update.processor.RunUpdateProcessor.processCommit(RunUpdateProcessorFactory.java:84)
at org.apache.solr.update.processor.LogUpdateProcessor.processCommit(LogUpdateProcessorFactory.java:154)
at org.apache.solr.handler.RequestHandlerUtils.handleCommit(RequestHandlerUtils.java:107)
at org.apache.solr.handler.ContentStreamHandlerBase.handleRequestBody(ContentStreamHandlerBase.java:52)
at org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandlerBase.java:129)
at org.apache.solr.core.SolrCore.execute(SolrCore.java:1460)
at org.apache.solr.servlet.SolrDispatchFilter.execute(SolrDispatchFilter.java:354)
at com.datastax.bdp.cassandra.index.solr.CassandraDispatchFilter.execute(CassandraDispatchFilter.java:191)
at org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:249)
at com.datastax.bdp.cassandra.index.solr.CassandraDispatchFilter.doFilter(CassandraDispatchFilter.java:151)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:111)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:589)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489)
at java.lang.Thread.run(Thread.java:662)
.
I also noticed this error in the log:ERROR [Finalizer] 2012-11-28 22:44:45,646 SolrIndexWriter.java (line 151) SolrIndexWriter was not closed prior to finalize(), indicates a bug -- POSSIBLE RESOURCE LEAK!!!
Please help debug this issue. Thanks!
Posted 5 months ago # -
After shutting down DSE (and before restarting), do you still have a write.lock file into webdev\dse\var\cassandra\data\solr.data\SHOPPING.000071_3_1354170047021\index or any other directory reported in the LockObtainFailedException message?
Posted 5 months ago # -
After shutting down DSE, there are write.lock files under every solr core.
Posted 5 months ago # -
Then it means you didn't have a clean shutdown and write.lock files were not cleared: try manually deleting them and restarting, everything should work after that.
Posted 5 months ago # -
Yes, deleting those write.lock works. Any suggestion on how shutting down DSE cleanly? Also note that I did not have this issue when having LUCENE 3.6 in the solrconfig.
Posted 5 months ago # -
Posted 5 months ago #
-
Following the reference, I did "nodetool drain -h <host name>" before shutting down DSE. However, those write.lock files were still hanging around. Anything else I might be missing here? Thanks!
Posted 5 months ago # -
I switched back to my old solrconfig.xml which uses Lucene 3.6. Restarting DSE do not have the LockObtainFailedException, though those write.lock files exist the whole time.
Are those write.lock files expected to be removed after shutting down DSE?
Posted 5 months ago #
Reply
You must log in to post.
