It may mean nothing, or it may be indicative that your heap is getting too full. It's essentially a warning that says the young generation of heap memory took a very long time to garbage collect (1.3s).
The young gen is where new objects are created; new object creation is often transient and not long-lived, so it's stored in the young gen temporarily. Garbage collection happens frequently in the young gen, and is usually pretty fast.
If you see a few sporadic slow young gen GCs I wouldn't worry about it. You may have done a lot of heavy indexing or a big query or something to create a lot of temporary young-gen pressure.
If you're seeing this repeatedly, you may have memory pressure problems, and may want to see about either increasing total available memory or decreasing your memory footprint (evaluating queries, etc)
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.