I'm able to create a search index in our other environments, but in one environment I'm getting this error:
java.lang.NoClassDefFoundError: Could not initialize class com.sun.org.apache.xml.internal.serializer.ToXMLStream
When I create a search index like this:
schema.vertexLabel('myvertex').index('search').search().by('myprop').ifNotExists().add()
It is Datastax DSE Graph version 6.7.
The build script is identical for all environments. It looks like Search is installed in that environment, but I'm guessing it's misconfigured somehow?
What could be missing in this environment that the other environments have?